comparison avcodec.h @ 4284:781f312ff520 libavcodec

lavc is at major version 51, delete old stuff
author mru
date Fri, 08 Dec 2006 00:42:55 +0000
parents 730ffb021033
children 74b476185cd1
comparison
equal deleted inserted replaced
4283:d6f83e2f8804 4284:781f312ff520
2082 int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data); 2082 int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
2083 int (*close)(AVCodecContext *); 2083 int (*close)(AVCodecContext *);
2084 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, 2084 int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
2085 uint8_t *buf, int buf_size); 2085 uint8_t *buf, int buf_size);
2086 int capabilities; 2086 int capabilities;
2087 #if LIBAVCODEC_VERSION_INT < ((50<<16)+(0<<8)+0)
2088 void *dummy; // FIXME remove next time we break binary compatibility
2089 #endif
2090 struct AVCodec *next; 2087 struct AVCodec *next;
2091 void (*flush)(AVCodecContext *); 2088 void (*flush)(AVCodecContext *);
2092 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0} 2089 const AVRational *supported_framerates; ///array of supported framerates, or NULL if any, array is terminated by {0,0}
2093 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1 2090 const enum PixelFormat *pix_fmts; ///array of supported pixel formats, or NULL if unknown, array is terminanted by -1
2094 } AVCodec; 2091 } AVCodec;