Browse Source

avcodec/libdav1d: remove init cleanup internal codec cap

It's no longer needed now that the AVFifoBuffer was removed.

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.2
James Almer 7 years ago
parent
commit
53ca505acc
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/libdav1d.c

+ 1
- 2
libavcodec/libdav1d.c View File

@@ -245,8 +245,7 @@ AVCodec ff_libdav1d_decoder = {
.flush = libdav1d_flush, .flush = libdav1d_flush,
.receive_frame = libdav1d_receive_frame, .receive_frame = libdav1d_receive_frame,
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS, .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP |
FF_CODEC_CAP_SETS_PKT_DTS,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_SETS_PKT_DTS,
.priv_class = &libdav1d_class, .priv_class = &libdav1d_class,
.wrapper_name = "libdav1d", .wrapper_name = "libdav1d",
}; };

Loading…
Cancel
Save