]> git.sesse.net Git - ffmpeg/commitdiff
aea: Return proper error code on invalid header
authorNidhi Makhijani <nidhimj22@gmail.com>
Thu, 15 Jan 2015 12:50:03 +0000 (18:20 +0530)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 16 Jan 2015 09:35:02 +0000 (10:35 +0100)
libavformat/aea.c

index 7675009bbc44638e515c3fcab3db434234b605a2..c107109cfac0d5a83f522947cb50cff207708b2e 100644 (file)
@@ -73,7 +73,7 @@ static int aea_read_header(AVFormatContext *s)
 
     if (st->codec->channels != 1 && st->codec->channels != 2) {
         av_log(s,AV_LOG_ERROR,"Channels %d not supported!\n",st->codec->channels);
-        return -1;
+        return AVERROR_INVALIDDATA;
     }
 
     st->codec->channel_layout = (st->codec->channels == 1) ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO;