[FFmpeg-devel] [PATCH 05/10] lavc/videotoolboxenc: config-gate ATSC CC support

rcombs rcombs at rcombs.me
Fri Dec 17 02:12:10 EET 2021


---
 libavcodec/videotoolboxenc.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c
index e10373dded..b66d44f6b7 100644
--- a/libavcodec/videotoolboxenc.c
+++ b/libavcodec/videotoolboxenc.c
@@ -2363,6 +2363,7 @@ static int vtenc_send_frame(AVCodecContext *avctx,
         return status;
     }
 
+#if CONFIG_ATSC_A53
     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
     if (vtctx->a53_cc && side_data && side_data->size) {
         sei = av_mallocz(sizeof(*sei));
@@ -2377,6 +2378,7 @@ static int vtenc_send_frame(AVCodecContext *avctx,
             }
         }
     }
+#endif
 
     time = CMTimeMake(frame->pts * avctx->time_base.num, avctx->time_base.den);
     status = VTCompressionSessionEncodeFrame(
-- 
2.33.1



More information about the ffmpeg-devel mailing list