mirror of https://git.ffmpeg.org/ffmpeg.git
Move declarations in sync() closer to where they are used.
Originally committed as revision 18556 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
236580b478
commit
b33d75fd80
|
@ -501,11 +501,11 @@ static int get_num(ByteIOContext *pb, int *len)
|
||||||
static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){
|
static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){
|
||||||
RMDemuxContext *rm = s->priv_data;
|
RMDemuxContext *rm = s->priv_data;
|
||||||
ByteIOContext *pb = s->pb;
|
ByteIOContext *pb = s->pb;
|
||||||
int len, num, res, i;
|
|
||||||
AVStream *st;
|
AVStream *st;
|
||||||
uint32_t state=0xFFFFFFFF;
|
uint32_t state=0xFFFFFFFF;
|
||||||
|
|
||||||
while(!url_feof(pb)){
|
while(!url_feof(pb)){
|
||||||
|
int len, num, res, i;
|
||||||
*pos= url_ftell(pb) - 3;
|
*pos= url_ftell(pb) - 3;
|
||||||
if(rm->remaining_len > 0){
|
if(rm->remaining_len > 0){
|
||||||
num= rm->current_stream;
|
num= rm->current_stream;
|
||||||
|
|
Loading…
Reference in New Issue