diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-11-08 23:46:32 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-11-08 23:46:32 +0000 |
commit | 80454494dea444a4de8950fb1f8f76c30a9f34b2 (patch) | |
tree | 091799e54daf39561d4e89761a7bdc2e2498ab72 /libavformat/aiff.h | |
parent | adadf26bb9a84b6f45ce30ea47374d9a9afffc80 (diff) | |
download | ffmpeg-80454494dea444a4de8950fb1f8f76c30a9f34b2.tar.gz |
Use CODEC_ID_NONE instead of 0 for enum CodecID.
Originally committed as revision 20481 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aiff.h')
-rw-r--r-- | libavformat/aiff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aiff.h b/libavformat/aiff.h index 5f86a378e9..e8d4cce5e2 100644 --- a/libavformat/aiff.h +++ b/libavformat/aiff.h @@ -46,7 +46,7 @@ static const AVCodecTag ff_codec_aiff_tags[] = { { CODEC_ID_PCM_S16LE, MKTAG('s','o','w','t') }, { CODEC_ID_ADPCM_IMA_QT, MKTAG('i','m','a','4') }, { CODEC_ID_QDM2, MKTAG('Q','D','M','2') }, - { 0, 0 }, + { CODEC_ID_NONE, 0 }, }; #endif /* AVFORMAT_AIFF_H */ |