| rev |
line source |
|
nengel@2
|
1 /*
|
|
nengel@2
|
2 * Copyright (c) 2003-2010 Michael Niedermayer <michaelni@gmx.at>
|
|
nengel@2
|
3 *
|
|
nengel@2
|
4 * This file is part of FFmpeg.
|
|
nengel@2
|
5 *
|
|
nengel@2
|
6 * FFmpeg is free software; you can redistribute it and/or
|
|
nengel@2
|
7 * modify it under the terms of the GNU Lesser General Public
|
|
nengel@2
|
8 * License as published by the Free Software Foundation; either
|
|
nengel@2
|
9 * version 2.1 of the License, or (at your option) any later version.
|
|
nengel@2
|
10 *
|
|
nengel@2
|
11 * FFmpeg is distributed in the hope that it will be useful,
|
|
nengel@2
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
nengel@2
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
nengel@2
|
14 * Lesser General Public License for more details.
|
|
nengel@2
|
15 *
|
|
nengel@2
|
16 * You should have received a copy of the GNU Lesser General Public
|
|
nengel@2
|
17 * License along with FFmpeg; if not, write to the Free Software
|
|
nengel@2
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
nengel@2
|
19 */
|
|
nengel@2
|
20
|
|
nengel@2
|
21 /**
|
|
nengel@2
|
22 * @file
|
|
nengel@2
|
23 * H.264 DSP functions.
|
|
nengel@2
|
24 * @author Michael Niedermayer <michaelni@gmx.at>
|
|
nengel@2
|
25 */
|
|
nengel@2
|
26
|
|
nengel@2
|
27 #ifndef AVCODEC_H264DSP_H
|
|
nengel@2
|
28 #define AVCODEC_H264DSP_H
|
|
nengel@2
|
29
|
|
nengel@2
|
30 #include <stdint.h>
|
|
nengel@2
|
31 #include "dsputil.h"
|
|
nengel@2
|
32
|
|
nengel@2
|
33 //typedef void (*h264_chroma_mc_func)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x, int y);
|
|
nengel@2
|
34 typedef void (*h264_weight_func)(uint8_t *block, int stride, int log2_denom, int weight, int offset);
|
|
nengel@2
|
35 typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset);
|
|
nengel@2
|
36
|
|
nengel@2
|
37 /**
|
|
nengel@2
|
38 * Context for storing H.264 DSP functions
|
|
nengel@2
|
39 */
|
|
nengel@2
|
40 typedef struct H264DSPContext{
|
|
nengel@2
|
41 /* weighted MC */
|
|
nengel@2
|
42 h264_weight_func weight_h264_pixels_tab[10];
|
|
nengel@2
|
43 h264_biweight_func biweight_h264_pixels_tab[10];
|
|
nengel@2
|
44
|
|
nengel@2
|
45 /* loop filter */
|
|
nengel@2
|
46 void (*h264_v_loop_filter_luma)(uint8_t *pix/*align 16*/, int stride, int alpha, int beta, int8_t *tc0);
|
|
nengel@2
|
47 void (*h264_h_loop_filter_luma)(uint8_t *pix/*align 4 */, int stride, int alpha, int beta, int8_t *tc0);
|
|
nengel@2
|
48 /* v/h_loop_filter_luma_intra: align 16 */
|
|
nengel@2
|
49 void (*h264_v_loop_filter_luma_intra)(uint8_t *pix, int stride, int alpha, int beta);
|
|
nengel@2
|
50 void (*h264_h_loop_filter_luma_intra)(uint8_t *pix, int stride, int alpha, int beta);
|
|
nengel@2
|
51 void (*h264_v_loop_filter_chroma)(uint8_t *pix/*align 8*/, int stride, int alpha, int beta, int8_t *tc0);
|
|
nengel@2
|
52 void (*h264_h_loop_filter_chroma)(uint8_t *pix/*align 4*/, int stride, int alpha, int beta, int8_t *tc0);
|
|
nengel@2
|
53 void (*h264_v_loop_filter_chroma_intra)(uint8_t *pix/*align 8*/, int stride, int alpha, int beta);
|
|
nengel@2
|
54 void (*h264_h_loop_filter_chroma_intra)(uint8_t *pix/*align 8*/, int stride, int alpha, int beta);
|
|
nengel@2
|
55 // h264_loop_filter_strength: simd only. the C version is inlined in h264.c
|
|
nengel@2
|
56 void (*h264_loop_filter_strength)(int16_t bS[2][4][4], uint8_t nnz[40], int8_t ref[2][40], int16_t mv[2][40][2],
|
|
nengel@2
|
57 int bidir, int edges, int step, int mask_mv0, int mask_mv1, int field);
|
|
nengel@2
|
58
|
|
nengel@2
|
59 /* IDCT */
|
|
nengel@2
|
60 /* NOTE!!! if you implement any of h264_idct8_add, h264_idct8_add4 then you must implement all of them
|
|
nengel@2
|
61 NOTE!!! if you implement any of h264_idct_add, h264_idct_add16, h264_idct_add16intra, h264_idct_add8 then you must implement all of them
|
|
nengel@2
|
62 The reason for above, is that no 2 out of one list may use a different permutation.
|
|
nengel@2
|
63 */
|
|
nengel@2
|
64 void (*h264_idct_add)(uint8_t *dst/*align 4*/, DCTELEM *block/*align 16*/, int stride);
|
|
nengel@2
|
65 void (*h264_idct8_add)(uint8_t *dst/*align 8*/, DCTELEM *block/*align 16*/, int stride);
|
|
nengel@2
|
66 void (*h264_idct_dc_add)(uint8_t *dst/*align 4*/, DCTELEM *block/*align 16*/, int stride);
|
|
nengel@2
|
67 void (*h264_idct8_dc_add)(uint8_t *dst/*align 8*/, DCTELEM *block/*align 16*/, int stride);
|
|
nengel@2
|
68 void (*h264_dct)(DCTELEM block[4][4]);
|
|
nengel@2
|
69 void (*h264_idct_add16)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
70 void (*h264_idct8_add4)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
71 void (*h264_idct_add8)(uint8_t **dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
72 void (*h264_idct_add16intra)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
|
nengel@2
|
73
|
|
nengel@2
|
74 qpel_mc_func (*qpel_put)[16];
|
|
nengel@2
|
75 qpel_mc_func (*qpel_avg)[16];
|
|
nengel@2
|
76 }H264DSPContext;
|
|
nengel@2
|
77
|
|
nengel@2
|
78 void ff_h264dsp_init(H264DSPContext *c);
|
|
nengel@2
|
79 void ff_h264dsp_init_arm(H264DSPContext *c);
|
|
nengel@2
|
80 void ff_h264dsp_init_ppc(H264DSPContext *c);
|
|
nengel@2
|
81 void ff_h264dsp_init_x86(H264DSPContext *c);
|
|
nengel@2
|
82
|
|
nengel@2
|
83 #endif /* AVCODEC_H264DSP_H */
|