diff options
author | Zhao Zhili <zhilizhao@tencent.com> | 2024-02-20 13:33:03 +0800 |
---|---|---|
committer | Zhao Zhili <zhilizhao@tencent.com> | 2024-03-01 17:19:15 +0800 |
commit | 39a0c55347075120c3b4749d6ca620e248cf52bc (patch) | |
tree | 70aaa0c185059202eb6b007ea3b00a2abd24a823 | |
parent | 601bb6a739c5073e25d13e6fd6541b72ac905c72 (diff) | |
download | ffmpeg-39a0c55347075120c3b4749d6ca620e248cf52bc.tar.gz |
fftools/ffplay: Fix output color_spaces of filter
The sdl_supported_color_spaces only meant for SDL builtin renderer.
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
-rw-r--r-- | fftools/ffplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fftools/ffplay.c b/fftools/ffplay.c index 53e6fc0514..5b54fab492 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -1928,7 +1928,8 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c if ((ret = av_opt_set_int_list(filt_out, "pix_fmts", pix_fmts, AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN)) < 0) goto fail; - if ((ret = av_opt_set_int_list(filt_out, "color_spaces", sdl_supported_color_spaces, AVCOL_SPC_UNSPECIFIED, AV_OPT_SEARCH_CHILDREN)) < 0) + if (!vk_renderer && + (ret = av_opt_set_int_list(filt_out, "color_spaces", sdl_supported_color_spaces, AVCOL_SPC_UNSPECIFIED, AV_OPT_SEARCH_CHILDREN)) < 0) goto fail; last_filter = filt_out; |