summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2024-04-08 13:58:48 +0200
committerAnton Khirnov <anton@khirnov.net>2024-04-09 15:44:13 +0200
commitf2b06b2d9462291bb6d4d5f6f80001180fd32c42 (patch)
tree80ff261dd4c98962a940acbcf10a6e0e5ad288fe
parent60ea572a742e875f1fce85faeed2a68362fb8c40 (diff)
fftools/ffmpeg_filter: remove YUVJ hackavcodec_yuv_range
This is no longer needed, since we now correctly negotiate the required range from the mjpeg encoder via avcodec_get_supported_config(). Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r--fftools/ffmpeg_mux_init.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c
index 9dde953fc0..225b8c9467 100644
--- a/fftools/ffmpeg_mux_init.c
+++ b/fftools/ffmpeg_mux_init.c
@@ -998,21 +998,6 @@ ost_bind_filter(const Muxer *mux, MuxStream *ms, OutputFilter *ofilter,
return ret;
}
- // MJPEG encoder exports a full list of supported pixel formats,
- // but the full-range ones are experimental-only.
- // Restrict the auto-conversion list unless -strict experimental
- // has been specified.
- if (!strcmp(enc_ctx->codec->name, "mjpeg")) {
- // FIXME: YUV420P etc. are actually supported with full color range,
- // yet the latter information isn't available here.
- static const enum AVPixelFormat mjpeg_formats[] =
- { AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P,
- AV_PIX_FMT_NONE };
-
- if (enc_ctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
- opts.formats = mjpeg_formats;
- }
-
if (threads_manual) {
ret = av_opt_get(enc_ctx, "threads", 0, (uint8_t**)&opts.nb_threads);
if (ret < 0)