> Ok, I've been trying this. I'm now using TS mode, HW decode (set in
> mythtvsetup to work around issues I've seen mentioned relating to
> XVMC_VLD) and have commented out the 1 line in avformatdecoder that
> mentions av_remove_stream.

I need to clarify.. Comment out this entire piece of code..

    for (int i = ic->nb_streams - 1; i >= 0; i--)
    {
        AVStream *st = ic->streams[i];
        if (st->codec.codec_type == CODEC_TYPE_AUDIO)
        {
            if (st->codec.codec)
                avcodec_close(&st->codec);
            av_remove_stream(ic, st->id);
        }
    }

Not just the av_remove_stream..

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to