diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-01-09 23:08:49 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-06-24 17:41:30 +0100 |
commit | 49419925d33304ff907075289808226a695ff57b (patch) | |
tree | a3758e8313a36b37d55cbee60f937ddb177aefb2 /libavcodec/Makefile | |
parent | bc4e33ce0f0ea797b28d02d02ff29778cbf975a4 (diff) | |
download | ffmpeg-49419925d33304ff907075289808226a695ff57b.tar.gz |
vp9: Add bsf to fix reordering in raw streams
Takes a raw input stream containing frames with correct timestamps but
possibly out of order and inserts additional show-existing-frame
packets to correct the ordering.
(cherry picked from commit 34e051d16850701694410a0e72e0e4ff3a5ec293)
(cherry picked from commit b43b95f4789b6e60f9684918fd3c0a5f3f18aef6)
Also converted from bitstream to get_bits.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 2e7f19dba6..b5cc748e19 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -998,6 +998,7 @@ OBJS-$(CONFIG_NOISE_BSF) += noise_bsf.o OBJS-$(CONFIG_NULL_BSF) += null_bsf.o OBJS-$(CONFIG_REMOVE_EXTRADATA_BSF) += remove_extradata_bsf.o OBJS-$(CONFIG_TEXT2MOVSUB_BSF) += movsub_bsf.o +OBJS-$(CONFIG_VP9_RAW_REORDER_BSF) += vp9_raw_reorder_bsf.o OBJS-$(CONFIG_VP9_SUPERFRAME_BSF) += vp9_superframe_bsf.o OBJS-$(CONFIG_VP9_SUPERFRAME_SPLIT_BSF) += vp9_superframe_split_bsf.o |