X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fh264dsp.h;h=98ea15c330ad4457e9266448a8da1cd363052a09;hb=1acd7d594c15aa491729c837ad3519d3469e620a;hp=f0eaacc79e6b214840e04fdcf42cedae82be47e2;hpb=ede45c4e1da8bd2fefc89ea63e57a49e6c0a3e19;p=ffmpeg diff --git a/libavcodec/h264dsp.h b/libavcodec/h264dsp.h index f0eaacc79e6..98ea15c330a 100644 --- a/libavcodec/h264dsp.h +++ b/libavcodec/h264dsp.h @@ -101,6 +101,10 @@ typedef struct H264DSPContext { void (*h264_luma_dc_dequant_idct)(int16_t *output, int16_t *input /*align 16*/, int qmul); void (*h264_chroma_dc_dequant_idct)(int16_t *block, int qmul); + + /* bypass-transform */ + void (*h264_add_pixels8_clear)(uint8_t *dst, int16_t *block, int stride); + void (*h264_add_pixels4_clear)(uint8_t *dst, int16_t *block, int stride); } H264DSPContext; void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,