summaryrefslogtreecommitdiff
path: root/libavcodec/alpha
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-08 20:15:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-08 20:15:31 +0200
commit550bda741cfe0e471a70e40529a9ab02d31b7049 (patch)
tree367ec49a31381a2f1eb3f9038b360f46f81309b2 /libavcodec/alpha
parent7cb8f7ded418f5388cc38512d1af96fd1d251cf2 (diff)
avcodec/alpha/dsputil_alpha: fix build
Disable moved functions to prevent build/test failure, patch to update and re-enable them is welcome volunteer to maintain the alpha code is welcome too Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alpha')
-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;
+// }
}