Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-07-09 00:08:24 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-09 00:19:38 +0400
commit2375b094734e95c031defb475b5492ac1b659391 (patch)
tree13af393bcd73df2f1b938eedbd36b1ef77dc6da4 /libavcodec/alpha/dsputil_alpha.c
parent8635954335061ea4c03d3f492b7bc803ea740d9c (diff)
alpha/idctdsp: move idct init code out of dsputil
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alpha/dsputil_alpha.c')
-rw-r--r--libavcodec/alpha/dsputil_alpha.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/libavcodec/alpha/dsputil_alpha.c b/libavcodec/alpha/dsputil_alpha.c
index ad98cfa47e..06a1a6d0b0 100644
--- a/libavcodec/alpha/dsputil_alpha.c
+++ b/libavcodec/alpha/dsputil_alpha.c
@@ -24,11 +24,6 @@
#include "dsputil_alpha.h"
#include "asm.h"
-void (*put_pixels_clamped_axp_p)(const int16_t *block, uint8_t *pixels,
- int line_size);
-void (*add_pixels_clamped_axp_p)(const int16_t *block, uint8_t *pixels,
- int line_size);
-
#if 0
/* These functions were the base for the optimized assembler routines,
and remain here for documentation purposes. */
@@ -107,11 +102,6 @@ av_cold void ff_dsputil_init_alpha(DSPContext *c, AVCodecContext *avctx)
/* amask clears all bits that correspond to present features. */
if (amask(AMASK_MVI) == 0) {
-// Disabled as these have been moved to a different context
-// Patch to update these is welcome!
-// c->put_pixels_clamped = put_pixels_clamped_mvi_asm;
-// c->add_pixels_clamped = add_pixels_clamped_mvi_asm;
-
if (!high_bit_depth)
c->get_pixels = get_pixels_mvi;
c->diff_pixels = diff_pixels_mvi;
@@ -124,16 +114,4 @@ av_cold void ff_dsputil_init_alpha(DSPContext *c, AVCodecContext *avctx)
c->pix_abs[0][3] = pix_abs16x16_xy2_mvi;
}
-// Disabled as these have been moved to a different context
-// Patch to update these is welcome!
-// put_pixels_clamped_axp_p = c->put_pixels_clamped;
-// add_pixels_clamped_axp_p = c->add_pixels_clamped;
-//
-// if (!avctx->lowres && avctx->bits_per_raw_sample <= 8 &&
-// (avctx->idct_algo == FF_IDCT_AUTO ||
-// avctx->idct_algo == FF_IDCT_SIMPLEALPHA)) {
-// c->idct_put = ff_simple_idct_put_axp;
-// c->idct_add = ff_simple_idct_add_axp;
-// c->idct = ff_simple_idct_axp;
-// }
}