From a76cf4e197f0eb890131edb405f255451b02b103 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 13 Dec 2009 15:28:00 +0000 Subject: [PATCH] Use constant CODEC_ID_NONE instead of 0 where appropriate. Originally committed as revision 20824 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rmdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] = { -- GitLab