Browse Source

h264_refs: remove an unused parameter from ff_h264_fill_mbaff_ref_list()

tags/n3.1
Anton Khirnov 9 years ago
parent
commit
89ae244e78
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/h264.h
  2. +1
    -1
      libavcodec/h264_refs.c
  3. +1
    -1
      libavcodec/h264_slice.c

+ 1
- 1
libavcodec/h264.h View File

@@ -687,7 +687,7 @@ int ff_h264_get_slice_type(const H264SliceContext *sl);
int ff_h264_alloc_tables(H264Context *h);

int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContext *sl);
void ff_h264_fill_mbaff_ref_list(H264Context *h, H264SliceContext *sl);
void ff_h264_fill_mbaff_ref_list(H264SliceContext *sl);
void ff_h264_remove_all_refs(H264Context *h);

/**


+ 1
- 1
libavcodec/h264_refs.c View File

@@ -352,7 +352,7 @@ int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContex
return 0;
}

void ff_h264_fill_mbaff_ref_list(H264Context *h, H264SliceContext *sl)
void ff_h264_fill_mbaff_ref_list(H264SliceContext *sl)
{
int list, i, j;
for (list = 0; list < sl->list_count; list++) { //FIXME try list_count


+ 1
- 1
libavcodec/h264_slice.c View File

@@ -1421,7 +1421,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
}

if (FRAME_MBAFF(h)) {
ff_h264_fill_mbaff_ref_list(h, sl);
ff_h264_fill_mbaff_ref_list(sl);

if (pps->weighted_bipred_idc == 2 && sl->slice_type_nos == AV_PICTURE_TYPE_B) {
implicit_weight_table(h, sl, 0);


Loading…
Cancel
Save