diff --git a/mythtv/libs/libmythtv/avformatdecoder.cpp b/mythtv/libs/libmythtv/avformatdecoder.cpp
index 301c956..77c4bb3 100644
a
|
b
|
bool AvFormatDecoder::GetFrame(DecodeType decodetype)
|
3750 | 3750 | if (!d->HasMPEG2Dec()) |
3751 | 3751 | { |
3752 | 3752 | int current_width = curstream->codec->width; |
3753 | | int video_width = GetNVP()->GetVideoSize().width(); |
3754 | 3753 | if (dvd_xvmc_enabled && GetNVP() && GetNVP()->getVideoOutput()) |
3755 | 3754 | { |
3756 | 3755 | bool dvd_xvmc_active = false; |
… |
… |
bool AvFormatDecoder::GetFrame(DecodeType decodetype)
|
3770 | 3769 | } |
3771 | 3770 | } |
3772 | 3771 | |
3773 | | if ((video_width > 0 && video_width != current_width) || |
3774 | | dvd_video_codec_changed) |
| 3772 | if (dvd_video_codec_changed) |
3775 | 3773 | { |
3776 | | VERBOSE(VB_PLAYBACK, LOC + QString("DVD Stream/Codec Change " |
3777 | | "video_width %1 current_width %2 " |
3778 | | "dvd_video_codec_changed %3") |
3779 | | .arg(video_width).arg(current_width) |
3780 | | .arg(dvd_video_codec_changed)); |
| 3774 | VERBOSE(VB_PLAYBACK, LOC + |
| 3775 | "DVD Stream/Codec Change"); |
3781 | 3776 | av_free_packet(pkt); |
3782 | 3777 | if (current_width > 0) { |
3783 | 3778 | CloseCodecs(); |