diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-07 05:19:41 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-07 09:23:37 +0200 |
commit | 14a6025384ea7ebb97c6b718fbc91438abf94f37 (patch) | |
tree | cdeb0976fcfe01a6b8b3894078d4fb797fbfa662 | |
parent | 74dce63f9ad5801018ee3d863712f652e4bf0081 (diff) | |
download | ffmpeg-14a6025384ea7ebb97c6b718fbc91438abf94f37.tar.gz |
avcodec/ttmlenc: Don't confuse capabilities and caps_internal
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/ttmlenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ttmlenc.c b/libavcodec/ttmlenc.c index 09f2657cd6..e274a92e04 100644 --- a/libavcodec/ttmlenc.c +++ b/libavcodec/ttmlenc.c @@ -392,5 +392,5 @@ const AVCodec ff_ttml_encoder = { .init = ttml_encode_init, .encode_sub = ttml_encode_frame, .close = ttml_encode_close, - .capabilities = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, }; |