diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
commit | 36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (patch) | |
tree | 4c9121aea216399330a7448f303bb29a36076cbb /libavformat/rm.c | |
parent | f8d611285025cae8c933dc1228a2b1db5de5cf85 (diff) | |
download | ffmpeg-36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740.tar.gz |
Remove unused variables and the corresponding warnings along with them.
Originally committed as revision 6536 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r-- | libavformat/rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rm.c b/libavformat/rm.c index ceae5c3c30..ba1cd6699a 100644 --- a/libavformat/rm.c +++ b/libavformat/rm.c @@ -645,7 +645,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) unsigned int tag, v; int tag_size, size, codec_data_size, i; int64_t codec_pos; - unsigned int h263_hack_version, start_time, duration; + unsigned int start_time, duration; char buf[128]; int flags = 0; |