comparison libavcodec/h264_rec.h @ 2:897f711a7157

rearrange to work with autoconf
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Tue, 25 Sep 2012 15:55:33 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8403217ddc7b
1 #ifndef H264_REC_H
2 #define H264_REC_H
3
4 #include "h264_types.h"
5
6 MBRecContext *get_mbrec_context(H264Context *h);
7 void free_mbrec_context( MBRecContext *d);
8 void h264_decode_mb_internal(MBRecContext *d, MBRecState *mrs, H264Slice *s, H264Mb *m);
9
10 void init_mbrec_context(MBRecContext *mrc, MBRecState *mrs, H264Slice *s, int line);
11
12 #endif