diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-30 22:23:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-30 22:23:29 +0200 |
commit | 7ad528cf23da5479c7cbf4676d071a07a709d8b6 (patch) | |
tree | d27e00432884105a892daca51561b05b255cf0d7 | |
parent | f5c5aa968c3c96ff3968bd5b060e5a0f2f278732 (diff) | |
parent | 06f4b1e37a08f3fd269ecbfeb0181129e5bfc86e (diff) | |
download | ffmpeg-7ad528cf23da5479c7cbf4676d071a07a709d8b6.tar.gz |
Merge commit '06f4b1e37a08f3fd269ecbfeb0181129e5bfc86e'
* commit '06f4b1e37a08f3fd269ecbfeb0181129e5bfc86e':
avplay: Do not print a possibly uninitialized value
Conflicts:
ffplay.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1531,7 +1531,7 @@ static void step_to_next_frame(VideoState *is) static double compute_target_delay(double delay, VideoState *is) { - double sync_threshold, diff; + double sync_threshold, diff = 0; /* update delay to follow master synchronisation source */ if (get_master_sync_type(is) != AV_SYNC_VIDEO_MASTER) { |