diff options
-rw-r--r-- | src/libmpeg2/decode.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libmpeg2/decode.c b/src/libmpeg2/decode.c index 096d5616b..86d9cc0f4 100644 --- a/src/libmpeg2/decode.c +++ b/src/libmpeg2/decode.c @@ -130,8 +130,7 @@ static inline void get_frame_duration (mpeg2dec_t * mpeg2dec, vo_frame_t *frame) !mpeg2dec->picture->progressive_sequence && mpeg2dec->picture->progressive_frame ) { /* special case for ntsc 3:2 pulldown */ - frame->duration = 3750; /* Make it 24 fps */ - /* frame->duration += frame->duration/4; */ /* This made is 3753 */ + frame->duration += frame->duration/4; } else { @@ -149,7 +148,6 @@ static inline void get_frame_duration (mpeg2dec_t * mpeg2dec, vo_frame_t *frame) } } - /* printf("libmpeg2:duration:%d, %0x\n",frame->duration, mpeg2dec->rff_pattern); */ /*printf("mpeg2dec: rff=%u\n",frame->repeat_first_field);*/ } |