diff mbox series

[FFmpeg-devel] Cosmetics; be consistant in printing Master Display side data info

Message ID CAFLt3phpypzOvUCC2wyk=7sJ=gisbm5sv=Hq6Q6uTMgy0izZQw@mail.gmail.com
State New
Headers show
Series [FFmpeg-devel] Cosmetics; be consistant in printing Master Display side data info | expand

Checks

Context Check Description
andriy/commit_msg_x86 warning The first line of the commit message must start with a context terminated by a colon and a space, for example "lavu/opt: " or "doc: ".
yinshiyou/commit_msg_loongarch64 warning The first line of the commit message must start with a context terminated by a colon and a space, for example "lavu/opt: " or "doc: ".
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Grozdan Oct. 29, 2024, 9:05 p.m. UTC
Hi,

This is a small one-liner. Correct a few inconsistencies when printing
Master Display Metadata info.
diff mbox series

Patch

--- ffmpeg.old/libavcodec/h2645_sei.c	2024-10-29 21:42:27.630338816 +0100
+++ ffmpeg/libavcodec/h2645_sei.c	2024-10-29 21:49:24.026514630 +0100
@@ -668,7 +668,7 @@ 
                 av_log(avctx, AV_LOG_DEBUG, "Mastering Display Metadata:\n");
             if (metadata->has_primaries) {
                 av_log(avctx, AV_LOG_DEBUG,
-                       "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f %5.4f) wp(%5.4f, %5.4f)\n",
+                       "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f,%5.4f) wp(%5.4f,%5.4f)\n",
                        av_q2d(metadata->display_primaries[0][0]),
                        av_q2d(metadata->display_primaries[0][1]),
                        av_q2d(metadata->display_primaries[1][0]),