[FFmpeg-cvslog] avfilter/vf_showinfo: use av_spherical_projection_name()
James Almer
git at videolan.org
Fri Jun 28 20:44:24 EEST 2024
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed Jun 26 11:05:06 2024 -0300| [778096757dc0645fc407e82a5beb57f822f2fed3] | committer: James Almer
avfilter/vf_showinfo: use av_spherical_projection_name()
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=778096757dc0645fc407e82a5beb57f822f2fed3
---
libavfilter/vf_showinfo.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c
index fdcf9210e7..98c5632d52 100644
--- a/libavfilter/vf_showinfo.c
+++ b/libavfilter/vf_showinfo.c
@@ -78,16 +78,7 @@ static void dump_spherical(AVFilterContext *ctx, AVFrame *frame, const AVFrameSi
return;
}
- if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR)
- av_log(ctx, AV_LOG_INFO, "equirectangular ");
- else if (spherical->projection == AV_SPHERICAL_CUBEMAP)
- av_log(ctx, AV_LOG_INFO, "cubemap ");
- else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE)
- av_log(ctx, AV_LOG_INFO, "tiled equirectangular ");
- else {
- av_log(ctx, AV_LOG_WARNING, "unknown\n");
- return;
- }
+ av_log(ctx, AV_LOG_INFO, "%s ", av_spherical_projection_name(spherical->projection));
yaw = ((double)spherical->yaw) / (1 << 16);
pitch = ((double)spherical->pitch) / (1 << 16);
More information about the ffmpeg-cvslog
mailing list