diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-27 12:34:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-27 12:34:25 +0000 |
commit | e5776422b41f03801828bd4dc510da455f22463a (patch) | |
tree | 2be3602f4f1768b7ceff4e9b2c75ad10976f366b | |
parent | 3784411100c60ae03ff85f9a4d4b39a984faf93e (diff) | |
download | ffmpeg-e5776422b41f03801828bd4dc510da455f22463a.tar.gz |
Cleanup first paragraph of doxy of avcodec_decode_audio3().
Originally committed as revision 18701 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d738b8ddfd..fa39171050 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3078,11 +3078,10 @@ attribute_deprecated int avcodec_decode_audio2(AVCodecContext *avctx, int16_t *s #endif /** - * Decodes an audio frame from \p avpkt->data into \p samples. - * The avcodec_decode_audio3() function decodes an audio frame from the input - * buffer \p avpkt->data of size \p avpkt->size. To decode it, it makes use of the - * audio codec which was coupled with \p avctx using avcodec_open(). The - * resulting decoded frame is stored in output buffer \p samples. If no frame + * Decodes the audio frame of size avpkt->size from avpkt->data into samples. + * Some decoders may support multiple frames in a single AVPacket, such + * decoders would then just decode the first frame. + * If no frame * could be decompressed, \p frame_size_ptr is zero. Otherwise, it is the * decompressed frame size in \e bytes. * |