Browse Source

ffplay: extend doxy for audio_decode_frame()

tags/n1.2
Stefano Sabatini 13 years ago
parent
commit
6032a1c977
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      ffplay.c

+ 7
- 1
ffplay.c View File

@@ -2066,7 +2066,13 @@ static int synchronize_audio(VideoState *is, int 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)
{
AVPacket *pkt_temp = &is->audio_pkt_temp;


Loading…
Cancel
Save