[vlc-commits] avcodec: H.263 can be accelerated too
    Rémi Denis-Courmont 
    git at videolan.org
       
    Mon Apr 29 18:15:05 CEST 2013
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Apr 29 19:14:42 2013 +0300| [fcfa0d9121d97399f86eacf29eff26d236c50149] | committer: Rémi Denis-Courmont
avcodec: H.263 can be accelerated too
(Maybe the list of accelerated codecs should be removed now...)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fcfa0d9121d97399f86eacf29eff26d236c50149
---
 modules/codec/avcodec/video.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 1366784..1269542 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -336,7 +336,7 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
     char *hw = var_CreateGetString( p_dec, "avcodec-hw" ); /* FIXME */
     if( (hw == NULL || strcasecmp( hw, "none" )) &&
         (i_codec_id == AV_CODEC_ID_MPEG1VIDEO || i_codec_id == AV_CODEC_ID_MPEG2VIDEO ||
-         i_codec_id == AV_CODEC_ID_MPEG4 ||
+         i_codec_id == AV_CODEC_ID_MPEG4 || i_codec_id == AV_CODEC_ID_H263 ||
          i_codec_id == AV_CODEC_ID_H264 ||
          i_codec_id == AV_CODEC_ID_VC1 || i_codec_id == AV_CODEC_ID_WMV3) )
     {
    
    
More information about the vlc-commits
mailing list