summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-25 15:37:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-25 15:37:13 +0000
commit9297ddd32e89f9e2e5884edd659892607cea455a (patch)
treee0e45ca84f2645542a2599d6233bc5de3c341d2a /libavcodec
parent0f242af274d83bf5e1183a772443555d5352e3cd (diff)
type fix
Originally committed as revision 3638 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 26fa19af79..df2c47679c 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -1732,7 +1732,7 @@ int avoption_parse(void* strct, const AVOption* list, const char* opts);
typedef struct AVCodec {
const char *name;
enum CodecType type;
- int id;
+ enum CodecID id;
int priv_data_size;
int (*init)(AVCodecContext *);
int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);