diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-28 23:46:20 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-02 15:32:34 +0100 |
commit | 6032a1c977cc266cc49e1768024dfc87180dbea2 (patch) | |
tree | 6977b1fc3b0af34912ac0ccbfc1e7f56491c676d /ffplay.c | |
parent | 55910e18948dcf3efb251887ec92449850929892 (diff) | |
download | ffmpeg-6032a1c977cc266cc49e1768024dfc87180dbea2.tar.gz |
ffplay: extend doxy for audio_decode_frame()
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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; |