From f04c27fe7ce96a0ecdc6a19c1a0e24bbbd6c4bc1 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 17 Oct 2016 17:50:29 +0200 Subject: [PATCH] lavc/videotoolboxenc: Enable a53cc by default. --- libavcodec/videotoolboxenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index 4e01023c9d..9a69c2831f 100644 --- a/libavcodec/videotoolboxenc.c +++ b/libavcodec/videotoolboxenc.c @@ -2311,7 +2311,7 @@ static const AVOption options[] = { { "frames_after", "Other frames will come after the frames in this session. This helps smooth concatenation issues.", OFFSET(frames_after), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, - { "a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, VE }, + { "a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, VE }, { NULL }, };