~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/hevcdsp.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-10 09:45:02 UTC
  • mfrom: (1.3.14)
  • mto: (1.3.16)
  • mto: This revision was merged to the branch mainline in revision 41.
  • Revision ID: package-import@ubuntu.com-20140810094502-mmdupdml8tixclg2
Tags: upstream-11~alpha1
ImportĀ upstreamĀ versionĀ 11~alpha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                              ptrdiff_t srcstride, int width, int height);
80
80
 
81
81
    void (*hevc_h_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride,
82
 
                                    int *beta, int *tc,
 
82
                                    int beta, int *tc,
83
83
                                    uint8_t *no_p, uint8_t *no_q);
84
84
    void (*hevc_v_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride,
85
 
                                    int *beta, int *tc,
 
85
                                    int beta, int *tc,
86
86
                                    uint8_t *no_p, uint8_t *no_q);
87
87
    void (*hevc_h_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride,
88
88
                                      int *tc, uint8_t *no_p, uint8_t *no_q);
89
89
    void (*hevc_v_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride,
90
90
                                      int *tc, uint8_t *no_p, uint8_t *no_q);
91
91
    void (*hevc_h_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride,
92
 
                                      int *beta, int *tc,
 
92
                                      int beta, int *tc,
93
93
                                      uint8_t *no_p, uint8_t *no_q);
94
94
    void (*hevc_v_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride,
95
 
                                      int *beta, int *tc,
 
95
                                      int beta, int *tc,
96
96
                                      uint8_t *no_p, uint8_t *no_q);
97
97
    void (*hevc_h_loop_filter_chroma_c)(uint8_t *pix, ptrdiff_t stride,
98
98
                                        int *tc, uint8_t *no_p,
104
104
 
105
105
void ff_hevc_dsp_init(HEVCDSPContext *hpc, int bit_depth);
106
106
 
 
107
void ff_hevc_dsp_init_x86(HEVCDSPContext *c, const int bit_depth);
 
108
 
107
109
extern const int8_t ff_hevc_epel_filters[7][16];
108
110
 
109
111
#endif /* AVCODEC_HEVCDSP_H */