diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-10-17 17:50:29 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-10-17 17:50:29 +0200 |
commit | f04c27fe7ce96a0ecdc6a19c1a0e24bbbd6c4bc1 (patch) | |
tree | 2b8e7960721bf3ca0ae8b708d0ef33bb602c4e60 | |
parent | eb751f06db9f627c8b5c63d08836a39f7572bf56 (diff) | |
download | ffmpeg-f04c27fe7ce96a0ecdc6a19c1a0e24bbbd6c4bc1.tar.gz |
lavc/videotoolboxenc: Enable a53cc by default.
-rw-r--r-- | libavcodec/videotoolboxenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, }; |