Merge commit 'b70d7a4ac7'
* commit 'b70d7a4ac7':
lavc: add a native Opus decoder.
Conflicts:
Changelog
configure
libavcodec/version.h
Fate tests pass with both avresample as well as swresample based opus decoder, but
are disabled (reference files are very large so i want to think a day or 2 about
if theres an alternative or if they could be avoided, they also dont match the
official samples)
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
2c7d3ecfc9
14 changed files with 5743 additions and 2 deletions
|
|
@ -119,6 +119,7 @@ include $(SRC_PATH)/tests/fate/microsoft.mak
|
|||
include $(SRC_PATH)/tests/fate/monkeysaudio.mak
|
||||
include $(SRC_PATH)/tests/fate/mp3.mak
|
||||
include $(SRC_PATH)/tests/fate/mpc.mak
|
||||
include $(SRC_PATH)/tests/fate/opus.mak
|
||||
include $(SRC_PATH)/tests/fate/pcm.mak
|
||||
include $(SRC_PATH)/tests/fate/probe.mak
|
||||
include $(SRC_PATH)/tests/fate/prores.mak
|
||||
|
|
|
|||
39
tests/fate/opus.mak
Normal file
39
tests/fate/opus.mak
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# The samples were produced by simply rewrapping the official test vectors from
|
||||
# their custom format into Matroska.
|
||||
# The reference files were created with our decoder and tested against the
|
||||
# libopus output with the official opus_compare tool. We cannot use libopus
|
||||
# output as reference directly, because the use of different resamplers would
|
||||
# require too high fuzz values, which can hide bugs.
|
||||
# Before adding new tests here, always make sure they pass opus_compare.
|
||||
|
||||
OPUS_CELT_SAMPLES = $(addprefix testvector, 01 07 11) tron.6ch.tinypkts
|
||||
OPUS_HYBRID_SAMPLES = $(addprefix testvector, 05 06)
|
||||
OPUS_SILK_SAMPLES = $(addprefix testvector, 02 03 04)
|
||||
OPUS_SAMPLES = $(addprefix testvector, 08 09 10 12)
|
||||
|
||||
define FATE_OPUS_TEST
|
||||
FATE_OPUS += fate-opus-$(1)
|
||||
FATE_OPUS$(2) += fate-opus-$(1)
|
||||
fate-opus-$(1): CMD = ffmpeg -i $(TARGET_SAMPLES)/opus/$(1).mka -f f32le -
|
||||
fate-opus-$(1): REF = $(TARGET_SAMPLES)/opus/$(1).f32
|
||||
endef
|
||||
|
||||
$(foreach N,$(OPUS_CELT_SAMPLES), $(eval $(call FATE_OPUS_TEST,$(N),_CELT)))
|
||||
$(foreach N,$(OPUS_HYBRID_SAMPLES),$(eval $(call FATE_OPUS_TEST,$(N),_HYBRID)))
|
||||
$(foreach N,$(OPUS_SILK_SAMPLES), $(eval $(call FATE_OPUS_TEST,$(N),_SILK)))
|
||||
$(foreach N,$(OPUS_SAMPLES), $(eval $(call FATE_OPUS_TEST,$(N),)))
|
||||
|
||||
FATE_OPUS := $(sort $(FATE_OPUS))
|
||||
|
||||
$(FATE_OPUS): CMP = stddev
|
||||
$(FATE_OPUS): CMP_UNIT = f32
|
||||
$(FATE_OPUS): FUZZ = 3
|
||||
|
||||
$(FATE_OPUS_CELT): CMP = oneoff
|
||||
$(FATE_OPUS_CELT): FUZZ = 5
|
||||
|
||||
#FATE_SAMPLES_AVCONV-$(call DEMDEC, MATROSKA, OPUS) += $(FATE_OPUS)
|
||||
fate-opus-celt: $(FATE_OPUS_CELT)
|
||||
fate-opus-hybrid: $(FATE_OPUS_HYBRID)
|
||||
fate-opus-silk: $(FATE_OPUS_SILK)
|
||||
fate-opus: $(FATE_OPUS)
|
||||
Loading…
Add table
Add a link
Reference in a new issue