summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/alpha/dsputil_alpha.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/libavcodec/alpha/dsputil_alpha.c b/libavcodec/alpha/dsputil_alpha.c
index a075c3a99a..ad98cfa47e 100644
--- a/libavcodec/alpha/dsputil_alpha.c
+++ b/libavcodec/alpha/dsputil_alpha.c
@@ -107,8 +107,10 @@ 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) {
- c->put_pixels_clamped = put_pixels_clamped_mvi_asm;
- c->add_pixels_clamped = add_pixels_clamped_mvi_asm;
+// 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;
@@ -122,14 +124,16 @@ av_cold void ff_dsputil_init_alpha(DSPContext *c, AVCodecContext *avctx)
c->pix_abs[0][3] = pix_abs16x16_xy2_mvi;
}
- 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;
- }
+// 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;
+// }
}