mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
md5enc: add flags
AVFMT_NOTIMESTAMPS for md5, as it ignores the timestamps. AVFMT_VARIABLE_FPS for framemd5, as it prints dts. -vsync 0 for the vp8 test is needed because with vsync 2 the timestamp guessing code gets confused by an altref frame that is never displayed and drops a frame later.
This commit is contained in:
parent
3a0b72dee0
commit
50efd3cad8
@ -75,6 +75,7 @@ AVOutputFormat ff_md5_muxer = {
|
|||||||
.write_header = write_header,
|
.write_header = write_header,
|
||||||
.write_packet = write_packet,
|
.write_packet = write_packet,
|
||||||
.write_trailer = write_trailer,
|
.write_trailer = write_trailer,
|
||||||
|
.flags = AVFMT_NOTIMESTAMPS,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -102,5 +103,6 @@ AVOutputFormat ff_framemd5_muxer = {
|
|||||||
.audio_codec = CODEC_ID_PCM_S16LE,
|
.audio_codec = CODEC_ID_PCM_S16LE,
|
||||||
.video_codec = CODEC_ID_RAWVIDEO,
|
.video_codec = CODEC_ID_RAWVIDEO,
|
||||||
.write_packet = framemd5_write_packet,
|
.write_packet = framemd5_write_packet,
|
||||||
|
.flags = AVFMT_VARIABLE_FPS,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
@ -10,7 +10,7 @@ define FATE_VP8_FULL
|
|||||||
$(foreach N,$(VP8_SUITE),$(eval $(call FATE_VP8_SUITE,$(N),$(1),$(2))))
|
$(foreach N,$(VP8_SUITE),$(eval $(call FATE_VP8_SUITE,$(N),$(1),$(2))))
|
||||||
|
|
||||||
FATE_VP8 += fate-vp8-sign-bias$(1)
|
FATE_VP8 += fate-vp8-sign-bias$(1)
|
||||||
fate-vp8-sign-bias$(1): CMD = framemd5 $(2) -i $(SAMPLES)/vp8/sintel-signbias.ivf
|
fate-vp8-sign-bias$(1): CMD = framemd5 $(2) -i $(SAMPLES)/vp8/sintel-signbias.ivf -vsync 0
|
||||||
fate-vp8-sign-bias$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-sign-bias
|
fate-vp8-sign-bias$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-sign-bias
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user