[FFmpeg-cvslog] avfilter/vf_waveform: fix and extend millivolts grat lines

Paul B Mahol git at videolan.org
Fri Mar 11 10:26:13 CET 2016


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Mar 11 10:24:51 2016 +0100| [867637caeab58bb9627a4a49637d37cbe885368b] | committer: Paul B Mahol

avfilter/vf_waveform: fix and extend millivolts grat lines

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

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

 libavfilter/vf_waveform.c |   20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/libavfilter/vf_waveform.c b/libavfilter/vf_waveform.c
index 597a8f6..c5cd865 100644
--- a/libavfilter/vf_waveform.c
+++ b/libavfilter/vf_waveform.c
@@ -1251,22 +1251,34 @@ static const GraticuleLines digital12[] = {
 
 static const GraticuleLines millivolts8[] = {
     { { {   "0",  16 }, {   "0",  16 }, {   "0",  16 }, {   "0",   0 } } },
-    { { { "714", 235 }, { "714", 240 }, { "714", 240 }, { "714", 255 } } },
+    { { { "175",  71 }, { "175",  72 }, { "175",  72 }, { "175",  64 } } },
+    { { { "350", 126 }, { "350", 128 }, { "350", 128 }, { "350", 128 } } },
+    { { { "525", 180 }, { "525", 184 }, { "525", 184 }, { "525", 192 } } },
+    { { { "700", 235 }, { "700", 240 }, { "700", 240 }, { "700", 255 } } },
 };
 
 static const GraticuleLines millivolts9[] = {
     { { {   "0",  32 }, {   "0",  32 }, {   "0",  32 }, {   "0",   0 } } },
-    { { { "714", 470 }, { "714", 480 }, { "714", 480 }, { "714", 511 } } },
+    { { { "175", 142 }, { "175", 144 }, { "175", 144 }, { "175", 128 } } },
+    { { { "350", 251 }, { "350", 256 }, { "350", 256 }, { "350", 256 } } },
+    { { { "525", 361 }, { "525", 368 }, { "525", 368 }, { "525", 384 } } },
+    { { { "700", 470 }, { "700", 480 }, { "700", 480 }, { "700", 511 } } },
 };
 
 static const GraticuleLines millivolts10[] = {
     { { {   "0",  64 }, {   "0",  64 }, {   "0",  64 }, {   "0",    0 } } },
-    { { { "714", 940 }, { "714", 960 }, { "714", 960 }, { "714", 1023 } } },
+    { { { "175", 283 }, { "175", 288 }, { "175", 288 }, { "175",  256 } } },
+    { { { "350", 502 }, { "350", 512 }, { "350", 512 }, { "350",  512 } } },
+    { { { "525", 721 }, { "525", 736 }, { "525", 736 }, { "525",  768 } } },
+    { { { "700", 940 }, { "700", 960 }, { "700", 960 }, { "700", 1023 } } },
 };
 
 static const GraticuleLines millivolts12[] = {
     { { {   "0",  256 }, {   "0",  256 }, {   "0",  256 }, {   "0",    0 } } },
-    { { { "714", 3760 }, { "714", 3840 }, { "714", 3840 }, { "714", 4095 } } },
+    { { { "175", 1132 }, { "175", 1152 }, { "175", 1152 }, { "175", 1024 } } },
+    { { { "350", 2008 }, { "350", 2048 }, { "350", 2048 }, { "350", 2048 } } },
+    { { { "525", 2884 }, { "525", 2944 }, { "525", 2944 }, { "525", 3072 } } },
+    { { { "700", 3760 }, { "700", 3840 }, { "700", 3840 }, { "700", 4095 } } },
 };
 
 static const GraticuleLines ire8[] = {



More information about the ffmpeg-cvslog mailing list