Ticket #5577: potential_fix_for_5577.diff

File potential_fix_for_5577.diff, 761 bytes (added by skamithi, 16 years ago)
  • libs/libmythtv/DVDRingBuffer.cpp

     
    10381038        {
    10391039            uint captionmode = parent->GetCaptionMode();
    10401040            if (force_subtitle_display && captionmode != kDisplayAVSubtitle)
    1041                 parent->SetCaptionsEnabled(true, false);
     1041                parent->EnableCaptions(kDisplayAVSubtitle, false);
    10421042            else if (!force_subtitle_display && captionmode == kDisplayAVSubtitle)
    1043                 parent->SetCaptionsEnabled(false, false);
     1043                parent->DisableCaptions(kDisplayAVSubtitle, false);
    10441044        }
    10451045        return true;
    10461046    }