[vlc-commits] avcodec: option name is avcodec-hw

Rémi Denis-Courmont git at videolan.org
Sat Jun 15 21:01:09 CEST 2013


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jun 15 22:00:43 2013 +0300| [0ad07a9d8772d38bb4a0a93e5c2b1ec0eeab5fb0] | committer: Rémi Denis-Courmont

avcodec: option name is avcodec-hw

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ad07a9d8772d38bb4a0a93e5c2b1ec0eeab5fb0
---

 modules/codec/avcodec/video.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 7d7a2fc..72e1b3b 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -343,13 +343,13 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
 #if defined(HAVE_AVCODEC_MT) && LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55, 1, 0)
         if( p_sys->p_context->thread_type & FF_THREAD_FRAME )
         {
-            msg_Warn( p_dec, "threaded frame decoding is not compatible with libavcodec-hw, disabled" );
+            msg_Warn( p_dec, "threaded frame decoding is not compatible with avcodec-hw, disabled" );
             p_sys->p_context->thread_type &= ~FF_THREAD_FRAME;
         }
         if( ( p_sys->p_context->thread_type & FF_THREAD_SLICE ) &&
             ( i_codec_id == AV_CODEC_ID_MPEG1VIDEO || i_codec_id == AV_CODEC_ID_MPEG2VIDEO ) )
         {
-            msg_Warn( p_dec, "threaded slice decoding is not compatible with libavcodec-hw, disabled" );
+            msg_Warn( p_dec, "threaded slice decoding is not compatible with avcodec-hw, disabled" );
             p_sys->p_context->thread_type &= ~FF_THREAD_SLICE;
         }
 #endif



More information about the vlc-commits mailing list