diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-18 12:46:44 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-18 12:47:57 +0000 |
commit | 7f4a5006cee50c15994c52969baa6067b9afd5bc (patch) | |
tree | 69c4129085ff66e7ed1a4c4660a4735cdba5afbd | |
parent | d520055000b8cda49a1b9eb00f852ecbf3442aa9 (diff) | |
download | ffmpeg-7f4a5006cee50c15994c52969baa6067b9afd5bc.tar.gz |
avfilter/vf_pullup: remove junk_down nonsense
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_pullup.c | 2 | ||||
-rw-r--r-- | libavfilter/vf_pullup.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_pullup.c b/libavfilter/vf_pullup.c index 16e7763e66..a47f33938b 100644 --- a/libavfilter/vf_pullup.c +++ b/libavfilter/vf_pullup.c @@ -41,7 +41,7 @@ static const AVOption pullup_options[] = { { "jl", "set left junk size", OFFSET(junk_left), AV_OPT_TYPE_INT, {.i64=1}, 0, INT_MAX, FLAGS }, { "jr", "set right junk size", OFFSET(junk_right), AV_OPT_TYPE_INT, {.i64=1}, 0, INT_MAX, FLAGS }, { "jt", "set top junk size", OFFSET(junk_top), AV_OPT_TYPE_INT, {.i64=4}, 1, INT_MAX, FLAGS }, - { "jd", "set down junk size", OFFSET(junk_down), AV_OPT_TYPE_INT, {.i64=4}, 1, INT_MAX, FLAGS }, + { "jb", "set bottom junk size", OFFSET(junk_bottom), AV_OPT_TYPE_INT, {.i64=4}, 1, INT_MAX, FLAGS }, { "sb", "set strict breaks", OFFSET(strict_breaks), AV_OPT_TYPE_INT, {.i64=0},-1, 1, FLAGS }, { "mp", "set metric plane", OFFSET(metric_plane), AV_OPT_TYPE_INT, {.i64=0}, 0, 2, FLAGS, "mp" }, { "y", "luma", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mp" }, diff --git a/libavfilter/vf_pullup.h b/libavfilter/vf_pullup.h index 6a31e36e31..3213b4d231 100644 --- a/libavfilter/vf_pullup.h +++ b/libavfilter/vf_pullup.h @@ -48,7 +48,7 @@ typedef struct PullupFrame { typedef struct PullupContext { const AVClass *class; - int junk_left, junk_right, junk_top, junk_down, junk_bottom; + int junk_left, junk_right, junk_top, junk_bottom; int metric_plane; int strict_breaks; int strict_pairs; |