From: Marten Richter Date: Tue, 31 Dec 2013 09:52:50 +0000 (+0100) Subject: Fix bug in demuxer widescreen signaling X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;p=vompclient-marten.git Fix bug in demuxer widescreen signaling --- diff --git a/demuxer.cc b/demuxer.cc index 30dae83..126596a 100644 --- a/demuxer.cc +++ b/demuxer.cc @@ -654,7 +654,7 @@ void Demuxer::setDVBSubtitleStream(int id) void Demuxer::setAspectRatio(enum AspectRatio ar, int taspectx, int taspecty) { - if (aspect_ratio != ar) + if ((aspect_ratio != ar) || (parx != taspectx) || (pary != taspecty) ) { Log::getInstance()->log("Demux", Log::DEBUG, "Aspect ratio difference signalled");