Mercurial > libavcodec.hg
changeset 3298:9637da0a9c1b libavcodec
cosmetics (initalize variables where they are used)
author | michael |
---|---|
date | Wed, 10 May 2006 11:05:03 +0000 |
parents | 9ae9653d706c |
children | 32e634e0d5cc |
files | h264.c |
diffstat | 1 files changed, 4 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Wed May 10 10:57:27 2006 +0000 +++ b/h264.c Wed May 10 11:05:03 2006 +0000 @@ -7782,11 +7782,7 @@ /* Sort B-frames into display order */ Picture *cur = s->current_picture_ptr; Picture *prev = h->delayed_output_pic; - int out_idx = 0; - int pics = 0; - int out_of_order; - int cross_idr = 0; - int i; + int i, pics, cross_idr, out_of_order, out_idx; if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames < h->sps.num_reorder_frames){ @@ -7794,16 +7790,19 @@ s->low_delay = 0; } + pics = 0; while(h->delayed_pic[pics]) pics++; h->delayed_pic[pics++] = cur; if(cur->reference == 0) cur->reference = 1; + cross_idr = 0; for(i=0; h->delayed_pic[i]; i++) if(h->delayed_pic[i]->key_frame || h->delayed_pic[i]->poc==0) cross_idr = 1; out = h->delayed_pic[0]; + out_idx = 0; for(i=1; h->delayed_pic[i] && !h->delayed_pic[i]->key_frame; i++) if(h->delayed_pic[i]->poc < out->poc){ out = h->delayed_pic[i];