view libavcodec/h264_refs.h @ 9:ea1ba68cf0ed

update to match api changes + add sscc produced source
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Wed, 05 Jun 2013 14:43:26 +0200
parents
children
line source
1 #ifndef H264_REFS_H
2 #define H264_REFS_H
4 #include "avcodec.h"
5 #include "h264_types.h"
7 int ff_h264_fill_default_ref_list(NalContext *n, H264Slice *s);
8 int ff_h264_decode_ref_pic_list_reordering(NalContext *n, H264Slice *s, GetBitContext *gb);
9 void ff_h264_remove_all_refs(NalContext *n, H264Slice *s);
10 int ff_h264_ref_pic_marking(NalContext *n, H264Slice *s, GetBitContext *gb);
11 void ff_h264_direct_ref_list_init(H264Slice *s);
12 void ff_h264_direct_dist_scale_factor(H264Slice *s);
14 #endif