diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-13 15:28:00 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-13 15:28:00 +0000 |
commit | a76cf4e197f0eb890131edb405f255451b02b103 (patch) | |
tree | ff102de114b9c2834e87b8d54763f5d649db0ecd /libavformat/rmdec.c | |
parent | 51ce8c2f874e0a2db5f9ae909bd11d9f697ba6c1 (diff) | |
download | ffmpeg-a76cf4e197f0eb890131edb405f255451b02b103.tar.gz |
Use constant CODEC_ID_NONE instead of 0 where appropriate.
Originally committed as revision 20824 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r-- | libavformat/rmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index d5cedbb8a8..67230a97fd 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -63,7 +63,7 @@ static const AVCodecTag rm_codec_tags[] = { { CODEC_ID_SIPR, MKTAG('s','i','p','r') }, { CODEC_ID_AAC, MKTAG('r','a','a','c') }, { CODEC_ID_AAC, MKTAG('r','a','c','p') }, - { 0 }, + { CODEC_ID_NONE }, }; static const unsigned char sipr_swaps[38][2] = { |