|
@@ -18,6 +18,7 @@ |
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/internal.h" |
|
|
#include "libavutil/arm/cpu.h" |
|
|
#include "libavutil/arm/cpu.h" |
|
|
#include "libavcodec/avcodec.h" |
|
|
#include "libavcodec/avcodec.h" |
|
|
#include "libavcodec/mpegvideo.h" |
|
|
#include "libavcodec/mpegvideo.h" |
|
@@ -25,12 +26,13 @@ |
|
|
#include "asm-offsets.h" |
|
|
#include "asm-offsets.h" |
|
|
|
|
|
|
|
|
#if HAVE_NEON |
|
|
#if HAVE_NEON |
|
|
CHK_OFFS(MpegEncContext, y_dc_scale, Y_DC_SCALE); |
|
|
|
|
|
CHK_OFFS(MpegEncContext, c_dc_scale, C_DC_SCALE); |
|
|
|
|
|
CHK_OFFS(MpegEncContext, ac_pred, AC_PRED); |
|
|
|
|
|
CHK_OFFS(MpegEncContext, block_last_index, BLOCK_LAST_INDEX); |
|
|
|
|
|
CHK_OFFS(MpegEncContext, inter_scantable.raster_end, INTER_SCANTAB_RASTER_END); |
|
|
|
|
|
CHK_OFFS(MpegEncContext, h263_aic, H263_AIC); |
|
|
|
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, y_dc_scale, Y_DC_SCALE); |
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, c_dc_scale, C_DC_SCALE); |
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, ac_pred, AC_PRED); |
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, block_last_index, BLOCK_LAST_INDEX); |
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, inter_scantable.raster_end, |
|
|
|
|
|
INTER_SCANTAB_RASTER_END); |
|
|
|
|
|
AV_CHECK_OFFSET(MpegEncContext, h263_aic, H263_AIC); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
void ff_dct_unquantize_h263_inter_neon(MpegEncContext *s, int16_t *block, |
|
|
void ff_dct_unquantize_h263_inter_neon(MpegEncContext *s, int16_t *block, |
|
|