aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2003-04-23 08:56:14 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2003-04-23 08:56:14 +0000
commit5d234974932149081262251fa772c1f45825637a (patch)
tree46fa50efb49ee0ad2e368b9807dd2c3caba1028a /libavcodec/avcodec.h
parente738cee9c4feb258d57bf4b4975e12f561f9eb4f (diff)
downloadffmpeg-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.h2
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 *);