Commit b4111a57 authored by cehoyos's avatar cehoyos

Use enum CodecID where appropriate.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21119 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 35ba1590
......@@ -192,7 +192,7 @@ static int process_audio_header_elements(AVFormatContext *s)
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment