[FFmpeg-cvslog] lavc/utils: fix instanciate/instantiate typo
Clément Bœsch
git at videolan.org
Sat Jan 30 13:10:25 CET 2016
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Sat Jan 30 13:10:11 2016 +0100| [54ab90c05b9d664f899b628764dcf74997a37358] | committer: Clément Bœsch
lavc/utils: fix instanciate/instantiate typo
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=54ab90c05b9d664f899b628764dcf74997a37358
---
libavcodec/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 491d8ea..c103039 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1318,7 +1318,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
if (CONFIG_FRAME_THREAD_ENCODER && av_codec_is_encoder(avctx->codec)) {
- ff_unlock_avcodec(codec); //we will instanciate a few encoders thus kick the counter to prevent false detection of a problem
+ ff_unlock_avcodec(codec); //we will instantiate a few encoders thus kick the counter to prevent false detection of a problem
ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
ff_lock_avcodec(avctx, codec);
if (ret < 0)
More information about the ffmpeg-cvslog
mailing list