annotate libavcodec/h264_mc.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 |
|
| rev |
line source |
|
nengel@2
|
1 #ifndef H264_MC_H
|
|
nengel@2
|
2 #define H264_MC_H
|
|
nengel@2
|
3
|
|
nengel@2
|
4 #include "dsputil.h"
|
|
nengel@2
|
5 #include "h264_types.h"
|
|
nengel@2
|
6
|
|
nengel@2
|
7 void hl_motion(MBRecContext *d, MBRecState *mrs, H264Slice *s, H264Mb *m, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
|
|
nengel@2
|
8 qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
|
|
nengel@2
|
9 qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
|
|
nengel@2
|
10 h264_weight_func *weight_op, h264_biweight_func *weight_avg);
|
|
nengel@2
|
11
|
|
nengel@2
|
12 #endif
|