[FFmpeg-devel] [PATCH v2 11/15] avfilter/vf_libplacebo: switch to colorspace negotiation API
Niklas Haas
ffmpeg at haasn.xyz
Wed Dec 13 15:12:08 EET 2023
From: Niklas Haas <git at haasn.dev>
---
libavfilter/vf_libplacebo.c | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c
index b6e82a61e0..a9a3d884ce 100644
--- a/libavfilter/vf_libplacebo.c
+++ b/libavfilter/vf_libplacebo.c
@@ -882,6 +882,8 @@ static int output_frame(AVFilterContext *ctx, int64_t pts)
out->pts = pts;
out->width = outlink->w;
out->height = outlink->h;
+ out->colorspace = outlink->colorspace;
+ out->color_range = outlink->color_range;
if (s->fps.num)
out->duration = 1;
@@ -892,22 +894,11 @@ static int output_frame(AVFilterContext *ctx, int64_t pts)
out->color_trc = AVCOL_TRC_SMPTE2084;
}
- if (s->colorspace >= 0)
- out->colorspace = s->colorspace;
- if (s->color_range >= 0)
- out->color_range = s->color_range;
if (s->color_trc >= 0)
out->color_trc = s->color_trc;
if (s->color_primaries >= 0)
out->color_primaries = s->color_primaries;
- /* Sanity colorspace overrides */
- if (outdesc->flags & AV_PIX_FMT_FLAG_RGB) {
- out->colorspace = AVCOL_SPC_RGB;
- } else if (out->colorspace == AVCOL_SPC_RGB) {
- out->colorspace = AVCOL_SPC_UNSPECIFIED;
- }
-
changed_csp = ref->colorspace != out->colorspace ||
ref->color_range != out->color_range ||
ref->color_trc != out->color_trc ||
@@ -1203,6 +1194,18 @@ static int libplacebo_query_format(AVFilterContext *ctx)
for (int i = 0; i < s->nb_inputs; i++)
RET(ff_formats_ref(infmts, &ctx->inputs[i]->outcfg.formats));
RET(ff_formats_ref(outfmts, &ctx->outputs[0]->incfg.formats));
+
+ /* Set colorspace properties */
+ RET(ff_formats_ref(ff_all_color_spaces(), &ctx->inputs[0]->outcfg.color_spaces));
+ RET(ff_formats_ref(ff_all_color_ranges(), &ctx->inputs[0]->outcfg.color_ranges));
+
+ outfmts = s->colorspace > 0 ? ff_make_formats_list_singleton(s->colorspace)
+ : ff_all_color_spaces();
+ RET(ff_formats_ref(outfmts, &ctx->outputs[0]->incfg.color_spaces));
+
+ outfmts = s->color_range > 0 ? ff_make_formats_list_singleton(s->color_range)
+ : ff_all_color_ranges();
+ RET(ff_formats_ref(outfmts, &ctx->outputs[0]->incfg.color_ranges));
return 0;
fail:
--
2.43.0
More information about the ffmpeg-devel
mailing list