[FFmpeg-cvslog] r16666 - in trunk/libavcodec: alpha/dsputil_alpha.c avcodec.h options.c
mru
subversion
Sun Jan 18 06:52:12 CET 2009
Author: mru
Date: Sun Jan 18 06:52:12 2009
New Revision: 16666
Log:
Alpha: proper IDCT selection
Only select the Alpha IDCT if auto or explicitly requested. Also
disable it in lowres mode.
Modified:
trunk/libavcodec/alpha/dsputil_alpha.c
trunk/libavcodec/avcodec.h
trunk/libavcodec/options.c
Modified: trunk/libavcodec/alpha/dsputil_alpha.c
==============================================================================
--- trunk/libavcodec/alpha/dsputil_alpha.c Sun Jan 18 06:52:08 2009 (r16665)
+++ trunk/libavcodec/alpha/dsputil_alpha.c Sun Jan 18 06:52:12 2009 (r16666)
@@ -356,7 +356,11 @@ void dsputil_init_alpha(DSPContext* c, A
put_pixels_clamped_axp_p = c->put_pixels_clamped;
add_pixels_clamped_axp_p = c->add_pixels_clamped;
+ if (!avctx->lowres &&
+ (avctx->idct_algo == FF_IDCT_AUTO ||
+ avctx->idct_algo == FF_IDCT_SIMPLEALPHA)) {
c->idct_put = simple_idct_put_axp;
c->idct_add = simple_idct_add_axp;
c->idct = simple_idct_axp;
+ }
}
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h Sun Jan 18 06:52:08 2009 (r16665)
+++ trunk/libavcodec/avcodec.h Sun Jan 18 06:52:12 2009 (r16666)
@@ -1398,6 +1398,7 @@ typedef struct AVCodecContext {
#define FF_IDCT_FAAN 20
#define FF_IDCT_EA 21
#define FF_IDCT_SIMPLENEON 22
+#define FF_IDCT_SIMPLEALPHA 23
/**
* slice count
Modified: trunk/libavcodec/options.c
==============================================================================
--- trunk/libavcodec/options.c Sun Jan 18 06:52:08 2009 (r16665)
+++ trunk/libavcodec/options.c Sun Jan 18 06:52:12 2009 (r16666)
@@ -210,6 +210,7 @@ static const AVOption options[]={
{"simplearmv5te", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARMV5TE, INT_MIN, INT_MAX, V|E|D, "idct"},
{"simplearmv6", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARMV6, INT_MIN, INT_MAX, V|E|D, "idct"},
{"simpleneon", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLENEON, INT_MIN, INT_MAX, V|E|D, "idct"},
+{"simplealpha", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEALPHA, INT_MIN, INT_MAX, V|E|D, "idct"},
{"h264", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_H264, INT_MIN, INT_MAX, V|E|D, "idct"},
{"vp3", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_VP3, INT_MIN, INT_MAX, V|E|D, "idct"},
{"ipp", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_IPP, INT_MIN, INT_MAX, V|E|D, "idct"},
More information about the ffmpeg-cvslog
mailing list