diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-10-29 18:36:21 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-10-29 18:36:21 +0100 |
commit | d4ac3e5934810523ebec37dce2cded39db467df6 (patch) | |
tree | 5cb14dbbe571c8aecbf65f889a161279469ab121 | |
parent | 9fa0dccca6492b15849d025e006533d1cd21be6b (diff) | |
download | ffmpeg-d4ac3e5934810523ebec37dce2cded39db467df6.tar.gz |
lavc/mpegvideo_enc: fix typo
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 3db975c5ff..3f12e71269 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -454,7 +454,7 @@ av_cold int ff_MPV_encode_init(AVCodecContext *avctx) } if (s->max_b_frames < 0) { av_log(avctx, AV_LOG_ERROR, - "max b frames must be 0 or postive for mpegvideo based encoders\n"); + "max b frames must be 0 or positive for mpegvideo based encoders\n"); return -1; } |