comparison avcodec.h @ 2838:5e0c3833d208 libavcodec

automatically remove mess
author michael
date Tue, 16 Aug 2005 07:53:03 +0000
parents 45ccf6842c34
children ea05470188e4
comparison
equal deleted inserted replaced
2837:45ccf6842c34 2838:5e0c3833d208
1883 int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data); 1883 int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
1884 int (*close)(AVCodecContext *); 1884 int (*close)(AVCodecContext *);
1885 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, 1885 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
1886 uint8_t *buf, int buf_size); 1886 uint8_t *buf, int buf_size);
1887 int capabilities; 1887 int capabilities;
1888 #if LIBAVCODEC_VERSION_INT < ((50<<16)+(0<<8)+0)
1888 void *dummy; // FIXME remove next time we break binary compatibility 1889 void *dummy; // FIXME remove next time we break binary compatibility
1890 #endif
1889 struct AVCodec *next; 1891 struct AVCodec *next;
1890 void (*flush)(AVCodecContext *); 1892 void (*flush)(AVCodecContext *);
1891 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} 1893 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
1892 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1 1894 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
1893 } AVCodec; 1895 } AVCodec;