diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 04:23:45 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 04:23:45 +0000 |
commit | 03ac56e7f14cf0aa27abd4ac382f794650ebf0f4 (patch) | |
tree | a9f3f302a93f4d7fa71106befdf13228060cc8b0 /libavcodec/vp8.c | |
parent | 3491866a4bdc753ea0d1aa4a4ed558a930b44547 (diff) | |
download | ffmpeg-03ac56e7f14cf0aa27abd4ac382f794650ebf0f4.tar.gz |
fix typo in vp8 decoder error message
Originally committed as revision 23765 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r-- | libavcodec/vp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 3d735e5c13..a4b3788d62 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -1384,7 +1384,7 @@ static av_cold int vp8_decode_init(AVCodecContext *avctx) // intra pred needs edge emulation among other things if (avctx->flags&CODEC_FLAG_EMU_EDGE) { - av_log(avctx, AV_LOG_ERROR, "Edge emulation not supproted\n"); + av_log(avctx, AV_LOG_ERROR, "Edge emulation not supported\n"); return AVERROR_PATCHWELCOME; } |