# HG changeset patch # User cehoyos # Date 1263113840 0 # Node ID a45748f721d1b4d87766f49a7722927f94a8cf35 # Parent 47ef38389cd3963175d97689bcd6804e72fccd59 Use enum CodecID where appropriate. diff -r 47ef38389cd3 -r a45748f721d1 electronicarts.c --- a/electronicarts.c Sun Jan 10 05:47:50 2010 +0000 +++ b/electronicarts.c Sun Jan 10 08:57:20 2010 +0000 @@ -192,7 +192,7 @@ case 16: ea->audio_codec = CODEC_ID_MP3; break; case -1: break; default: - ea->audio_codec = 0; + ea->audio_codec = CODEC_ID_NONE; av_log(s, AV_LOG_ERROR, "unsupported stream type; revision2=%i\n", revision2); return 0; }