diff options
author | James Almer <jamrial@gmail.com> | 2018-07-23 12:32:47 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-08-02 12:41:05 -0300 |
commit | e45ed15594a2553056a577177591fbe55694af44 (patch) | |
tree | 08bfaf62cd4f342ae2754a2274d6ed697a6f7db1 | |
parent | b98bd60bfa2605fd874d42f96804d1c999278a7e (diff) | |
download | ffmpeg-e45ed15594a2553056a577177591fbe55694af44.tar.gz |
avcodec/libaomdec: auto insert dump_extra bitstream filter
Some containers, like Matroska, may propagate key frames with no Sequence
Header OBU since it's provided in extradata instead.
With this change, the Sequence Header will be appended to the packet data
before calling aom_codec_decode().
Signed-off-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | libavcodec/libaomdec.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -3049,6 +3049,7 @@ h264_videotoolbox_encoder_select="videotoolbox_encoder" hevc_videotoolbox_encoder_deps="pthreads" hevc_videotoolbox_encoder_select="videotoolbox_encoder" libaom_av1_decoder_deps="libaom" +libaom_av1_decoder_select="dump_extradata_bsf" libaom_av1_encoder_deps="libaom" libaom_av1_encoder_select="extract_extradata_bsf" libcelt_decoder_deps="libcelt" diff --git a/libavcodec/libaomdec.c b/libavcodec/libaomdec.c index 6a2de6d47a..ddfba8a023 100644 --- a/libavcodec/libaomdec.c +++ b/libavcodec/libaomdec.c @@ -232,4 +232,5 @@ AVCodec ff_libaom_av1_decoder = { .capabilities = AV_CODEC_CAP_AUTO_THREADS | AV_CODEC_CAP_DR1, .profiles = NULL_IF_CONFIG_SMALL(ff_av1_profiles), .wrapper_name = "libaom", + .bsfs = "dump_extra", }; |