* [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data
@ 2023-04-09 3:07 Steven Liu
2023-04-10 13:14 ` Leo Izen
0 siblings, 1 reply; 4+ messages in thread
From: Steven Liu @ 2023-04-09 3:07 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Steven Liu
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=No, Size: 2182 bytes --]
When enable lcms2, the fate-png-icc-parse will get error bellow.
TEST png-icc-parse
--- src/tests/ref/fate/png-icc-parse 2022-09-09 16:12:35.786357375 +0800
+++ tests/data/fate/png-icc-parse 2023-04-09 11:00:14.256826477 +0800
@@ -16,6 +16,10 @@
pkt_size=40194
width=128
height=128
+crop_top=0
+crop_bottom=0
+crop_left=0
+crop_right=0
pix_fmt=rgb24
sample_aspect_ratio=1:1
pict_type=I
@@ -25,7 +29,7 @@
top_field_first=0
repeat_pict=0
color_range=pc
-color_space=unknown
+color_space=gbr
color_primaries=bt709
color_transfer=iec61966-2-1
chroma_location=unspecified
@@ -34,15 +38,4 @@
name=Photoshop ICC profile
size=3144
[/SIDE_DATA]
-[SIDE_DATA]
-side_data_type=Mastering display metadata
-red_x=63999/100000
-red_y=33001/100000
-green_x=30000/100000
-green_y=60000/100000
-blue_x=15000/100000
-blue_y=5999/100000
-white_point_x=31269/100000
-white_point_y=32899/100000
-[/SIDE_DATA]
[/FRAME]
Test png-icc-parse failed. Look at tests/data/fate/png-icc-parse.err for details.
make: *** [src/tests/Makefile:306:fate-png-icc-parse] error 1
This patch can fix it.
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
---
tests/ref/fate/png-icc-parse | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/tests/ref/fate/png-icc-parse b/tests/ref/fate/png-icc-parse
index 18bb18a804..ffefce270a 100644
--- a/tests/ref/fate/png-icc-parse
+++ b/tests/ref/fate/png-icc-parse
@@ -16,6 +16,10 @@ pkt_pos=0
pkt_size=40194
width=128
height=128
+crop_top=0
+crop_bottom=0
+crop_left=0
+crop_right=0
pix_fmt=rgb24
sample_aspect_ratio=1:1
pict_type=I
@@ -25,7 +29,7 @@ interlaced_frame=1
top_field_first=0
repeat_pict=0
color_range=pc
-color_space=unknown
+color_space=gbr
color_primaries=bt709
color_transfer=iec61966-2-1
chroma_location=unspecified
@@ -34,15 +38,4 @@ side_data_type=ICC profile
name=Photoshop ICC profile
size=3144
[/SIDE_DATA]
-[SIDE_DATA]
-side_data_type=Mastering display metadata
-red_x=63999/100000
-red_y=33001/100000
-green_x=30000/100000
-green_y=60000/100000
-blue_x=15000/100000
-blue_y=5999/100000
-white_point_x=31269/100000
-white_point_y=32899/100000
-[/SIDE_DATA]
[/FRAME]
--
2.31.1
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data
2023-04-09 3:07 [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data Steven Liu
@ 2023-04-10 13:14 ` Leo Izen
2023-04-11 1:53 ` Steven Liu
2023-04-21 6:08 ` Steven Liu
0 siblings, 2 replies; 4+ messages in thread
From: Leo Izen @ 2023-04-10 13:14 UTC (permalink / raw)
To: ffmpeg-devel
On 4/8/23 23:07, Steven Liu wrote:
> When enable lcms2, the fate-png-icc-parse will get error bellow.
> TEST png-icc-parse
I believe this change happened when I updated how PNG handles colors (no
longer using mastering display metadata for that). Good catch!
- Leo Izen (thebombzen)
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data
2023-04-10 13:14 ` Leo Izen
@ 2023-04-11 1:53 ` Steven Liu
2023-04-21 6:08 ` Steven Liu
1 sibling, 0 replies; 4+ messages in thread
From: Steven Liu @ 2023-04-11 1:53 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Leo Izen <leo.izen@gmail.com> 于2023年4月10日周一 21:14写道:
>
> On 4/8/23 23:07, Steven Liu wrote:
> > When enable lcms2, the fate-png-icc-parse will get error bellow.
> > TEST png-icc-parse
>
> I believe this change happened when I updated how PNG handles colors (no
> longer using mastering display metadata for that). Good catch!
Should i apply this patch?
Thanks
Steven
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data
2023-04-10 13:14 ` Leo Izen
2023-04-11 1:53 ` Steven Liu
@ 2023-04-21 6:08 ` Steven Liu
1 sibling, 0 replies; 4+ messages in thread
From: Steven Liu @ 2023-04-21 6:08 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Leo Izen <leo.izen@gmail.com> 于2023年4月10日周一 21:14写道:
>
> On 4/8/23 23:07, Steven Liu wrote:
> > When enable lcms2, the fate-png-icc-parse will get error bellow.
> > TEST png-icc-parse
>
> I believe this change happened when I updated how PNG handles colors (no
> longer using mastering display metadata for that). Good catch!
>
Applied.
Thanks
Steven
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-21 6:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-09 3:07 [FFmpeg-devel] [PATCH] fate/png-icc-parse: update ref data Steven Liu
2023-04-10 13:14 ` Leo Izen
2023-04-11 1:53 ` Steven Liu
2023-04-21 6:08 ` Steven Liu
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git