changeset 8953:1ebf4c3ab032

NTSC is 29.97 fps, not 30. wrong values here are likely to cause duplicated frames in mencoder if used with fixed-fps tv cards and in any case they'll result in horrible jerky video.
author rfelker
date Tue, 14 Jan 2003 18:20:17 +0000
parents 2369087bb777
children 75048549dc44
files libmpdemux/tvi_bsdbt848.c libmpdemux/tvi_v4l.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/tvi_bsdbt848.c	Tue Jan 14 02:52:10 2003 +0000
+++ b/libmpdemux/tvi_bsdbt848.c	Tue Jan 14 18:20:17 2003 +0000
@@ -26,7 +26,7 @@
 
 #define NTSC_WIDTH  640
 #define NTSC_HEIGHT 480
-#define NTSC_FPS    30
+#define NTSC_FPS    29.97
 
 #include <stdio.h>
 #include <stdlib.h>
--- a/libmpdemux/tvi_v4l.c	Tue Jan 14 02:52:10 2003 +0000
+++ b/libmpdemux/tvi_v4l.c	Tue Jan 14 18:20:17 2003 +0000
@@ -55,7 +55,7 @@
 
 #define NTSC_WIDTH  640
 #define NTSC_HEIGHT 480
-#define NTSC_FPS    30
+#define NTSC_FPS    29.97
 
 #define MAX_AUDIO_CHANNELS	10