summaryrefslogtreecommitdiff
path: root/libavcodec/exr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-08 21:10:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-08 21:10:53 +0200
commit126927c58e1636f6623ba6461ec311df9cb6aa3c (patch)
treee3820d0616e26fbcf80656b4bcfbcacfff4af341 /libavcodec/exr.c
parentcd3daad77ea420f3373d3c5feee46825d235cccc (diff)
avcodec/exr: mark gama option as experimental / unsupported
Suggested-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/exr.c')
-rw-r--r--libavcodec/exr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index 4898b7f56d..6ade66cb39 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -1426,7 +1426,7 @@ static av_cold int decode_end(AVCodecContext *avctx)
static const AVOption options[] = {
{ "layer", "Set the decoding layer", OFFSET(layer),
AV_OPT_TYPE_STRING, { .str = "" }, 0, 0, VD },
- { "gamma", "Set the float gamma value when decoding", OFFSET(gamma),
+ { "gamma", "Set the float gamma value when decoding (experimental/unsupported)", OFFSET(gamma),
AV_OPT_TYPE_FLOAT, { .dbl = 1.0f }, 0.001, FLT_MAX, VD },
{ NULL },
};