Changeset 219a17b028a80e4a192a543fdcffff23892c174b

Show
Ignore:
Timestamp:
14/02/08 20:23:13 (10 months ago)
Author:
Dennis van Amerongen <trax@videolan.org>
git-committer:
Dennis van Amerongen <trax@videolan.org> 1203016993 +0000
git-parent:

[632ef79dbc8feb1e106aaddcab412cea65ddbea1]

git-author:
Dennis van Amerongen <trax@videolan.org> 1203016993 +0000
Message:

* extras/contrib/src/Patches/x264-svn-win32.patch: revert [25113] and [25140] log x264 thread count from win32.patch and put it in a generic patch for all platforms (threads=0 autodetect for x264 is reportedly failing on win32 and linux too and always reports threads=1, though x264 cli works fine so it needs more debugging..)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/src/Makefile

    rb737dd6 r219a17b  
    13211321x264:  
    13221322    $(SVN) co svn://svn.videolan.org/x264/trunk/ x264 
     1323    patch -p0 < Patches/x264-svn-info-threads.patch 
    13231324ifdef HAVE_WIN32 
    13241325    (cd x264; patch -p0 < ../Patches/x264-svn-win32.patch ) 
    13251326endif 
    13261327ifdef HAVE_DARWIN_OS 
    1327     (cd $@; patch -p 0 < ../Patches/x264-svn-darwin.patch ) 
     1328    (cd $@; patch -p0 < ../Patches/x264-svn-darwin.patch ) 
    13281329endif 
    13291330else 
  • extras/contrib/src/Patches/x264-svn-win32.patch

    r392b19b r219a17b  
    9595    $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) 
    9696  
    97  
    98 Index: encoder/encoder.c 
    99 =================================================================== 
    100 --- encoder/encoder.c   (revision 736) 
    101 +++ encoder/encoder.c   (working copy) 
    102 @@ -360,6 +360,7 @@ 
    103              h->param.b_pre_scenecut = 1; 
    104  #endif 
    105      } 
    106 +    x264_log( h, X264_LOG_INFO, "using threads=%d\n", h->param.i_threads ); 
    107   
    108      if( h->param.b_interlaced ) 
    109      {