-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deep probe last frame #45
Conversation
951ace5
to
5226d97
Compare
271f507
to
a1c331f
Compare
src/probe/deep.rs
Outdated
@@ -330,6 +330,7 @@ impl DeepProbe { | |||
return Ok(()); | |||
} | |||
|
|||
let mut frame_duration = 0.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Si tu le definis la, on peut le passer en parametre partout ou on en a besoin, ou bien on le definit tout le temps dans la fonction de la detection.
Je trouve plus propre de l'avoir seulement dans la fonction de detection, mais ca veut dire qu'on le recalcule a chaque fois (pareil pour le frame_rate, ...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tu parles de quelle fonction de détection ici ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blackframes, dualmono, silence, black and silence, je pensais qu'il y en avait plus
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok j'avais pas bien compris ton premier commentaire, c'est vrai que c'est pas très logique de l'avoir mis en paramètre juste pour le black_and_silence, je vais le déplacer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah non en fait c'est qu'on a pas le context dans le black_and_silence, comme c'est une fonction qui utilise des StreamProbeResult déjà existant, c'est un peu dommage de lire à nouveau dans le fichier. Finalement passer les framerate, frame duration etc en paramètre c'est mieux je pense.
c561d16
to
eaeec0a
Compare
eaeec0a
to
058a60f
Compare
nomalab/nomalab#4520