diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-12-18 15:50:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-12-18 15:50:39 +0000 |
commit | b2cc8111d65c3377ed9f2e1216023c91f7ca45a9 (patch) | |
tree | e1cfa91dc3966c4e31bb39d9d2a6b8cfa9079e94 /libavcodec/vorbis_dec.c | |
parent | 646eb55139ce6cad08d6f2d1dd07c28ee73a861e (diff) | |
download | ffmpeg-b2cc8111d65c3377ed9f2e1216023c91f7ca45a9.tar.gz |
More sane error message when extradata has not been set.
Originally committed as revision 20894 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_dec.c')
-rw-r--r-- | libavcodec/vorbis_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index b8e663281d..93fafc1178 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -950,7 +950,7 @@ static av_cold int vorbis_decode_init(AVCodecContext *avccontext) } if (!headers_len) { - av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n"); + av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n"); return -1; } |