mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-21 13:21:55 +08:00
Forgotten in70a7df049c. Using the wrong scantable matters for codecs for which both scantables can differ, namely the MPEG-4 decoder and the WMV1/2 codecs. For WMV1 it can lead to wrong output in case the IDCT permutation is FF_IDCT_PERM_PARTTRANS, because in this case the entries of of the intra scantable's raster end are not always <= the corresponding entries of the inter scantable's raster end when the former is initialized via ff_wmv1_scantable[1] and the latter via ff_wmv1_scantable[0]. FF_IDCT_PERM_PARTTRANS is used iff the Neon IDCT is used (for both arm and aarch64).* Said IDCT is not used during FATE, so that this issue went unnoticed. WMV2 uses the same scantables, but uses a custom IDCT which always uses FF_IDCT_PERM_NONE for which the inter_scantable, so that the output is always correct for it. The scantable for MPEG-4 can change mid-stream (for the decoder), but sincec41818dc5donly the intra scantable is updated, so that both scantables can get out of sync. In such a case the unquantize intra functions could unquantize an incorrect number of coefficients. Using raster_end of the wrong scantable can also lead to an unnecessarily large amount of coefficients unquantized. *: FF_IDCT_PERM_SIMPLE and FF_IDCT_PERM_TRANSPOSE would also not work, but they are not used at all by arm and aarch64. Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
103 lines
3.1 KiB
C
103 lines
3.1 KiB
C
/*
|
|
* Optimization of some functions from mpegvideo.c for armv5te
|
|
* Copyright (c) 2007 Siarhei Siamashka <ssvb@users.sourceforge.net>
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include "libavutil/attributes.h"
|
|
#include "libavutil/avassert.h"
|
|
#include "libavcodec/avcodec.h"
|
|
#include "libavcodec/mpegvideo.h"
|
|
#include "mpegvideo_arm.h"
|
|
|
|
void ff_dct_unquantize_h263_armv5te(int16_t *block, int qmul, int qadd, int count);
|
|
|
|
#ifdef ENABLE_ARM_TESTS
|
|
/**
|
|
* H.263 dequantizer supplementary function, it is performance critical and needs to
|
|
* have optimized implementations for each architecture. Is also used as a reference
|
|
* implementation in regression tests
|
|
*/
|
|
static inline void dct_unquantize_h263_helper_c(int16_t *block, int qmul, int qadd, int count)
|
|
{
|
|
int i, level;
|
|
for (i = 0; i < count; i++) {
|
|
level = block[i];
|
|
if (level) {
|
|
if (level < 0) {
|
|
level = level * qmul - qadd;
|
|
} else {
|
|
level = level * qmul + qadd;
|
|
}
|
|
block[i] = level;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
static void dct_unquantize_h263_intra_armv5te(const MPVContext *s,
|
|
int16_t *block, int n, int qscale)
|
|
{
|
|
int level, qmul, qadd;
|
|
int nCoeffs;
|
|
|
|
av_assert2(s->block_last_index[n]>=0);
|
|
|
|
qmul = qscale << 1;
|
|
|
|
if (!s->h263_aic) {
|
|
if (n < 4)
|
|
level = block[0] * s->y_dc_scale;
|
|
else
|
|
level = block[0] * s->c_dc_scale;
|
|
qadd = (qscale - 1) | 1;
|
|
}else{
|
|
qadd = 0;
|
|
level = block[0];
|
|
}
|
|
if(s->ac_pred)
|
|
nCoeffs=63;
|
|
else
|
|
nCoeffs = s->intra_scantable.raster_end[s->block_last_index[n]];
|
|
|
|
ff_dct_unquantize_h263_armv5te(block, qmul, qadd, nCoeffs + 1);
|
|
block[0] = level;
|
|
}
|
|
|
|
static void dct_unquantize_h263_inter_armv5te(const MPVContext *s,
|
|
int16_t *block, int n, int qscale)
|
|
{
|
|
int qmul, qadd;
|
|
int nCoeffs;
|
|
|
|
av_assert2(s->block_last_index[n]>=0);
|
|
|
|
qadd = (qscale - 1) | 1;
|
|
qmul = qscale << 1;
|
|
|
|
nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
|
|
|
|
ff_dct_unquantize_h263_armv5te(block, qmul, qadd, nCoeffs + 1);
|
|
}
|
|
|
|
av_cold void ff_mpv_unquantize_init_armv5te(MPVUnquantDSPContext *s)
|
|
{
|
|
s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_armv5te;
|
|
s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_armv5te;
|
|
}
|