forked from FFmpeg/FFmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fate: add tests/fate/hlsenc.mak for hls FATE
init add three test examples: 1. check no endlist at the end 2. check endlist at the end 3. check hls_list_size 0 full list Tested-by: Michael Niedermayer <[email protected]> Signed-off-by: Steven Liu <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
tests/data/live_no_endlist.m3u8: TAG = GEN | ||
tests/data/live_no_endlist.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data | ||
$(M)$(TARGET_EXEC) $(TARGET_PATH)/$< \ | ||
-f lavfi -v verbose -i "aevalsrc=cos(2*PI*t)*sin(2*PI*(440+4*t)*t):d=20" -f hls -hls_time 3 -map 0 \ | ||
-hls_flags omit_endlist -codec:a mp2fixed -hls_segment_filename $(TARGET_PATH)/tests/data/live_no_endlist_%03d.ts \ | ||
$(TARGET_PATH)/tests/data/live_no_endlist.m3u8 2>/dev/null | ||
|
||
FATE_AFILTER-$(call ALLYES, HLS_DEMUXER MPEGTS_MUXER MPEGTS_DEMUXER AEVALSRC_FILTER LAVFI_INDEV MP2FIXED_ENCODER) += fate-hls-live-no-endlist | ||
fate-hls-live-no-endlist: tests/data/live_no_endlist.m3u8 | ||
fate-hls-live-no-endlist: SRC = $(TARGET_PATH)/tests/data/live_no_endlist.m3u8 | ||
fate-hls-live-no-endlist: CMD = md5 -i $(SRC) -af hdcd=process_stereo=false -t 6 -f s24le | ||
fate-hls-live-no-endlist: CMP = oneline | ||
fate-hls-live-no-endlist: REF = e038bb8e65d4c1745b9b3ed643e607a3 | ||
|
||
tests/data/live_last_endlist.m3u8: TAG = GEN | ||
tests/data/live_last_endlist.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data | ||
$(M)$(TARGET_EXEC) $(TARGET_PATH)/$< \ | ||
-f lavfi -v verbose -i "aevalsrc=cos(2*PI*t)*sin(2*PI*(440+4*t)*t):d=20" -f hls -hls_time 3 -map 0 \ | ||
-codec:a mp2fixed -hls_segment_filename $(TARGET_PATH)/tests/data/live_last_endlist_%03d.ts \ | ||
$(TARGET_PATH)/tests/data/live_last_endlist.m3u8 2>/dev/null | ||
|
||
FATE_AFILTER-$(call ALLYES, HLS_DEMUXER MPEGTS_MUXER MPEGTS_DEMUXER AEVALSRC_FILTER LAVFI_INDEV MP2FIXED_ENCODER) += fate-hls-live-last-endlist | ||
fate-hls-live-last-endlist: tests/data/live_last_endlist.m3u8 | ||
fate-hls-live-last-endlist: SRC = $(TARGET_PATH)/tests/data/live_last_endlist.m3u8 | ||
fate-hls-live-last-endlist: CMD = md5 -i $(SRC) -af hdcd=process_stereo=false -t 6 -f s24le | ||
fate-hls-live-last-endlist: CMP = oneline | ||
fate-hls-live-last-endlist: REF = 2ca8567092dcf01e37bedd50454d1ab7 | ||
|
||
|
||
tests/data/live_endlist.m3u8: TAG = GEN | ||
tests/data/live_endlist.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data | ||
$(M)$(TARGET_EXEC) $(TARGET_PATH)/$< \ | ||
-f lavfi -i "aevalsrc=cos(2*PI*t)*sin(2*PI*(440+4*t)*t):d=20" -f hls -hls_time 3 -map 0 \ | ||
-hls_list_size 0 -codec:a mp2fixed -hls_segment_filename $(TARGET_PATH)/tests/data/live_endlist_%d.ts \ | ||
$(TARGET_PATH)/tests/data/live_endlist.m3u8 2>/dev/null | ||
|
||
FATE_AFILTER-$(call ALLYES, HLS_DEMUXER MPEGTS_MUXER MPEGTS_DEMUXER AEVALSRC_FILTER LAVFI_INDEV MP2FIXED_ENCODER) += fate-hls-live-endlist | ||
fate-hls-live-endlist: tests/data/live_endlist.m3u8 | ||
fate-hls-live-endlist: SRC = $(TARGET_PATH)/tests/data/live_endlist.m3u8 | ||
fate-hls-live-endlist: CMD = md5 -i $(SRC) -af hdcd=process_stereo=false -t 20 -f s24le | ||
fate-hls-live-endlist: CMP = oneline | ||
fate-hls-live-endlist: REF = e189ce781d9c87882f58e3929455167b | ||
|