diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/libmpeg2/libmpeg2_accel.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -19,6 +19,7 @@ xine-lib (1.0.2) * gcc4 build patches [bug #1175002] * don't assume that file is in /usr/bin (build fix) [bug #1195539] * plugin loader fixes - could cause xine to lock up hard on startup [bug #1196819] + * Fix xxmc bob deinterlacing for field-coded interlaced streams xine-lib (1.0.1) * Big XvMC quality / correctness / cpu-usage fix. [bug #1114517] diff --git a/src/libmpeg2/libmpeg2_accel.c b/src/libmpeg2/libmpeg2_accel.c index 54bdee549..63c7b1b9b 100644 --- a/src/libmpeg2/libmpeg2_accel.c +++ b/src/libmpeg2/libmpeg2_accel.c @@ -98,6 +98,7 @@ libmpeg2_accel_new_frame(mpeg2dec_accel_t *accel, uint32_t frame_format, */ if ( picture->picture_structure != 3 ) { + picture->top_field_first = (picture->picture_structure == 1); xxmc->acceleration &= ~( XINE_XVMC_ACCEL_IDCT | XINE_XVMC_ACCEL_MOCOMP ); } |