diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-05-04 22:14:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-04 23:33:59 +0200 |
commit | 705c65208ad3abbb6ddda1e84103d497f651a1dd (patch) | |
tree | f9e253eab5a719fce5eac9c3fe8a6501a30097bc /ffplay.c | |
parent | 5258f64a14713499cf84840b3ab3a1ee7cdcaeb8 (diff) | |
download | ffmpeg-705c65208ad3abbb6ddda1e84103d497f651a1dd.tar.gz |
ffplay: removed unused variable channels.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1937,9 +1937,7 @@ static int subtitle_thread(void *arg) /* copy samples for viewing in editor window */ static void update_sample_display(VideoState *is, short *samples, int samples_size) { - int size, len, channels; - - channels = is->audio_st->codec->channels; + int size, len; size = samples_size / sizeof(short); while (size > 0) { |