diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-04-23 08:56:14 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-04-23 08:56:14 +0000 |
commit | 5d234974932149081262251fa772c1f45825637a (patch) | |
tree | 46fa50efb49ee0ad2e368b9807dd2c3caba1028a /libavcodec/avcodec.h | |
parent | e738cee9c4feb258d57bf4b4975e12f561f9eb4f (diff) | |
download | ffmpeg-5d234974932149081262251fa772c1f45825637a.tar.gz |
* more strict types
Originally committed as revision 1815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4c2ead7d1a..f01a7dec2d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1141,7 +1141,7 @@ int avoption_parse(void* strct, const AVOption* list, const char* opts); */ typedef struct AVCodec { const char *name; - int type; + enum CodecType type; int id; int priv_data_size; int (*init)(AVCodecContext *); |