diff options
author | Reimar Döffinger | 2012-01-15 20:18:22 +0100 |
---|---|---|
committer | Reimar Döffinger | 2012-01-16 19:21:24 +0100 |
commit | 6003ec880b5654ece467293b0c9c92f328235b86 (patch) | |
tree | 8e7c310e882e12baf0beaa0843fefe1184f7b25b /libavformat | |
parent | 5fc51c31557b5993f24d308a94f306b66a3962e1 (diff) |
asfdec: Move variable declarations into the blocks they are used in.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/asfdec.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 3f733f7bad..2aec02c938 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -1212,7 +1212,6 @@ static void asf_build_simple_index(AVFormatContext *s, int stream_index) ff_asf_guid g; ASFContext *asf = s->priv_data; int64_t current_pos= avio_tell(s->pb); - int i; if(avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET) < 0) { asf->index_read= -1; @@ -1237,6 +1236,7 @@ static void asf_build_simple_index(AVFormatContext *s, int stream_index) { int64_t itime, last_pos=-1; int pct, ict; + int i; int64_t av_unused gsize= avio_rl64(s->pb); ff_get_guid(s->pb, &g); itime=avio_rl64(s->pb); @@ -1265,8 +1265,6 @@ static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int { ASFContext *asf = s->priv_data; AVStream *st = s->streams[stream_index]; - int64_t pos; - int index; if (s->packet_size <= 0) return -1; @@ -1284,10 +1282,10 @@ static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int asf_build_simple_index(s, stream_index); if((asf->index_read > 0 && st->index_entries)){ - index= av_index_search_timestamp(st, pts, flags); + int index= av_index_search_timestamp(st, pts, flags); if(index >= 0) { /* find the position */ - pos = st->index_entries[index].pos; + uint64_t pos = st->index_entries[index].pos; /* do the seek */ av_log(s, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos); |