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 /libavformat/avi.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 'libavformat/avi.h')
-rw-r--r-- | libavformat/avi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/avi.h b/libavformat/avi.h index 193c5812c3..73a43032d4 100644 --- a/libavformat/avi.h +++ b/libavformat/avi.h @@ -27,4 +27,5 @@ extern const CodecTag codec_bmp_tags[]; extern const CodecTag codec_wav_tags[]; unsigned int codec_get_tag(const CodecTag *tags, int id); -int codec_get_id(const CodecTag *tags, unsigned int tag); +enum CodecID; +enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag); |