lavfi: add ff_detect_color_primaries helper

Related to #9673, this helper exists to facilitate "guessing" the right
primary tags from a given set of raw primary coefficients.

The cutoff value of 0.001 was chosen by experimentation. The smallest
"false positive" delta observed in practice was 0.023329, while the
largest "false negative" delta was 0.00016. So, a value of 0.001 sits
comfortably in the middle.

Signed-off-by: Niklas Haas <git@haasn.dev>
This commit is contained in:
Niklas Haas 2022-04-11 01:25:26 +02:00
parent 6d83036662
commit 072dd047f0
2 changed files with 28 additions and 0 deletions

View File

@ -170,6 +170,31 @@ const struct ColorPrimaries *ff_get_color_primaries(enum AVColorPrimaries prm)
return p;
}
enum AVColorPrimaries ff_detect_color_primaries(const struct ColorPrimaries *prm)
{
double delta;
for (enum AVColorPrimaries p = 0; p < AVCOL_PRI_NB; p++) {
const struct ColorPrimaries *ref = &color_primaries[p];
if (!ref->prim.xr)
continue;
delta = fabs(prm->prim.xr - ref->prim.xr) +
fabs(prm->prim.yr - ref->prim.yr) +
fabs(prm->prim.yg - ref->prim.yg) +
fabs(prm->prim.yg - ref->prim.yg) +
fabs(prm->prim.yb - ref->prim.yb) +
fabs(prm->prim.yb - ref->prim.yb) +
fabs(prm->wp.xw - ref->wp.xw) +
fabs(prm->wp.yw - ref->wp.yw);
if (delta < 0.001)
return p;
}
return AVCOL_PRI_UNSPECIFIED;
}
void ff_fill_rgb2yuv_table(const struct LumaCoefficients *coeffs,
double rgb2yuv[3][3])
{

View File

@ -49,6 +49,9 @@ void ff_fill_rgb2xyz_table(const struct PrimaryCoefficients *coeffs,
const struct WhitepointCoefficients *wp,
double rgb2xyz[3][3]);
/* Returns AVCOL_PRI_UNSPECIFIED if no clear match can be identified */
enum AVColorPrimaries ff_detect_color_primaries(const struct ColorPrimaries *prm);
const struct ColorPrimaries *ff_get_color_primaries(enum AVColorPrimaries prm);
const struct LumaCoefficients *ff_get_luma_coefficients(enum AVColorSpace csp);
void ff_fill_rgb2yuv_table(const struct LumaCoefficients *coeffs,