[FFmpeg-soc] [soc]: r712 - libavfilter/vf_fps.c
koorogi
subversion at mplayerhq.hu
Sat Aug 11 23:51:58 CEST 2007
Author: koorogi
Date: Sat Aug 11 23:51:57 2007
New Revision: 712
Log:
Change default framerate to 25
Modified:
libavfilter/vf_fps.c
Modified: libavfilter/vf_fps.c
==============================================================================
--- libavfilter/vf_fps.c (original)
+++ libavfilter/vf_fps.c Sat Aug 11 23:51:57 2007
@@ -40,8 +40,8 @@ static int init(AVFilterContext *ctx, co
if(args && sscanf(args, "%d", &framerate))
fps->timebase = 1000 / framerate;
else
- /* default to 15 fps for no apparent reason */
- fps->timebase = 1000 / 15;
+ /* default to 25 fps */
+ fps->timebase = 1000 / 25;
fps->pts = 0;
More information about the FFmpeg-soc
mailing list