diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2005-09-21 23:09:16 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2005-09-21 23:09:16 +0000 |
commit | 62ab0b78220b0660e91528d07fe15520d6211329 (patch) | |
tree | e37fed603005fce05a001e3b27a60ac78d04fa55 /libavformat/ogg.c | |
parent | 12e9668119df1539b1f967aff2e351923ddd043c (diff) | |
download | ffmpeg-62ab0b78220b0660e91528d07fe15520d6211329.tar.gz |
fix unused variable warnings
Originally committed as revision 4609 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ogg.c')
-rw-r--r-- | libavformat/ogg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/ogg.c b/libavformat/ogg.c index 861596cc0d..58f7c505f6 100644 --- a/libavformat/ogg.c +++ b/libavformat/ogg.c @@ -34,7 +34,7 @@ static int ogg_write_header(AVFormatContext *avfcontext) { 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 @@ static int ogg_write_header(AVFormatContext *avfcontext) 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); |