# HG changeset patch # User rfelker # Date 1042568417 0 # Node ID 1ebf4c3ab0322e53dc41be017721882f2b0ddcf6 # Parent 2369087bb777d3decc762dd90501d8f89af8ba27 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. diff -r 2369087bb777 -r 1ebf4c3ab032 libmpdemux/tvi_bsdbt848.c --- 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 #include diff -r 2369087bb777 -r 1ebf4c3ab032 libmpdemux/tvi_v4l.c --- 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