On Mon, Apr 18, 2016 at 4:25 AM, Anton Khirnov <[email protected]> wrote:
> ---
>  libavcodec/h264.h       | 2 +-
>  libavcodec/h264_refs.c  | 2 +-
>  libavcodec/h264_slice.c | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/h264.h b/libavcodec/h264.h
> index 580c821..f551d79 100644
> --- a/libavcodec/h264.h
> +++ b/libavcodec/h264.h
> @@ -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);
>
>  /**
> diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c
> index 395c240..8552487 100644
> --- a/libavcodec/h264_refs.c
> +++ b/libavcodec/h264_refs.c
> @@ -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
> diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
> index 514da20..61894ed 100644
> --- a/libavcodec/h264_slice.c
> +++ b/libavcodec/h264_slice.c
> @@ -1419,7 +1419,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);
> --

ok
-- 
Vittorio
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to