Ticket #8850: mythtv-0.23-codec_id_svq3_fix.patch

File mythtv-0.23-codec_id_svq3_fix.patch, 671 bytes (added by pebender@…, 14 years ago)
  • libs/libmythtv/avformatdecoder.cpp

    diff -Naur mythtv-0.23-26006-old/libs/libmythtv/avformatdecoder.cpp mythtv-0.23-26006-new/libs/libmythtv/avformatdecoder.cpp
    old new  
    19741974                if (!codec_is_std(video_codec_id))
    19751975                    thread_count = 1;
    19761976
     1977                if (enc->codec_id == CODEC_ID_SVQ3)
     1978                    thread_count = 1;
     1979
    19771980                VERBOSE(VB_PLAYBACK, QString("Using %1 CPUs for decoding")
    19781981                        .arg(HAVE_THREADS ? thread_count : 1));
    19791982