Ticket #1822: lang_menu_v1.patch

File lang_menu_v1.patch, 981 bytes (added by skamithi, 20 years ago)
  • libs/libmythtv/avformatdecoder.cpp

     
    283283      allow_ac3_passthru(false),    allow_dts_passthru(false),
    284284      disable_passthru(false),
    285285      // DVD
    286       lastdvdtitle(0), lastcellstart(0),
     286      lastdvdtitle(-1), lastcellstart(0),
    287287      dvdmenupktseen(false), dvdvideopause(false),
    288288      lastrepeat(0)
    289289{
     
    26292629            {
    26302630                int current_width = curstream->codec->width;
    26312631                int video_width = GetNVP()->GetVideoWidth();
    2632                 if (video_width > 0 && video_width != current_width)
     2632                if (video_width > 0 && video_width != current_width &&
     2633                        !ringBuffer->DVD()->InStillFrame())
    26332634                {
    26342635                    av_free_packet(pkt);
    26352636                    av_find_stream_info(ic);