# HG changeset patch # User michael # Date 1240835665 0 # Node ID e54c83a838a947dcf52ba02185f91fdc7ae9771a # Parent 0b6bad85518bd2fe10f2d12b67b1fb60eede74c1 Cleanup first paragraph of doxy of avcodec_decode_audio3(). diff -r 0b6bad85518b -r e54c83a838a9 avcodec.h --- a/avcodec.h Mon Apr 27 12:28:56 2009 +0000 +++ b/avcodec.h Mon Apr 27 12:34:25 2009 +0000 @@ -3078,11 +3078,10 @@ #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. *