[FFmpeg-cvslog] avcodec/librav1e: support setting sample aspect ratio

James Almer git at videolan.org
Wed Oct 19 17:17:12 EEST 2022


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Oct  9 20:35:43 2022 -0300| [d569958d2952ac5b5ed4334ffba04bfe1a55a967] | committer: James Almer

avcodec/librav1e: support setting sample aspect ratio

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d569958d2952ac5b5ed4334ffba04bfe1a55a967
---

 libavcodec/librav1e.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavcodec/librav1e.c b/libavcodec/librav1e.c
index 0601efed2c..a13d6c9eaf 100644
--- a/libavcodec/librav1e.c
+++ b/libavcodec/librav1e.c
@@ -298,6 +298,12 @@ static av_cold int librav1e_encode_init(AVCodecContext *avctx)
         goto end;
     }
 
+    if (avctx->sample_aspect_ratio.num > 0 && avctx->sample_aspect_ratio.den > 0)
+        rav1e_config_set_sample_aspect_ratio(cfg, (RaRational) {
+                                             avctx->sample_aspect_ratio.num,
+                                             avctx->sample_aspect_ratio.den
+                                             });
+
     rret = rav1e_config_parse_int(cfg, "threads", avctx->thread_count);
     if (rret < 0)
         av_log(avctx, AV_LOG_WARNING, "Invalid number of threads, defaulting to auto.\n");



More information about the ffmpeg-cvslog mailing list