atrac3: return an error if extradata_size is not a specific known size

Also fixes 3 compiler warnings about using uninitialized variables.
This commit is contained in:
Justin Ruggles 2012-10-22 10:44:55 -04:00
parent a5ef830b12
commit 44d854a518
1 changed files with 1 additions and 0 deletions

View File

@ -912,6 +912,7 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx)
} else {
av_log(NULL, AV_LOG_ERROR, "Unknown extradata size %d.\n",
avctx->extradata_size);
return AVERROR(EINVAL);
}
/* Check the extradata */