Mercurial > libavcodec.hg
comparison avcodec.h @ 9572:b3074f49b078 libavcodec
Add multiframe note to avcodec_decode_video() too.
author | michael |
---|---|
date | Mon, 27 Apr 2009 12:36:23 +0000 |
parents | e54c83a838a9 |
children | c939417a3a39 |
comparison
equal
deleted
inserted
replaced
9571:e54c83a838a9 | 9572:b3074f49b078 |
---|---|
3124 const uint8_t *buf, int buf_size); | 3124 const uint8_t *buf, int buf_size); |
3125 #endif | 3125 #endif |
3126 | 3126 |
3127 /** | 3127 /** |
3128 * Decodes the video frame of size avpkt->size from avpkt->data into picture. | 3128 * Decodes the video frame of size avpkt->size from avpkt->data into picture. |
3129 * Some decoders may support multiple frames in a single AVPacket, such | |
3130 * decoders would then just decode the first frame. | |
3129 * | 3131 * |
3130 * @warning The input buffer must be \c FF_INPUT_BUFFER_PADDING_SIZE larger than | 3132 * @warning The input buffer must be \c FF_INPUT_BUFFER_PADDING_SIZE larger than |
3131 * the actual read bytes because some optimized bitstream readers read 32 or 64 | 3133 * the actual read bytes because some optimized bitstream readers read 32 or 64 |
3132 * bits at once and could read over the end. | 3134 * bits at once and could read over the end. |
3133 * | 3135 * |