Commit b2cc8111 authored by Michael Niedermayer's avatar Michael Niedermayer

More sane error message when extradata has not been set.

Originally committed as revision 20894 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 646eb551
...@@ -950,7 +950,7 @@ static av_cold int vorbis_decode_init(AVCodecContext *avccontext) ...@@ -950,7 +950,7 @@ static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
} }
if (!headers_len) { if (!headers_len) {
av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n"); av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
return -1; return -1;
} }
......
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