diff options
author | Laurent Desnogues <laurent.desnogues@gmail.com> | 2008-06-29 08:32:27 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-29 08:32:27 +0000 |
commit | a6ce3d3d2d40f4a24184a0693bb6ac2d69ba038c (patch) | |
tree | ead3ef5abe378769bfbc04a3c92c2a036dcd3f63 | |
parent | dc95111c098d513dc04e10ae0eab47e816e2e508 (diff) | |
download | ffmpeg-a6ce3d3d2d40f4a24184a0693bb6ac2d69ba038c.tar.gz |
Add command line support for '-idct simplearmv6'.
patch by Laurent Desnogues, laurent.desnogues gmail com
Originally committed as revision 14027 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 8c180088c1..3c7108da45 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -545,6 +545,7 @@ static const AVOption options[]={ {"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"}, +{"simplearmv6", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_SIMPLEARMV6, 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"}, |