Commit 8f56e219 authored by Michael Niedermayer's avatar Michael Niedermayer

Move direct_dist_scale_factor() and direct_ref_list_init() after fill_mbaff_ref_list()

as future changes will need the mbaff lists inited.

Originally committed as revision 15374 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 078f42dd
...@@ -2919,9 +2919,6 @@ static int decode_ref_pic_list_reordering(H264Context *h){ ...@@ -2919,9 +2919,6 @@ static int decode_ref_pic_list_reordering(H264Context *h){
} }
} }
if(h->slice_type_nos==FF_B_TYPE && !h->direct_spatial_mv_pred)
direct_dist_scale_factor(h);
direct_ref_list_init(h);
return 0; return 0;
} }
...@@ -3913,6 +3910,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ ...@@ -3913,6 +3910,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
if(FRAME_MBAFF) if(FRAME_MBAFF)
fill_mbaff_ref_list(h); fill_mbaff_ref_list(h);
if(h->slice_type_nos==FF_B_TYPE && !h->direct_spatial_mv_pred)
direct_dist_scale_factor(h);
direct_ref_list_init(h);
if( h->slice_type_nos != FF_I_TYPE && h->pps.cabac ){ if( h->slice_type_nos != FF_I_TYPE && h->pps.cabac ){
tmp = get_ue_golomb(&s->gb); tmp = get_ue_golomb(&s->gb);
if(tmp > 2){ if(tmp > 2){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment