view libavcodec/h264_refs.h @ 6:55fb61482128

VSs working
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Wed, 06 Mar 2013 14:35:39 +0100
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