diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-11-16 09:59:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-11-16 09:59:46 +0000 |
commit | c873bc17bf6da4d82897033aa97cda3d9fe5683f (patch) | |
tree | 340674f044a85cbe22cbab1a43f842da51d51546 /libavformat | |
parent | a57d13b71375a127820220efeb35d03288c43ac2 (diff) | |
download | ffmpeg-c873bc17bf6da4d82897033aa97cda3d9fe5683f.tar.gz |
remove unused variables
Originally committed as revision 7098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nutdec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 1176c8a1db..96538e5496 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -287,7 +287,7 @@ static int decode_stream_header(NUTContext *nut){ AVFormatContext *s= nut->avf; ByteIOContext *bc = &s->pb; StreamContext *stc; - int class, nom, denom, stream_id; + int class, stream_id; uint64_t tmp, end; AVStream *st; @@ -784,7 +784,6 @@ static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index, int64_t NUTContext *nut = s->priv_data; ByteIOContext *bc = &s->pb; int64_t pos, pts, back_ptr; - int frame_code, stream_id,size, flags; av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n", stream_index, *pos_arg, pos_limit); pos= *pos_arg; |