diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-26 20:26:22 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-26 20:26:22 +0000 |
commit | a0403006f88517b58a1a14848bc731b407f02392 (patch) | |
tree | 0633d113f255b34ae35c6e99c39fff006fc065c8 /libavcodec/utils.c | |
parent | e2887363e188c5da1df2206f5aa3557ce8b5598a (diff) | |
download | ffmpeg-a0403006f88517b58a1a14848bc731b407f02392.tar.gz |
ARMv5TE optimized IDCT
Originally committed as revision 6347 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index d3410ad333..3a929e27ea 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -564,6 +564,7 @@ static const AVOption options[]={ {"altivec", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_ALTIVEC, INT_MIN, INT_MAX, V|E|D, "idct"}, {"sh4", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SH4, INT_MIN, INT_MAX, V|E|D, "idct"}, {"simplearm", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARM, INT_MIN, INT_MAX, V|E|D, "idct"}, +{"simplearmv5te", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARMV5TE, 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"}, |