summaryrefslogtreecommitdiff
blob: 44bb868c2d338711f028256b086e4502b2ae6500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 82d8f741f626ed449c84e0ae4c8e27219557149e Mon Sep 17 00:00:00 2001
From: Rob Clark <rob@ti.com>
Date: Thu, 19 Aug 2010 10:32:52 -0500
Subject: [PATCH 17/24] playbin: disable interlaced support

Latest totem is enabling interlaced support, which causes similar issues
to when native-video is not used.. for now, since none of the codecs
support it, disable interlaced support.
---
 gst/playback/gstplaysink.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c
index dedd3be..957f288 100644
--- a/gst/playback/gstplaysink.c
+++ b/gst/playback/gstplaysink.c
@@ -2118,11 +2118,13 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
     /* we have video and we are requested to show it */
     need_video = TRUE;
 
+#if 0
     /* we only deinterlace if native video is not requested and
      * we have raw video */
     if ((flags & GST_PLAY_FLAG_DEINTERLACE)
         && !(flags & GST_PLAY_FLAG_NATIVE_VIDEO) && playsink->video_pad_raw)
       need_deinterlace = TRUE;
+#endif
   }
 
   if (playsink->audio_pad) {
-- 
1.7.1