diff mbox series

[FFmpeg-devel,1/2] avcodec/ttmlenc: Don't confuse capabilities and caps_internal

Message ID HE1PR0301MB2154FF1F57AC1E45B723E65C8F579@HE1PR0301MB2154.eurprd03.prod.outlook.com
State Accepted
Commit 14a6025384ea7ebb97c6b718fbc91438abf94f37
Headers show
Series [FFmpeg-devel,1/2] avcodec/ttmlenc: Don't confuse capabilities and caps_internal | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt May 7, 2021, 3:28 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/ttmlenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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,
 };