comparison avcodec.h @ 6521:bac421a6c4da libavcodec

Document AVCodec.flush()
author michael
date Fri, 21 Mar 2008 11:40:05 +0000
parents c7b922e9477e
children ae19192241c4
comparison
equal deleted inserted replaced
6520:c7b922e9477e 6521:bac421a6c4da
2221 * Codec capabilities. 2221 * Codec capabilities.
2222 * see CODEC_CAP_* 2222 * see CODEC_CAP_*
2223 */ 2223 */
2224 int capabilities; 2224 int capabilities;
2225 struct AVCodec *next; 2225 struct AVCodec *next;
2226 /**
2227 * Flush buffers.
2228 * Will be called when seeking
2229 */
2226 void (*flush)(AVCodecContext *); 2230 void (*flush)(AVCodecContext *);
2227 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} 2231 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
2228 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1 2232 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
2229 } AVCodec; 2233 } AVCodec;
2230 2234