diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libavcodec/h264_mc.h	Tue Sep 25 15:55:33 2012 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef H264_MC_H
     1.5 +#define H264_MC_H
     1.6 +
     1.7 +#include "dsputil.h"
     1.8 +#include "h264_types.h"
     1.9 +
    1.10 +void hl_motion(MBRecContext *d, MBRecState *mrs, H264Slice *s, H264Mb *m, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
    1.11 +					qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
    1.12 +					qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
    1.13 +					h264_weight_func *weight_op, h264_biweight_func *weight_avg);
    1.14 +
    1.15 +#endif