[Ffmpeg-cvslog] CVS: ffmpeg/libavformat ogg.c,1.24,1.25
Aurelien Jacobs CVS
aurel
Thu Sep 22 01:09:18 CEST 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/i386 dsputil_mmx.c, 1.101, 1.102 mpegvideo_mmx_template.c, 1.25, 1.26
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec oggvorbis.c, 1.23, 1.24 snow.c, 1.62, 1.63 vc9.c, 1.23, 1.24
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv7794/libavformat
Modified Files:
ogg.c
Log Message:
fix unused variable warnings
Index: ogg.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/ogg.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- ogg.c 15 Aug 2005 20:42:56 -0000 1.24
+++ ogg.c 21 Sep 2005 23:09:16 -0000 1.25
@@ -34,7 +34,7 @@
{
OggContext *context = avfcontext->priv_data;
ogg_packet *op= &context->op;
- int n, i;
+ int n;
ogg_stream_init(&context->os, 31415);
@@ -44,7 +44,7 @@
int headers_len = codec->extradata_size;
uint8_t *header_start[3];
int header_len[3];
- int i, j, hdr_type;
+ int i, j;
av_set_pts_info(avfcontext->streams[n], 60, 1, AV_TIME_BASE);
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/i386 dsputil_mmx.c, 1.101, 1.102 mpegvideo_mmx_template.c, 1.25, 1.26
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec oggvorbis.c, 1.23, 1.24 snow.c, 1.62, 1.63 vc9.c, 1.23, 1.24
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list