1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

ffplay: removed unused variable channels.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-05-04 22:14:22 +02:00
parent 5258f64a14
commit 705c65208a

View File

@ -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) {