[Ffmpeg-cvslog] CVS: ffmpeg/vhook watermark.c,1.1,1.2
Michael Niedermayer CVS
michael
Sat Apr 30 23:44:02 CEST 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec apiexample.c, 1.18, 1.19 avcodec.h, 1.392, 1.393 h261.c, 1.25, 1.26 h263.c, 1.276, 1.277 h264.c, 1.114, 1.115 mpeg12.c, 1.234, 1.235 mpegvideo.c, 1.476, 1.477 mpegvideo.h, 1.222, 1.223 msmpeg4.c, 1.87, 1.88 oggvorbis.c, 1.16, 1.17 parser.c, 1.23, 1.24 ratecontrol.c, 1.48, 1.49 utils.c, 1.137, 1.138 vc9.c, 1.18, 1.19 wmv2.c, 1.31, 1.32 x264.c, 1.5, 1.6 xvidff.c, 1.3, 1.4
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat 4xm.c, 1.16, 1.17 asf-enc.c, 1.70, 1.71 asf.c, 1.78, 1.79 avformat.h, 1.118, 1.119 avidec.c, 1.69, 1.70 avienc.c, 1.103, 1.104 dc1394.c, 1.2, 1.3 dv.c, 1.41, 1.42 ffm.c, 1.37, 1.38 flvdec.c, 1.17, 1.18 gif.c, 1.17, 1.18 gifdec.c, 1.7, 1.8 grab.c, 1.33, 1.34 img.c, 1.39, 1.40 img2.c, 1.14, 1.15 mov.c, 1.78, 1.79 movenc.c, 1.37, 1.38 mpegts.c, 1.26, 1.27 nsvdec.c, 1.6, 1.7 nut.c, 1.47, 1.48 raw.c, 1.50, 1.51 rm.c, 1.45, 1.46 rtp.c, 1.15, 1.16 swf.c, 1.23, 1.24 utils.c, 1.141, 1.142 yuv4mpeg.c, 1.21, 1.22
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg/vhook
In directory mail:/var2/tmp/cvs-serv21767/vhook
Modified Files:
watermark.c
Log Message:
switch to native time bases
Index: watermark.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/vhook/watermark.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- watermark.c 25 Feb 2005 22:22:20 -0000 1.1
+++ watermark.c 30 Apr 2005 21:43:59 -0000 1.2
@@ -343,8 +343,8 @@
// Hack to correct wrong frame rates that seem to be generated by some
// codecs
- if (ci->pCodecCtx->frame_rate>1000 && ci->pCodecCtx->frame_rate_base==1)
- ci->pCodecCtx->frame_rate_base=1000;
+ if (ci->pCodecCtx->time_base.den>1000 && ci->pCodecCtx->time_base.num==1)
+ ci->pCodecCtx->time_base.num=1000;
/*
* Allocate a video frame to store the decoded images in.
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec apiexample.c, 1.18, 1.19 avcodec.h, 1.392, 1.393 h261.c, 1.25, 1.26 h263.c, 1.276, 1.277 h264.c, 1.114, 1.115 mpeg12.c, 1.234, 1.235 mpegvideo.c, 1.476, 1.477 mpegvideo.h, 1.222, 1.223 msmpeg4.c, 1.87, 1.88 oggvorbis.c, 1.16, 1.17 parser.c, 1.23, 1.24 ratecontrol.c, 1.48, 1.49 utils.c, 1.137, 1.138 vc9.c, 1.18, 1.19 wmv2.c, 1.31, 1.32 x264.c, 1.5, 1.6 xvidff.c, 1.3, 1.4
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat 4xm.c, 1.16, 1.17 asf-enc.c, 1.70, 1.71 asf.c, 1.78, 1.79 avformat.h, 1.118, 1.119 avidec.c, 1.69, 1.70 avienc.c, 1.103, 1.104 dc1394.c, 1.2, 1.3 dv.c, 1.41, 1.42 ffm.c, 1.37, 1.38 flvdec.c, 1.17, 1.18 gif.c, 1.17, 1.18 gifdec.c, 1.7, 1.8 grab.c, 1.33, 1.34 img.c, 1.39, 1.40 img2.c, 1.14, 1.15 mov.c, 1.78, 1.79 movenc.c, 1.37, 1.38 mpegts.c, 1.26, 1.27 nsvdec.c, 1.6, 1.7 nut.c, 1.47, 1.48 raw.c, 1.50, 1.51 rm.c, 1.45, 1.46 rtp.c, 1.15, 1.16 swf.c, 1.23, 1.24 utils.c, 1.141, 1.142 yuv4mpeg.c, 1.21, 1.22
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list