Commit 6032a1c9 authored by Stefano Sabatini's avatar Stefano Sabatini

ffplay: extend doxy for audio_decode_frame()

parent 55910e18
...@@ -2066,7 +2066,13 @@ static int synchronize_audio(VideoState *is, int nb_samples) ...@@ -2066,7 +2066,13 @@ static int synchronize_audio(VideoState *is, int nb_samples)
return wanted_nb_samples; return wanted_nb_samples;
} }
/* decode one audio frame and returns its uncompressed size */ /**
* Decode one audio frame and return its uncompressed size.
*
* The processed audio frame is decoded, converted if required, and
* stored in is->audio_buf, with size in bytes given by the return
* value.
*/
static int audio_decode_frame(VideoState *is, double *pts_ptr) static int audio_decode_frame(VideoState *is, double *pts_ptr)
{ {
AVPacket *pkt_temp = &is->audio_pkt_temp; AVPacket *pkt_temp = &is->audio_pkt_temp;
......
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