1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

ffplay: fix indentation after last commit

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint
2014-10-24 15:16:41 +02:00
parent 631ac655c0
commit cc4741888d

View File

@@ -2424,7 +2424,6 @@ static int audio_decode_frame(VideoState *is)
int wanted_nb_samples;
Frame *af;
{
if (is->paused)
return -1;
@@ -2434,7 +2433,6 @@ static int audio_decode_frame(VideoState *is)
frame_queue_next(&is->sampq);
} while (af->serial != is->audioq.serial);
{
data_size = av_samples_get_buffer_size(NULL, av_frame_get_channels(af->frame),
af->frame->nb_samples,
af->frame->format, 1);
@@ -2522,8 +2520,6 @@ static int audio_decode_frame(VideoState *is)
#endif
return resampled_data_size;
}
}
}
/* prepare a new audio buffer */
static void sdl_audio_callback(void *opaque, Uint8 *stream, int len)