Commit 2c82386d authored by Aurelien Jacobs's avatar Aurelien Jacobs

add some error processing

Originally committed as revision 10794 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fa34563b
......@@ -166,6 +166,7 @@ static int process_ea_header(AVFormatContext *s) {
for (i=0; i<5 && (!ea->audio_codec || !ea->video_codec); i++) {
unsigned int startpos = url_ftell(pb);
int err = 0;
blockid = get_le32(pb);
size = get_le32(pb);
......@@ -179,14 +180,19 @@ static int process_ea_header(AVFormatContext *s) {
av_log (s, AV_LOG_ERROR, "unknown SCHl headerid\n");
return 0;
}
process_audio_header_elements(s);
err = process_audio_header_elements(s);
break;
case MVhd_TAG :
process_video_header_vp6(s);
err = process_video_header_vp6(s);
break;
}
if (err < 0) {
av_log(s, AV_LOG_ERROR, "error parsing header: %i\n", err);
return err;
}
url_fseek(pb, startpos + size, SEEK_SET);
}
......
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