diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2003-03-08 08:00:59 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2003-03-08 08:00:59 +0000 |
commit | fe363fb9e3d06fb188fccbd248044d5c5ec0d731 (patch) | |
tree | ba7abf58cb194396a003c8e75199822c6a601625 | |
parent | 696dac627057cca2383b9324addcb844339a0ea1 (diff) | |
download | xine-lib-fe363fb9e3d06fb188fccbd248044d5c5ec0d731.tar.gz xine-lib-fe363fb9e3d06fb188fccbd248044d5c5ec0d731.tar.bz2 |
Remove these confusing lines
CVS patchset: 4369
CVS date: 2003/03/08 08:00:59
-rw-r--r-- | src/libmpeg2/slice.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libmpeg2/slice.c b/src/libmpeg2/slice.c index 3246043f8..0d2fed055 100644 --- a/src/libmpeg2/slice.c +++ b/src/libmpeg2/slice.c @@ -1446,8 +1446,6 @@ do { \ if (picture->current_frame->copy) { \ picture->current_frame->copy (picture->current_frame, \ picture->dest); \ - if (picture->picture_coding_type == B_TYPE) \ - /*break*/; \ } \ picture->dest[0] += 16 * picture->pitches[0]; \ picture->dest[1] += 8 * picture->pitches[1]; \ @@ -1542,9 +1540,7 @@ static inline int slice_init (picture_t * picture, int code) picture->v_offset = (code - 1) * 16; offset = (code - 1); -/* if (picture->current_frame->copy && picture->picture_coding_type == B_TYPE) - offset = 0; - else */if (picture->picture_structure != FRAME_PICTURE) + if (picture->picture_structure != FRAME_PICTURE) offset = 2 * offset; picture->dest[0] = picture->current_frame->base[0] + picture->pitches[0] * offset * 16; |