Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-03-13 01:49:05 +0300
committerPaul B Mahol <onemda@gmail.com>2016-03-13 01:52:14 +0300
commita61cd42c8d756c0f9503469988250b326e182ae6 (patch)
tree90697047f2962d995058d0d8762eab6df5d8f5fc /libavfilter/vsrc_testsrc.c
parent6224dddaa7134330a5d56182fc0ee72632d3be74 (diff)
avfilter/smptebars: fix some 75% color values
They where slightly off. Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vsrc_testsrc.c')
-rw-r--r--libavfilter/vsrc_testsrc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c
index 54d8b26ebb..a75dd4c37e 100644
--- a/libavfilter/vsrc_testsrc.c
+++ b/libavfilter/vsrc_testsrc.c
@@ -1073,12 +1073,12 @@ AVFilter ff_vsrc_rgbtestsrc = {
static const uint8_t rainbow[7][4] = {
{ 180, 128, 128, 255 }, /* 75% white */
- { 161, 44, 141, 255 }, /* 75% yellow */
+ { 162, 44, 142, 255 }, /* 75% yellow */
{ 131, 156, 44, 255 }, /* 75% cyan */
- { 112, 72, 57, 255 }, /* 75% green */
- { 83, 183, 198, 255 }, /* 75% magenta */
- { 65, 99, 212, 255 }, /* 75% red */
- { 34, 212, 114, 255 }, /* 75% blue */
+ { 112, 72, 58, 255 }, /* 75% green */
+ { 84, 184, 198, 255 }, /* 75% magenta */
+ { 65, 100, 212, 255 }, /* 75% red */
+ { 35, 212, 114, 255 }, /* 75% blue */
};
static const uint8_t rainbowhd[7][4] = {
@@ -1092,9 +1092,9 @@ static const uint8_t rainbowhd[7][4] = {
};
static const uint8_t wobnair[7][4] = {
- { 34, 212, 114, 255 }, /* 75% blue */
+ { 35, 212, 114, 255 }, /* 75% blue */
{ 19, 128, 128, 255 }, /* 7.5% intensity black */
- { 83, 183, 198, 255 }, /* 75% magenta */
+ { 84, 184, 198, 255 }, /* 75% magenta */
{ 19, 128, 128, 255 }, /* 7.5% intensity black */
{ 131, 156, 44, 255 }, /* 75% cyan */
{ 19, 128, 128, 255 }, /* 7.5% intensity black */