Mercurial > libavcodec.hg
comparison avcodec.h @ 2353:444b9ff022a3 libavcodec
extradata and FF_INPUT_BUFFER_PADDING_SIZE doc
| author | michael |
|---|---|
| date | Mon, 15 Nov 2004 15:53:53 +0000 |
| parents | d02fb928ca44 |
| children | 69fcdad5f7d5 |
comparison
equal
deleted
inserted
replaced
| 2352:06e1d7d44d19 | 2353:444b9ff022a3 |
|---|---|
| 671 /** | 671 /** |
| 672 * some codecs need / can use extra-data like huffman tables. | 672 * some codecs need / can use extra-data like huffman tables. |
| 673 * mjpeg: huffman tables | 673 * mjpeg: huffman tables |
| 674 * rv10: additional flags | 674 * rv10: additional flags |
| 675 * mpeg4: global headers (they can be in the bitstream or here) | 675 * mpeg4: global headers (they can be in the bitstream or here) |
| 676 * the allocated memory should be FF_INPUT_BUFFER_PADDING_SIZE bytes larger | |
| 677 * then extradata_size to avoid prolems if its read with the bitstream reader | |
| 676 * - encoding: set/allocated/freed by lavc. | 678 * - encoding: set/allocated/freed by lavc. |
| 677 * - decoding: set/allocated/freed by user. | 679 * - decoding: set/allocated/freed by user. |
| 678 */ | 680 */ |
| 679 void *extradata; | 681 void *extradata; |
| 680 int extradata_size; | 682 int extradata_size; |
