[FFmpeg-cvslog] avfilter/vf_waveform: fix order of graticule scale items

Paul B Mahol git at videolan.org
Thu May 5 10:39:09 CEST 2016


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu May  5 10:34:13 2016 +0200| [5b174dd3f133387688be96eaead1ca0e15cc74f5] | committer: Paul B Mahol

avfilter/vf_waveform: fix order of graticule scale items

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5b174dd3f133387688be96eaead1ca0e15cc74f5
---

 libavfilter/vf_waveform.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_waveform.c b/libavfilter/vf_waveform.c
index 26aa809..c2b84fb 100644
--- a/libavfilter/vf_waveform.c
+++ b/libavfilter/vf_waveform.c
@@ -145,8 +145,8 @@ static const AVOption waveform_options[] = {
     { "scale", "set scale", OFFSET(scale), AV_OPT_TYPE_INT, {.i64=0}, 0, NB_SCALES-1, FLAGS, "scale" },
     { "s",     "set scale", OFFSET(scale), AV_OPT_TYPE_INT, {.i64=0}, 0, NB_SCALES-1, FLAGS, "scale" },
         { "digital",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=DIGITAL},    0, 0, FLAGS, "scale" },
-        { "ire",        NULL, 0, AV_OPT_TYPE_CONST, {.i64=IRE},        0, 0, FLAGS, "scale" },
         { "millivolts", NULL, 0, AV_OPT_TYPE_CONST, {.i64=MILLIVOLTS}, 0, 0, FLAGS, "scale" },
+        { "ire",        NULL, 0, AV_OPT_TYPE_CONST, {.i64=IRE},        0, 0, FLAGS, "scale" },
     { NULL }
 };
 



More information about the ffmpeg-cvslog mailing list