summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_out.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-11 23:08:54 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-11 23:08:54 +0000
commit04dd7cc6866e3946cae1c3ad1b3b221ed8a27930 (patch)
treeecce2340c229a6b310f51c2bad90237be1246d34 /src/xine-engine/video_out.c
parent7ed53e0ca4f460146aeab7ea7db5f6db1a147885 (diff)
downloadxine-lib-04dd7cc6866e3946cae1c3ad1b3b221ed8a27930.tar.gz
xine-lib-04dd7cc6866e3946cae1c3ad1b3b221ed8a27930.tar.bz2
- add VO_INTERLACED_FLAG to get_frame
- do not trust progressive_frame for detecting NTSC 3:2, quote: 'the alternating progressive_frame encoding problem. This is a problem where the progressive_frame flag alternates between true and false every frame, when it really should have been set to "true" all the time.' 'There is a lot of content that is affected by this issue, because it's caused by a dumb decision by a very big company that made a very popular MPEG encoder. They've since fixed the encoder, but there are apparently still authoring companies that use it, because the problem is on a lot of high-profile current discs, like Disney's "Monsters Inc." and "Beauty and the Beast".' http://www.hometheaterhifi.com/volume_8_2/dvd-benchmark-special-report-chroma-bug-4-2001.html CVS patchset: 5025 CVS date: 2003/06/11 23:08:54
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r--src/xine-engine/video_out.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 2abf037ca..585a40d57 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.c,v 1.161 2003/06/06 19:42:05 miguelfreitas Exp $
+ * $Id: video_out.c,v 1.162 2003/06/11 23:08:54 miguelfreitas Exp $
*
* frame allocation / queuing / scheduling / output functions
*/
@@ -284,7 +284,8 @@ static vo_frame_t *vo_get_frame (xine_video_port_t *this_gen,
img->format = format;
img->copy_called = 0;
img->bad_frame = 0;
- img->progressive_frame = 2; /* progressive by default */
+ img->progressive_frame = 0;
+ img->repeat_first_field = 0;
extra_info_reset ( img->extra_info );
/* let driver ensure this image has the right format */