OSDN Git Service

avfilter/vf_colorspace: fix range for output colorspace option
authorJames Almer <jamrial@gmail.com>
Wed, 28 Sep 2016 20:24:42 +0000 (17:24 -0300)
committerJames Almer <jamrial@gmail.com>
Wed, 28 Sep 2016 20:33:38 +0000 (17:33 -0300)
Rreviewed-by: BBB
Signed-off-by: James Almer <jamrial@gmail.com>
libavfilter/vf_colorspace.c

index c74fe00..5b060f9 100644 (file)
@@ -1031,7 +1031,7 @@ static const AVOption colorspace_options[] = {
 
     { "space",      "Output colorspace",
       OFFSET(user_csp),   AV_OPT_TYPE_INT, { .i64 = AVCOL_SPC_UNSPECIFIED },
-      AVCOL_PRI_RESERVED0, AVCOL_PRI_NB - 1, FLAGS, "csp" },
+      AVCOL_SPC_RGB, AVCOL_SPC_NB - 1, FLAGS,  "csp"},
     ENUM("bt709",       AVCOL_SPC_BT709,       "csp"),
     ENUM("fcc",         AVCOL_SPC_FCC,         "csp"),
     ENUM("bt470bg",     AVCOL_SPC_BT470BG,     "csp"),