[FFmpeg-cvslog] avfilter/vf_pullup: remove junk_down nonsense
Paul B Mahol
git at videolan.org
Wed Sep 18 14:49:14 CEST 2013
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Sep 18 12:46:44 2013 +0000| [7f4a5006cee50c15994c52969baa6067b9afd5bc] | committer: Paul B Mahol
avfilter/vf_pullup: remove junk_down nonsense
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f4a5006cee50c15994c52969baa6067b9afd5bc
---
libavfilter/vf_pullup.c | 2 +-
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 16e7763..a47f339 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 6a31e36..3213b4d 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;
More information about the ffmpeg-cvslog
mailing list