2014-04-28 14:12:28 +00:00
|
|
|
/*
|
|
|
|
* HEVC video decoder
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 - 2013 Guillaume Martres
|
|
|
|
* Copyright (C) 2013 - 2014 Pierre-Edouard Lepere
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_X86_HEVCDSP_H
|
|
|
|
#define AVCODEC_X86_HEVCDSP_H
|
|
|
|
|
2014-05-10 16:21:28 +00:00
|
|
|
#include <stddef.h>
|
2014-05-10 02:57:25 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
#define PEL_LINK(dst, idx1, idx2, idx3, name, D, opt) \
|
|
|
|
dst[idx1][idx2][idx3] = ff_hevc_put_hevc_ ## name ## _ ## D ## _##opt; \
|
|
|
|
dst ## _bi[idx1][idx2][idx3] = ff_hevc_put_hevc_bi_ ## name ## _ ## D ## _##opt; \
|
|
|
|
dst ## _uni[idx1][idx2][idx3] = ff_hevc_put_hevc_uni_ ## name ## _ ## D ## _##opt; \
|
|
|
|
dst ## _uni_w[idx1][idx2][idx3] = ff_hevc_put_hevc_uni_w_ ## name ## _ ## D ## _##opt; \
|
|
|
|
dst ## _bi_w[idx1][idx2][idx3] = ff_hevc_put_hevc_bi_w_ ## name ## _ ## D ## _##opt
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
#define PEL_PROTOTYPE(name, D, opt) \
|
|
|
|
void ff_hevc_put_hevc_ ## name ## _ ## D ## _##opt(int16_t *dst, ptrdiff_t dststride,uint8_t *_src, ptrdiff_t _srcstride, int height, intptr_t mx, intptr_t my,int width); \
|
|
|
|
void ff_hevc_put_hevc_bi_ ## name ## _ ## D ## _##opt(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int16_t *src2, ptrdiff_t src2stride, int height, intptr_t mx, intptr_t my, int width); \
|
|
|
|
void ff_hevc_put_hevc_uni_ ## name ## _ ## D ## _##opt(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int height, intptr_t mx, intptr_t my, int width); \
|
|
|
|
void ff_hevc_put_hevc_uni_w_ ## name ## _ ## D ## _##opt(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int height, int denom, int wx, int ox, intptr_t mx, intptr_t my, int width); \
|
|
|
|
void ff_hevc_put_hevc_bi_w_ ## name ## _ ## D ## _##opt(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int16_t *src2, ptrdiff_t src2stride, int height, int denom, int wx0, int wx1, int ox0, int ox1, intptr_t mx, intptr_t my, int width)
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// MC functions
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
#define EPEL_PROTOTYPES(fname, bitd, opt) \
|
|
|
|
PEL_PROTOTYPE(fname##4, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##6, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##8, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##12, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##16, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##24, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##32, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##48, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##64, bitd, opt)
|
|
|
|
|
|
|
|
#define QPEL_PROTOTYPES(fname, bitd, opt) \
|
|
|
|
PEL_PROTOTYPE(fname##4, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##8, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##12, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##16, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##24, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##32, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##48, bitd, opt); \
|
|
|
|
PEL_PROTOTYPE(fname##64, bitd, opt)
|
|
|
|
|
|
|
|
#define WEIGHTING_PROTOTYPE(width, bitd, opt) \
|
|
|
|
void ff_hevc_put_hevc_uni_w##width##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, int16_t *_src, ptrdiff_t _srcstride, int height, int denom, int _wx, int _ox); \
|
|
|
|
void ff_hevc_put_hevc_bi_w##width##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, int16_t *_src, ptrdiff_t _srcstride, int16_t *_src2, ptrdiff_t _src2stride, int height, int denom, int _wx0, int _wx1, int _ox0, int _ox1)
|
|
|
|
|
|
|
|
#define WEIGHTING_PROTOTYPES(bitd, opt) \
|
|
|
|
WEIGHTING_PROTOTYPE(2, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(4, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(6, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(8, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(12, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(16, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(24, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(32, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(48, bitd, opt); \
|
|
|
|
WEIGHTING_PROTOTYPE(64, bitd, opt)
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// QPEL_PIXELS EPEL_PIXELS
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-05-07 07:58:34 +00:00
|
|
|
EPEL_PROTOTYPES(pel_pixels , 8, sse4);
|
|
|
|
EPEL_PROTOTYPES(pel_pixels , 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EPEL
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-05-07 07:58:34 +00:00
|
|
|
EPEL_PROTOTYPES(epel_h , 8, sse4);
|
|
|
|
EPEL_PROTOTYPES(epel_h , 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
EPEL_PROTOTYPES(epel_v , 8, sse4);
|
|
|
|
EPEL_PROTOTYPES(epel_v , 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
EPEL_PROTOTYPES(epel_hv , 8, sse4);
|
|
|
|
EPEL_PROTOTYPES(epel_hv , 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// QPEL
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-05-07 07:58:34 +00:00
|
|
|
QPEL_PROTOTYPES(qpel_h , 8, sse4);
|
|
|
|
QPEL_PROTOTYPES(qpel_h , 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
QPEL_PROTOTYPES(qpel_v, 8, sse4);
|
|
|
|
QPEL_PROTOTYPES(qpel_v, 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
QPEL_PROTOTYPES(qpel_hv, 8, sse4);
|
|
|
|
QPEL_PROTOTYPES(qpel_hv, 10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
|
2014-05-07 07:58:34 +00:00
|
|
|
WEIGHTING_PROTOTYPES(8, sse4);
|
|
|
|
WEIGHTING_PROTOTYPES(10, sse4);
|
2014-04-28 14:12:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif // AVCODEC_X86_HEVCDSP_H
|