Commit cc474188 authored by Marton Balint's avatar Marton Balint

ffplay: fix indentation after last commit

Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 631ac655
...@@ -2424,7 +2424,6 @@ static int audio_decode_frame(VideoState *is) ...@@ -2424,7 +2424,6 @@ static int audio_decode_frame(VideoState *is)
int wanted_nb_samples; int wanted_nb_samples;
Frame *af; Frame *af;
{
if (is->paused) if (is->paused)
return -1; return -1;
...@@ -2434,7 +2433,6 @@ static int audio_decode_frame(VideoState *is) ...@@ -2434,7 +2433,6 @@ static int audio_decode_frame(VideoState *is)
frame_queue_next(&is->sampq); frame_queue_next(&is->sampq);
} while (af->serial != is->audioq.serial); } while (af->serial != is->audioq.serial);
{
data_size = av_samples_get_buffer_size(NULL, av_frame_get_channels(af->frame), data_size = av_samples_get_buffer_size(NULL, av_frame_get_channels(af->frame),
af->frame->nb_samples, af->frame->nb_samples,
af->frame->format, 1); af->frame->format, 1);
...@@ -2521,8 +2519,6 @@ static int audio_decode_frame(VideoState *is) ...@@ -2521,8 +2519,6 @@ static int audio_decode_frame(VideoState *is)
} }
#endif #endif
return resampled_data_size; return resampled_data_size;
}
}
} }
/* prepare a new audio buffer */ /* prepare a new audio buffer */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment