From 64d6b94a1caff564af3680dbb4318e33755fd208 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Fri, 23 May 2003 10:52:40 +0000 Subject: fix the miscalculates and then copy'n'pasted durations we discovered some time ago CVS patchset: 4904 CVS date: 2003/05/23 10:52:40 --- src/libffmpeg/xine_decoder.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libffmpeg') diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c index e7edb5b59..9315317e5 100644 --- a/src/libffmpeg/xine_decoder.c +++ b/src/libffmpeg/xine_decoder.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: xine_decoder.c,v 1.118 2003/05/09 23:54:05 tmmm Exp $ + * $Id: xine_decoder.c,v 1.119 2003/05/23 10:52:40 mroi Exp $ * * xine decoder plugin using ffmpeg * @@ -434,7 +434,7 @@ static void find_sequence_header (ff_video_decoder_t *this, switch (frame_rate_code) { case 1: /* 23.976 fps */ - this->video_step = 3913; + this->video_step = 3754; /* actually it's 3753.75 */ break; case 2: /* 24 fps */ this->video_step = 3750; @@ -452,10 +452,10 @@ static void find_sequence_header (ff_video_decoder_t *this, this->video_step = 1800; break; case 7: /* 59.94 fps */ - this->video_step = 1525; + this->video_step = 1502; /* actually it's 1501.5 */ break; case 8: /* 60 fps */ - this->video_step = 1509; + this->video_step = 1500; break; default: printf ("ffmpeg: invalid/unknown frame rate code : %d \n", -- cgit v1.2.3