Merge remote-tracking branch 'qatar/master'
* qatar/master: fate: whitespace cosmetics fate: split off video codec FATE tests into their own file fate: split off audio codec FATE tests into their own file fate: split off Electronic Arts codec FATE tests into their own file fate: split off QuickTime codec FATE tests into their own file fate: split off voice codec FATE tests into their own file fate: split off demuxer FATE tests into their own file cosmetics: Drop unnecessary parentheses around return values. fate: drop pointless _audio and _video suffixes from xan tests qt-faststart: K&R reformatting; fix comment typos FATE: Add test for H.264 MP4->annex.B bitstream filter. Conflicts: ffplay.c tests/fate.mak tests/fate/h264.mak tests/fate/image.mak tests/fate/lossless-audio.mak tests/fate/lossless-video.mak tests/fate/qtrle.mak tests/fate/real.mak tests/fate/screen.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
1a6a088f7c
@ -1034,8 +1034,9 @@ int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
|
|||||||
|
|
||||||
if (*endptr++ == ':') {
|
if (*endptr++ == ':') {
|
||||||
int stream_idx = strtol(endptr, NULL, 0);
|
int stream_idx = strtol(endptr, NULL, 0);
|
||||||
return (stream_idx >= 0 && stream_idx < s->programs[i]->nb_stream_indexes &&
|
return stream_idx >= 0 &&
|
||||||
st->index == s->programs[i]->stream_index[stream_idx]);
|
stream_idx < s->programs[i]->nb_stream_indexes &&
|
||||||
|
st->index == s->programs[i]->stream_index[stream_idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (j = 0; j < s->programs[i]->nb_stream_indexes; j++)
|
for (j = 0; j < s->programs[i]->nb_stream_indexes; j++)
|
||||||
|
@ -744,7 +744,7 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf,
|
|||||||
|
|
||||||
result = decodeChannelSoundUnit(q,&q->gb, q->pUnits, out_samples[0], 0, JOINT_STEREO);
|
result = decodeChannelSoundUnit(q,&q->gb, q->pUnits, out_samples[0], 0, JOINT_STEREO);
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
return (result);
|
return result;
|
||||||
|
|
||||||
/* Framedata of the su2 in the joint-stereo mode is encoded in
|
/* Framedata of the su2 in the joint-stereo mode is encoded in
|
||||||
* reverse byte order so we need to swap it first. */
|
* reverse byte order so we need to swap it first. */
|
||||||
@ -785,7 +785,7 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf,
|
|||||||
/* Decode Sound Unit 2. */
|
/* Decode Sound Unit 2. */
|
||||||
result = decodeChannelSoundUnit(q,&q->gb, &q->pUnits[1], out_samples[1], 1, JOINT_STEREO);
|
result = decodeChannelSoundUnit(q,&q->gb, &q->pUnits[1], out_samples[1], 1, JOINT_STEREO);
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
return (result);
|
return result;
|
||||||
|
|
||||||
/* Reconstruct the channel coefficients. */
|
/* Reconstruct the channel coefficients. */
|
||||||
reverseMatrixing(out_samples[0], out_samples[1], q->matrix_coeff_index_prev, q->matrix_coeff_index_now);
|
reverseMatrixing(out_samples[0], out_samples[1], q->matrix_coeff_index_prev, q->matrix_coeff_index_now);
|
||||||
@ -804,7 +804,7 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf,
|
|||||||
|
|
||||||
result = decodeChannelSoundUnit(q,&q->gb, &q->pUnits[i], out_samples[i], i, q->codingMode);
|
result = decodeChannelSoundUnit(q,&q->gb, &q->pUnits[i], out_samples[i], i, q->codingMode);
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
return (result);
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -757,7 +757,7 @@ static av_always_inline int dv_guess_dct_mode(DVVideoContext *s, uint8_t *data,
|
|||||||
if (ps > 0) {
|
if (ps > 0) {
|
||||||
int is = s->ildct_cmp(NULL, data , NULL, linesize<<1, 4) +
|
int is = s->ildct_cmp(NULL, data , NULL, linesize<<1, 4) +
|
||||||
s->ildct_cmp(NULL, data + linesize, NULL, linesize<<1, 4);
|
s->ildct_cmp(NULL, data + linesize, NULL, linesize<<1, 4);
|
||||||
return (ps > is);
|
return ps > is;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -148,7 +148,7 @@ static int decode_plane_subdivision(GetBitContext *gb)
|
|||||||
|
|
||||||
static inline int scale_tile_size(int def_size, int size_factor)
|
static inline int scale_tile_size(int def_size, int size_factor)
|
||||||
{
|
{
|
||||||
return (size_factor == 15 ? def_size : (size_factor + 1) << 5);
|
return size_factor == 15 ? def_size : (size_factor + 1) << 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -195,10 +195,10 @@ typedef struct {
|
|||||||
/** compare some properties of two pictures */
|
/** compare some properties of two pictures */
|
||||||
static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
|
static inline int ivi_pic_config_cmp(IVIPicConfig *str1, IVIPicConfig *str2)
|
||||||
{
|
{
|
||||||
return (str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
|
return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height ||
|
||||||
str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
|
str1->chroma_width != str2->chroma_width || str1->chroma_height != str2->chroma_height ||
|
||||||
str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
|
str1->tile_width != str2->tile_width || str1->tile_height != str2->tile_height ||
|
||||||
str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands);
|
str1->luma_bands != str2->luma_bands || str1->chroma_bands != str2->chroma_bands;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** calculate number of tiles in a stride */
|
/** calculate number of tiles in a stride */
|
||||||
|
@ -134,7 +134,7 @@ static av_cold int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avcco
|
|||||||
/* How many bytes are needed for a buffer of length 'l' */
|
/* How many bytes are needed for a buffer of length 'l' */
|
||||||
static int xiph_len(int l)
|
static int xiph_len(int l)
|
||||||
{
|
{
|
||||||
return (1 + l / 255 + l);
|
return 1 + l / 255 + l;
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext)
|
static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext)
|
||||||
|
@ -214,7 +214,7 @@ static int adaptive_cb_search(const int16_t *adapt_cb, float *work,
|
|||||||
ff_celp_lp_synthesis_filterf(work, coefs, exc, BLOCKSIZE, LPC_ORDER);
|
ff_celp_lp_synthesis_filterf(work, coefs, exc, BLOCKSIZE, LPC_ORDER);
|
||||||
for (i = 0; i < BLOCKSIZE; i++)
|
for (i = 0; i < BLOCKSIZE; i++)
|
||||||
data[i] -= best_gain * work[i];
|
data[i] -= best_gain * work[i];
|
||||||
return (best_vect - BLOCKSIZE / 2 + 1);
|
return best_vect - BLOCKSIZE / 2 + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
/** Reconstruct bitstream f_code */
|
/** Reconstruct bitstream f_code */
|
||||||
static inline int mpeg2_get_f_code(MpegEncContext *s)
|
static inline int mpeg2_get_f_code(MpegEncContext *s)
|
||||||
{
|
{
|
||||||
return ((s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
|
return (s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
|
||||||
(s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1]);
|
(s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1];
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Determine frame start: first field for field picture or frame picture */
|
/** Determine frame start: first field for field picture or frame picture */
|
||||||
|
@ -42,10 +42,10 @@ static inline int vc1_has_MVTYPEMB_bitplane(VC1Context *v)
|
|||||||
{
|
{
|
||||||
if (v->mv_type_is_raw)
|
if (v->mv_type_is_raw)
|
||||||
return 0;
|
return 0;
|
||||||
return (v->s.pict_type == AV_PICTURE_TYPE_P &&
|
return v->s.pict_type == AV_PICTURE_TYPE_P &&
|
||||||
(v->mv_mode == MV_PMODE_MIXED_MV ||
|
(v->mv_mode == MV_PMODE_MIXED_MV ||
|
||||||
(v->mv_mode == MV_PMODE_INTENSITY_COMP &&
|
(v->mv_mode == MV_PMODE_INTENSITY_COMP &&
|
||||||
v->mv_mode2 == MV_PMODE_MIXED_MV)));
|
v->mv_mode2 == MV_PMODE_MIXED_MV));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check whether the SKIPMB bitplane is present */
|
/** Check whether the SKIPMB bitplane is present */
|
||||||
@ -53,8 +53,8 @@ static inline int vc1_has_SKIPMB_bitplane(VC1Context *v)
|
|||||||
{
|
{
|
||||||
if (v->skip_is_raw)
|
if (v->skip_is_raw)
|
||||||
return 0;
|
return 0;
|
||||||
return (v->s.pict_type == AV_PICTURE_TYPE_P ||
|
return v->s.pict_type == AV_PICTURE_TYPE_P ||
|
||||||
(v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type));
|
(v->s.pict_type == AV_PICTURE_TYPE_B && !v->bi_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check whether the DIRECTMB bitplane is present */
|
/** Check whether the DIRECTMB bitplane is present */
|
||||||
@ -70,9 +70,9 @@ static inline int vc1_has_ACPRED_bitplane(VC1Context *v)
|
|||||||
{
|
{
|
||||||
if (v->acpred_is_raw)
|
if (v->acpred_is_raw)
|
||||||
return 0;
|
return 0;
|
||||||
return (v->profile == PROFILE_ADVANCED &&
|
return v->profile == PROFILE_ADVANCED &&
|
||||||
(v->s.pict_type == AV_PICTURE_TYPE_I ||
|
(v->s.pict_type == AV_PICTURE_TYPE_I ||
|
||||||
(v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type)));
|
(v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check whether the OVERFLAGS bitplane is present */
|
/** Check whether the OVERFLAGS bitplane is present */
|
||||||
@ -80,11 +80,11 @@ static inline int vc1_has_OVERFLAGS_bitplane(VC1Context *v)
|
|||||||
{
|
{
|
||||||
if (v->overflg_is_raw)
|
if (v->overflg_is_raw)
|
||||||
return 0;
|
return 0;
|
||||||
return (v->profile == PROFILE_ADVANCED &&
|
return v->profile == PROFILE_ADVANCED &&
|
||||||
(v->s.pict_type == AV_PICTURE_TYPE_I ||
|
(v->s.pict_type == AV_PICTURE_TYPE_I ||
|
||||||
(v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type)) &&
|
(v->s.pict_type == AV_PICTURE_TYPE_B && v->bi_type)) &&
|
||||||
(v->overlap && v->pq <= 8) &&
|
(v->overlap && v->pq <= 8) &&
|
||||||
v->condover == CONDOVER_SELECT);
|
v->condover == CONDOVER_SELECT;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Reconstruct bitstream PTYPE (7.1.1.4, index into Table-35) */
|
/** Reconstruct bitstream PTYPE (7.1.1.4, index into Table-35) */
|
||||||
|
@ -461,7 +461,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
|
|
||||||
static inline int is_newline(uint32_t c)
|
static inline int is_newline(uint32_t c)
|
||||||
{
|
{
|
||||||
return (c == '\n' || c == '\r' || c == '\f' || c == '\v');
|
return c == '\n' || c == '\r' || c == '\f' || c == '\v';
|
||||||
}
|
}
|
||||||
|
|
||||||
static int config_input(AVFilterLink *inlink)
|
static int config_input(AVFilterLink *inlink)
|
||||||
|
@ -40,17 +40,17 @@ tests/data/mapchan-mono.sw: tests/audiogen$(HOSTEXESUF)
|
|||||||
|
|
||||||
tests/data/asynth%.sw tests/vsynth%/00.pgm: TAG = GEN
|
tests/data/asynth%.sw tests/vsynth%/00.pgm: TAG = GEN
|
||||||
|
|
||||||
include $(SRC_PATH)/tests/fate.mak
|
|
||||||
include $(SRC_PATH)/tests/fate2.mak
|
|
||||||
|
|
||||||
include $(SRC_PATH)/tests/fate/aac.mak
|
include $(SRC_PATH)/tests/fate/aac.mak
|
||||||
include $(SRC_PATH)/tests/fate/ac3.mak
|
include $(SRC_PATH)/tests/fate/ac3.mak
|
||||||
include $(SRC_PATH)/tests/fate/als.mak
|
include $(SRC_PATH)/tests/fate/als.mak
|
||||||
include $(SRC_PATH)/tests/fate/amrnb.mak
|
include $(SRC_PATH)/tests/fate/amrnb.mak
|
||||||
include $(SRC_PATH)/tests/fate/amrwb.mak
|
include $(SRC_PATH)/tests/fate/amrwb.mak
|
||||||
include $(SRC_PATH)/tests/fate/atrac.mak
|
include $(SRC_PATH)/tests/fate/atrac.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/audio.mak
|
||||||
include $(SRC_PATH)/tests/fate/dct.mak
|
include $(SRC_PATH)/tests/fate/dct.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/demux.mak
|
||||||
include $(SRC_PATH)/tests/fate/dpcm.mak
|
include $(SRC_PATH)/tests/fate/dpcm.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/ea.mak
|
||||||
include $(SRC_PATH)/tests/fate/fft.mak
|
include $(SRC_PATH)/tests/fate/fft.mak
|
||||||
include $(SRC_PATH)/tests/fate/h264.mak
|
include $(SRC_PATH)/tests/fate/h264.mak
|
||||||
include $(SRC_PATH)/tests/fate/image.mak
|
include $(SRC_PATH)/tests/fate/image.mak
|
||||||
@ -65,10 +65,13 @@ include $(SRC_PATH)/tests/fate/mp3.mak
|
|||||||
include $(SRC_PATH)/tests/fate/mpc.mak
|
include $(SRC_PATH)/tests/fate/mpc.mak
|
||||||
include $(SRC_PATH)/tests/fate/pcm.mak
|
include $(SRC_PATH)/tests/fate/pcm.mak
|
||||||
include $(SRC_PATH)/tests/fate/prores.mak
|
include $(SRC_PATH)/tests/fate/prores.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/qt.mak
|
||||||
include $(SRC_PATH)/tests/fate/qtrle.mak
|
include $(SRC_PATH)/tests/fate/qtrle.mak
|
||||||
include $(SRC_PATH)/tests/fate/real.mak
|
include $(SRC_PATH)/tests/fate/real.mak
|
||||||
include $(SRC_PATH)/tests/fate/screen.mak
|
include $(SRC_PATH)/tests/fate/screen.mak
|
||||||
include $(SRC_PATH)/tests/fate/utvideo.mak
|
include $(SRC_PATH)/tests/fate/utvideo.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/video.mak
|
||||||
|
include $(SRC_PATH)/tests/fate/voice.mak
|
||||||
include $(SRC_PATH)/tests/fate/vorbis.mak
|
include $(SRC_PATH)/tests/fate/vorbis.mak
|
||||||
include $(SRC_PATH)/tests/fate/vpx.mak
|
include $(SRC_PATH)/tests/fate/vpx.mak
|
||||||
include $(SRC_PATH)/tests/fate/vqf.mak
|
include $(SRC_PATH)/tests/fate/vqf.mak
|
||||||
|
204
tests/fate.mak
204
tests/fate.mak
@ -1,204 +0,0 @@
|
|||||||
FATE_TESTS += fate-4xm-1
|
|
||||||
fate-4xm-1: CMD = framecrc -i $(SAMPLES)/4xm/version1.4xm -pix_fmt rgb24 -an
|
|
||||||
FATE_TESTS += fate-4xm-2
|
|
||||||
fate-4xm-2: CMD = framecrc -i $(SAMPLES)/4xm/version2.4xm -pix_fmt rgb24 -an
|
|
||||||
FATE_TESTS += fate-8bps
|
|
||||||
fate-8bps: CMD = framecrc -i $(SAMPLES)/8bps/full9iron-partial.mov -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-aasc
|
|
||||||
fate-aasc: CMD = framecrc -i $(SAMPLES)/aasc/AASC-1.5MB.AVI -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-adts-demux
|
|
||||||
fate-adts-demux: CMD = crc -i $(SAMPLES)/aac/ct_faac-adts.aac -acodec copy
|
|
||||||
FATE_TESTS += fate-aea-demux
|
|
||||||
fate-aea-demux: CMD = crc -i $(SAMPLES)/aea/chirp.aea -acodec copy
|
|
||||||
FATE_TESTS += fate-alg-mm
|
|
||||||
fate-alg-mm: CMD = framecrc -i $(SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-amv
|
|
||||||
fate-amv: CMD = framecrc -idct simple -i $(SAMPLES)/amv/MTV_high_res_320x240_sample_Penguin_Joke_MTV_from_WMV.amv -t 10
|
|
||||||
FATE_TESTS += fate-armovie-escape124
|
|
||||||
fate-armovie-escape124: CMD = framecrc -i $(SAMPLES)/rpl/ESCAPE.RPL -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-auravision
|
|
||||||
fate-auravision: CMD = framecrc -i $(SAMPLES)/auravision/SOUVIDEO.AVI -an
|
|
||||||
FATE_TESTS += fate-auravision-v2
|
|
||||||
fate-auravision-v2: CMD = framecrc -i $(SAMPLES)/auravision/salma-hayek-in-ugly-betty-partial-avi -an
|
|
||||||
FATE_TESTS += fate-bethsoft-vid
|
|
||||||
fate-bethsoft-vid: CMD = framecrc -i $(SAMPLES)/bethsoft-vid/ANIM0001.VID -vsync 0 -t 5 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-bfi
|
|
||||||
fate-bfi: CMD = framecrc -i $(SAMPLES)/bfi/2287.bfi -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-bink-demux
|
|
||||||
fate-bink-demux: CMD = crc -i $(SAMPLES)/bink/Snd0a7d9b58.dee -vn -acodec copy
|
|
||||||
FATE_TESTS += fate-bink-demux-video
|
|
||||||
fate-bink-demux-video: CMD = framecrc -i $(SAMPLES)/bink/hol2br.bik
|
|
||||||
FATE_TESTS += fate-caf
|
|
||||||
fate-caf: CMD = crc -i $(SAMPLES)/caf/caf-pcm16.caf
|
|
||||||
FATE_TESTS += fate-cdgraphics
|
|
||||||
fate-cdgraphics: CMD = framecrc -i $(SAMPLES)/cdgraphics/BrotherJohn.cdg -pix_fmt rgb24 -t 1
|
|
||||||
FATE_TESTS += fate-cljr
|
|
||||||
fate-cljr: CMD = framecrc -i $(SAMPLES)/cljr/testcljr-partial.avi
|
|
||||||
FATE_TESTS += fate-corepng
|
|
||||||
fate-corepng: CMD = framecrc -i $(SAMPLES)/png1/corepng-partial.avi
|
|
||||||
FATE_TESTS += fate-creatureshock-avs
|
|
||||||
fate-creatureshock-avs: CMD = framecrc -i $(SAMPLES)/creatureshock-avs/OUTATIME.AVS -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-cryo-apc
|
|
||||||
fate-cryo-apc: CMD = md5 -i $(SAMPLES)/cryo-apc/cine007.APC -f s16le
|
|
||||||
FATE_TESTS += fate-cvid
|
|
||||||
fate-cvid: CMD = framecrc -i $(SAMPLES)/cvid/laracroft-cinepak-partial.avi -an
|
|
||||||
FATE_TESTS += fate-cvid-palette
|
|
||||||
fate-cvid-palette: CMD = framecrc -i $(SAMPLES)/cvid/catfight-cvid-pal8-partial.mov -pix_fmt rgb24 -an
|
|
||||||
FATE_TESTS += fate-cyberia-c93
|
|
||||||
fate-cyberia-c93: CMD = framecrc -i $(SAMPLES)/cyberia-c93/intro1.c93 -t 3 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-cyuv
|
|
||||||
fate-cyuv: CMD = framecrc -i $(SAMPLES)/cyuv/cyuv.avi
|
|
||||||
FATE_TESTS += fate-d-cinema-demux
|
|
||||||
fate-d-cinema-demux: CMD = framecrc -i $(SAMPLES)/d-cinema/THX_Science_FLT_1920-partial.302 -acodec copy -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-delphine-cin
|
|
||||||
fate-delphine-cin: CMD = framecrc -i $(SAMPLES)/delphine-cin/LOGO-partial.CIN -pix_fmt rgb24 -vsync 0
|
|
||||||
FATE_TESTS += fate-deluxepaint-anm
|
|
||||||
fate-deluxepaint-anm: CMD = framecrc -i $(SAMPLES)/deluxepaint-anm/INTRO1.ANM -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-duck-tm2
|
|
||||||
fate-duck-tm2: CMD = framecrc -i $(SAMPLES)/duck/tm20.avi
|
|
||||||
FATE_TESTS += fate-ea-cdata
|
|
||||||
fate-ea-cdata: CMD = md5 -i $(SAMPLES)/ea-cdata/166b084d.46410f77.0009b440.24be960c.cdata -f s16le
|
|
||||||
FATE_TESTS += fate-ea-cmv
|
|
||||||
fate-ea-cmv: CMD = framecrc -i $(SAMPLES)/ea-cmv/TITLE.CMV -vsync 0 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-ea-dct
|
|
||||||
fate-ea-dct: CMD = framecrc -idct simple -i $(SAMPLES)/ea-dct/NFS2Esprit-partial.dct
|
|
||||||
FATE_TESTS += fate-ea-tgq
|
|
||||||
fate-ea-tgq: CMD = framecrc -i $(SAMPLES)/ea-tgq/v27.tgq -an
|
|
||||||
FATE_TESTS += fate-ea-tgv-ima-ea-eacs
|
|
||||||
fate-ea-tgv-ima-ea-eacs: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTRO8K-partial.TGV -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-ea-tgv-ima-ea-sead
|
|
||||||
fate-ea-tgv-ima-ea-sead: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTEL_S.TGV -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-feeble-dxa
|
|
||||||
fate-feeble-dxa: CMD = framecrc -i $(SAMPLES)/dxa/meetsquid.dxa -t 2 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-flic-af11-palette-change
|
|
||||||
fate-flic-af11-palette-change: CMD = framecrc -i $(SAMPLES)/fli/fli-engines.fli -t 3.3 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-flic-af12
|
|
||||||
fate-flic-af12: CMD = framecrc -i $(SAMPLES)/fli/jj00c2.fli -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-flic-magiccarpet
|
|
||||||
fate-flic-magiccarpet: CMD = framecrc -i $(SAMPLES)/fli/intel.dat -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-frwu
|
|
||||||
fate-frwu: CMD = framecrc -i $(SAMPLES)/frwu/frwu.avi
|
|
||||||
FATE_TESTS += fate-funcom-iss
|
|
||||||
fate-funcom-iss: CMD = md5 -i $(SAMPLES)/funcom-iss/0004010100.iss -f s16le
|
|
||||||
FATE_TESTS += fate-g729-0
|
|
||||||
fate-g729-0: CMD = framecrc -i $(SAMPLES)/act/REC03.act -t 10
|
|
||||||
FATE_TESTS += fate-g729-1
|
|
||||||
fate-g729-1: CMD = framecrc -i $(SAMPLES)/act/REC05.act -t 10
|
|
||||||
FATE_TESTS += fate-id-cin-video
|
|
||||||
fate-id-cin-video: CMD = framecrc -i $(SAMPLES)/idcin/idlog-2MB.cin -pix_fmt rgb24
|
|
||||||
FATE_TESTS-$(CONFIG_AVFILTER) += fate-idroq-video-encode
|
|
||||||
fate-idroq-video-encode: CMD = md5 -f image2 -vcodec pgmyuv -i $(SAMPLES)/ffmpeg-synthetic/vsynth1/%02d.pgm -sws_flags +bitexact -vf pad=512:512:80:112 -f RoQ -t 0.2
|
|
||||||
FATE_TESTS += fate-iff-byterun1
|
|
||||||
fate-iff-byterun1: CMD = framecrc -i $(SAMPLES)/iff/ASH.LBM -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-iff-fibonacci
|
|
||||||
fate-iff-fibonacci: CMD = md5 -i $(SAMPLES)/iff/dasboot-in-compressed -f s16le
|
|
||||||
FATE_TESTS += fate-iff-ilbm
|
|
||||||
fate-iff-ilbm: CMD = framecrc -i $(SAMPLES)/iff/lms-matriks.ilbm -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-interplay-mve-16bit
|
|
||||||
fate-interplay-mve-16bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/descent3-level5-16bit-partial.mve -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-interplay-mve-8bit
|
|
||||||
fate-interplay-mve-8bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/interplay-logo-2MB.mve -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-iv8-demux
|
|
||||||
fate-iv8-demux: CMD = framecrc -i $(SAMPLES)/iv8/zzz-partial.mpg -vsync 0 -vcodec copy
|
|
||||||
FATE_TESTS += fate-kmvc
|
|
||||||
fate-kmvc: CMD = framecrc -i $(SAMPLES)/KMVC/LOGO1.AVI -an -t 3 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-lmlm4-demux
|
|
||||||
fate-lmlm4-demux: CMD = framecrc -i $(SAMPLES)/lmlm4/LMLM4_CIFat30fps.divx -t 3 -acodec copy -vcodec copy
|
|
||||||
FATE_TESTS += fate-maxis-xa
|
|
||||||
fate-maxis-xa: CMD = md5 -i $(SAMPLES)/maxis-xa/SC2KBUG.XA -f s16le
|
|
||||||
FATE_TESTS += fate-mimic
|
|
||||||
fate-mimic: CMD = framecrc -idct simple -i $(SAMPLES)/mimic/mimic2-womanloveffmpeg.cam -vsync 0
|
|
||||||
FATE_TESTS += fate-motionpixels
|
|
||||||
fate-motionpixels: CMD = framecrc -i $(SAMPLES)/motion-pixels/INTRO-partial.MVI -an -pix_fmt rgb24 -vframes 111
|
|
||||||
FATE_TESTS += fate-mtv
|
|
||||||
fate-mtv: CMD = framecrc -i $(SAMPLES)/mtv/comedian_auto-partial.mtv -acodec copy -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-mxf-demux
|
|
||||||
fate-mxf-demux: CMD = framecrc -i $(SAMPLES)/mxf/C0023S01.mxf -acodec copy -vcodec copy
|
|
||||||
FATE_TESTS += fate-nc-demux
|
|
||||||
fate-nc-demux: CMD = framecrc -i $(SAMPLES)/nc-camera/nc-sample-partial -vcodec copy
|
|
||||||
FATE_TESTS += fate-nsv-demux
|
|
||||||
fate-nsv-demux: CMD = framecrc -i $(SAMPLES)/nsv/witchblade-51kbps.nsv -t 6 -vcodec copy -acodec copy
|
|
||||||
FATE_TESTS += fate-nuv
|
|
||||||
fate-nuv: CMD = framecrc -idct simple -i $(SAMPLES)/nuv/Today.nuv -vsync 0
|
|
||||||
FATE_TESTS += fate-oma-demux
|
|
||||||
fate-oma-demux: CMD = crc -i $(SAMPLES)/oma/01-Untitled-partial.oma -acodec copy
|
|
||||||
FATE_TESTS += fate-psx-str
|
|
||||||
fate-psx-str: CMD = framecrc -i $(SAMPLES)/psx-str/descent-partial.str
|
|
||||||
FATE_TESTS += fate-psx-str-v3-mdec
|
|
||||||
fate-psx-str-v3-mdec: CMD = framecrc -i $(SAMPLES)/psx-str/abc000_cut.str -an
|
|
||||||
FATE_TESTS += fate-pva-demux
|
|
||||||
fate-pva-demux: CMD = framecrc -idct simple -i $(SAMPLES)/pva/PVA_test-partial.pva -t 0.6 -acodec copy
|
|
||||||
FATE_TESTS += fate-qcp-demux
|
|
||||||
fate-qcp-demux: CMD = crc -i $(SAMPLES)/qcp/0036580847.QCP -acodec copy
|
|
||||||
FATE_TESTS += fate-qpeg
|
|
||||||
fate-qpeg: CMD = framecrc -i $(SAMPLES)/qpeg/Clock.avi -an -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-qt-alaw-mono
|
|
||||||
fate-qt-alaw-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-alaw.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-alaw-stereo
|
|
||||||
fate-qt-alaw-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-alaw.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-ima4-mono
|
|
||||||
fate-qt-ima4-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-ima4.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-ima4-stereo
|
|
||||||
fate-qt-ima4-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-ima4.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-mac3-mono
|
|
||||||
fate-qt-mac3-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-8-MAC3.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-mac3-stereo
|
|
||||||
fate-qt-mac3-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-8-MAC3.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-mac6-mono
|
|
||||||
fate-qt-mac6-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-8-MAC6.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-mac6-stereo
|
|
||||||
fate-qt-mac6-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-8-MAC6.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-ulaw-mono
|
|
||||||
fate-qt-ulaw-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-ulaw.mov -f s16le
|
|
||||||
FATE_TESTS += fate-qt-ulaw-stereo
|
|
||||||
fate-qt-ulaw-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-ulaw.mov -f s16le
|
|
||||||
FATE_TESTS += fate-quickdraw
|
|
||||||
fate-quickdraw: CMD = framecrc -i $(SAMPLES)/quickdraw/Airplane.mov -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-redcode-demux
|
|
||||||
fate-redcode-demux: CMD = framecrc -i $(SAMPLES)/r3d/4MB-sample.r3d -vcodec copy -acodec copy
|
|
||||||
FATE_TESTS += fate-rl2
|
|
||||||
fate-rl2: CMD = framecrc -i $(SAMPLES)/rl2/Z4915300.RL2 -pix_fmt rgb24 -an -vsync 0
|
|
||||||
FATE_TESTS += fate-rpza
|
|
||||||
fate-rpza: CMD = framecrc -i $(SAMPLES)/rpza/rpza2.mov -t 2 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-sierra-audio
|
|
||||||
fate-sierra-audio: CMD = md5 -i $(SAMPLES)/sol/lsl7sample.sol -f s16le
|
|
||||||
FATE_TESTS += fate-sierra-vmd
|
|
||||||
fate-sierra-vmd: CMD = framecrc -i $(SAMPLES)/vmd/12.vmd -vsync 0 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-siff
|
|
||||||
fate-siff: CMD = framecrc -i $(SAMPLES)/SIFF/INTRO_B.VB -t 3 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-smacker
|
|
||||||
fate-smacker: CMD = framecrc -i $(SAMPLES)/smacker/wetlogo.smk -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-smc
|
|
||||||
fate-smc: CMD = framecrc -i $(SAMPLES)/smc/cass_schi.qt -vsync 0 -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-sp5x
|
|
||||||
fate-sp5x: CMD = framecrc -idct simple -i $(SAMPLES)/sp5x/sp5x_problem.avi
|
|
||||||
FATE_TESTS += fate-sub-srt
|
|
||||||
fate-sub-srt: CMD = md5 -i $(SAMPLES)/sub/SubRip_capability_tester.srt -f ass
|
|
||||||
FATE_TESTS += fate-svq1
|
|
||||||
fate-svq1: CMD = framecrc -i $(SAMPLES)/svq1/marymary-shackles.mov -an -t 10
|
|
||||||
FATE_TESTS += fate-svq3
|
|
||||||
fate-svq3: CMD = framecrc -i $(SAMPLES)/svq3/Vertical400kbit.sorenson3.mov -t 6 -an
|
|
||||||
FATE_TESTS += fate-tiertex-seq
|
|
||||||
fate-tiertex-seq: CMD = framecrc -i $(SAMPLES)/tiertex-seq/Gameover.seq -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-tmv
|
|
||||||
fate-tmv: CMD = framecrc -i $(SAMPLES)/tmv/pop-partial.tmv -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-truemotion1-15
|
|
||||||
fate-truemotion1-15: CMD = framecrc -i $(SAMPLES)/duck/phant2-940.duk -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-truemotion1-24
|
|
||||||
fate-truemotion1-24: CMD = framecrc -i $(SAMPLES)/duck/sonic3dblast_intro-partial.avi -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-ulti
|
|
||||||
fate-ulti: CMD = framecrc -i $(SAMPLES)/ulti/hit12w.avi -an
|
|
||||||
FATE_TESTS += fate-v210
|
|
||||||
fate-v210: CMD = framecrc -i $(SAMPLES)/v210/v210_720p-partial.avi -pix_fmt yuv422p16be -an
|
|
||||||
FATE_TESTS += fate-vcr1
|
|
||||||
fate-vcr1: CMD = framecrc -i $(SAMPLES)/vcr1/VCR1test.avi -an
|
|
||||||
FATE_TESTS += fate-video-xl
|
|
||||||
fate-video-xl: CMD = framecrc -i $(SAMPLES)/vixl/pig-vixl.avi
|
|
||||||
FATE_TESTS += fate-vqa-cc
|
|
||||||
fate-vqa-cc: CMD = framecrc -i $(SAMPLES)/vqa/cc-demo1-partial.vqa -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-wc3movie-xan
|
|
||||||
fate-wc3movie-xan: CMD = framecrc -i $(SAMPLES)/wc3movie/SC_32-part.MVE -pix_fmt rgb24
|
|
||||||
FATE_TESTS += fate-westwood-aud
|
|
||||||
fate-westwood-aud: CMD = md5 -i $(SAMPLES)/westwood-aud/excellent.aud -f s16le
|
|
||||||
FATE_TESTS += fate-wnv1
|
|
||||||
fate-wnv1: CMD = framecrc -i $(SAMPLES)/wnv1/wnv1-codec.avi -an
|
|
30
tests/fate/audio.mak
Normal file
30
tests/fate/audio.mak
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
FATE_TESTS += fate-binkaudio-dct
|
||||||
|
fate-binkaudio-dct: CMD = pcm -i $(SAMPLES)/bink/binkaudio_dct.bik
|
||||||
|
fate-binkaudio-dct: CMP = oneoff
|
||||||
|
fate-binkaudio-dct: REF = $(SAMPLES)/bink/binkaudio_dct.pcm
|
||||||
|
fate-binkaudio-dct: FUZZ = 2
|
||||||
|
|
||||||
|
FATE_TESTS += fate-binkaudio-rdft
|
||||||
|
fate-binkaudio-rdft: CMD = pcm -i $(SAMPLES)/bink/binkaudio_rdft.bik
|
||||||
|
fate-binkaudio-rdft: CMP = oneoff
|
||||||
|
fate-binkaudio-rdft: REF = $(SAMPLES)/bink/binkaudio_rdft.pcm
|
||||||
|
fate-binkaudio-rdft: FUZZ = 2
|
||||||
|
|
||||||
|
FATE_TESTS += fate-dts
|
||||||
|
fate-dts: CMD = pcm -i $(SAMPLES)/dts/dts.ts
|
||||||
|
fate-dts: CMP = oneoff
|
||||||
|
fate-dts: REF = $(SAMPLES)/dts/dts.pcm
|
||||||
|
|
||||||
|
FATE_TESTS += fate-imc
|
||||||
|
fate-imc: CMD = pcm -i $(SAMPLES)/imc/imc.avi
|
||||||
|
fate-imc: CMP = oneoff
|
||||||
|
fate-imc: REF = $(SAMPLES)/imc/imc.pcm
|
||||||
|
|
||||||
|
FATE_TESTS += fate-nellymoser
|
||||||
|
fate-nellymoser: CMD = pcm -i $(SAMPLES)/nellymoser/nellymoser.flv
|
||||||
|
fate-nellymoser: CMP = oneoff
|
||||||
|
fate-nellymoser: REF = $(SAMPLES)/nellymoser/nellymoser.pcm
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ws_snd
|
||||||
|
fate-ws_snd: CMD = md5 -i $(SAMPLES)/vqa/ws_snd.vqa -f s16le
|
||||||
|
|
80
tests/fate/demux.mak
Normal file
80
tests/fate/demux.mak
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
FATE_TESTS += fate-adts-demux
|
||||||
|
fate-adts-demux: CMD = crc -i $(SAMPLES)/aac/ct_faac-adts.aac -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-aea-demux
|
||||||
|
fate-aea-demux: CMD = crc -i $(SAMPLES)/aea/chirp.aea -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-bink-demux
|
||||||
|
fate-bink-demux: CMD = crc -i $(SAMPLES)/bink/Snd0a7d9b58.dee -vn -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-bink-demux-video
|
||||||
|
fate-bink-demux-video: CMD = framecrc -i $(SAMPLES)/bink/hol2br.bik
|
||||||
|
|
||||||
|
FATE_TESTS += fate-caf
|
||||||
|
fate-caf: CMD = crc -i $(SAMPLES)/caf/caf-pcm16.caf
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cryo-apc
|
||||||
|
fate-cryo-apc: CMD = md5 -i $(SAMPLES)/cryo-apc/cine007.APC -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-d-cinema-demux
|
||||||
|
fate-d-cinema-demux: CMD = framecrc -i $(SAMPLES)/d-cinema/THX_Science_FLT_1920-partial.302 -acodec copy -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-funcom-iss
|
||||||
|
fate-funcom-iss: CMD = md5 -i $(SAMPLES)/funcom-iss/0004010100.iss -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-interplay-mve-16bit
|
||||||
|
fate-interplay-mve-16bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/descent3-level5-16bit-partial.mve -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-interplay-mve-8bit
|
||||||
|
fate-interplay-mve-8bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/interplay-logo-2MB.mve -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-iv8-demux
|
||||||
|
fate-iv8-demux: CMD = framecrc -i $(SAMPLES)/iv8/zzz-partial.mpg -vsync 0 -vcodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-lmlm4-demux
|
||||||
|
fate-lmlm4-demux: CMD = framecrc -i $(SAMPLES)/lmlm4/LMLM4_CIFat30fps.divx -t 3 -acodec copy -vcodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-maxis-xa
|
||||||
|
fate-maxis-xa: CMD = md5 -i $(SAMPLES)/maxis-xa/SC2KBUG.XA -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-mtv
|
||||||
|
fate-mtv: CMD = framecrc -i $(SAMPLES)/mtv/comedian_auto-partial.mtv -acodec copy -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-mxf-demux
|
||||||
|
fate-mxf-demux: CMD = framecrc -i $(SAMPLES)/mxf/C0023S01.mxf -acodec copy -vcodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-nc-demux
|
||||||
|
fate-nc-demux: CMD = framecrc -i $(SAMPLES)/nc-camera/nc-sample-partial -vcodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-nsv-demux
|
||||||
|
fate-nsv-demux: CMD = framecrc -i $(SAMPLES)/nsv/witchblade-51kbps.nsv -t 6 -vcodec copy -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-oma-demux
|
||||||
|
fate-oma-demux: CMD = crc -i $(SAMPLES)/oma/01-Untitled-partial.oma -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-psx-str
|
||||||
|
fate-psx-str: CMD = framecrc -i $(SAMPLES)/psx-str/descent-partial.str
|
||||||
|
|
||||||
|
FATE_TESTS += fate-psx-str-v3-mdec
|
||||||
|
fate-psx-str-v3-mdec: CMD = framecrc -i $(SAMPLES)/psx-str/abc000_cut.str -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-pva-demux
|
||||||
|
fate-pva-demux: CMD = framecrc -idct simple -i $(SAMPLES)/pva/PVA_test-partial.pva -t 0.6 -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qcp-demux
|
||||||
|
fate-qcp-demux: CMD = crc -i $(SAMPLES)/qcp/0036580847.QCP -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-redcode-demux
|
||||||
|
fate-redcode-demux: CMD = framecrc -i $(SAMPLES)/r3d/4MB-sample.r3d -vcodec copy -acodec copy
|
||||||
|
|
||||||
|
FATE_TESTS += fate-sierra-audio
|
||||||
|
fate-sierra-audio: CMD = md5 -i $(SAMPLES)/sol/lsl7sample.sol -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-sierra-vmd
|
||||||
|
fate-sierra-vmd: CMD = framecrc -i $(SAMPLES)/vmd/12.vmd -vsync 0 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-siff
|
||||||
|
fate-siff: CMD = framecrc -i $(SAMPLES)/SIFF/INTRO_B.VB -t 3 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-westwood-aud
|
||||||
|
fate-westwood-aud: CMD = md5 -i $(SAMPLES)/westwood-aud/excellent.aud -f s16le
|
@ -37,6 +37,6 @@ fate-qt-msimaadpcm-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-L-m
|
|||||||
FATE_TESTS += fate-thp-mjpeg-adpcm
|
FATE_TESTS += fate-thp-mjpeg-adpcm
|
||||||
fate-thp-mjpeg-adpcm: CMD = framecrc -idct simple -i $(SAMPLES)/thp/pikmin2-opening1-partial.thp
|
fate-thp-mjpeg-adpcm: CMD = framecrc -idct simple -i $(SAMPLES)/thp/pikmin2-opening1-partial.thp
|
||||||
|
|
||||||
FATE_TESTS += fate-dpcm_xan_audio
|
FATE_TESTS += fate-dpcm-xan
|
||||||
fate-dpcm_xan_audio: CMD = md5 -i $(SAMPLES)/wc4-xan/wc4_2.avi -vn -f s16le
|
fate-dpcm-xan: CMD = md5 -i $(SAMPLES)/wc4-xan/wc4_2.avi -vn -f s16le
|
||||||
|
|
||||||
|
17
tests/fate/ea.mak
Normal file
17
tests/fate/ea.mak
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
FATE_TESTS += fate-ea-cdata
|
||||||
|
fate-ea-cdata: CMD = md5 -i $(SAMPLES)/ea-cdata/166b084d.46410f77.0009b440.24be960c.cdata -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ea-cmv
|
||||||
|
fate-ea-cmv: CMD = framecrc -i $(SAMPLES)/ea-cmv/TITLE.CMV -vsync 0 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ea-dct
|
||||||
|
fate-ea-dct: CMD = framecrc -idct simple -i $(SAMPLES)/ea-dct/NFS2Esprit-partial.dct
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ea-tgq
|
||||||
|
fate-ea-tgq: CMD = framecrc -i $(SAMPLES)/ea-tgq/v27.tgq -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ea-tgv-ima-ea-eacs
|
||||||
|
fate-ea-tgv-ima-ea-eacs: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTRO8K-partial.TGV -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ea-tgv-ima-ea-sead
|
||||||
|
fate-ea-tgv-ima-ea-sead: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTEL_S.TGV -pix_fmt rgb24
|
@ -186,6 +186,7 @@ FATE_H264 := $(FATE_H264:%=fate-h264-conformance-%) \
|
|||||||
fate-h264-interlace-crop \
|
fate-h264-interlace-crop \
|
||||||
fate-h264-lossless \
|
fate-h264-lossless \
|
||||||
fate-h264-extreme-plane-pred \
|
fate-h264-extreme-plane-pred \
|
||||||
|
fate-h264-bsf-mp4toannexb \
|
||||||
|
|
||||||
FATE_TESTS += $(FATE_H264)
|
FATE_TESTS += $(FATE_H264)
|
||||||
fate-h264: $(FATE_H264)
|
fate-h264: $(FATE_H264)
|
||||||
@ -377,3 +378,4 @@ fate-h264-conformance-sva_nl2_e: CMD = framecrc -vsync 0 -i $(SAMPLES)/h264-conf
|
|||||||
fate-h264-interlace-crop: CMD = framecrc -vsync 0 -i $(SAMPLES)/h264/interlaced_crop.mp4 -vframes 3
|
fate-h264-interlace-crop: CMD = framecrc -vsync 0 -i $(SAMPLES)/h264/interlaced_crop.mp4 -vframes 3
|
||||||
fate-h264-lossless: CMD = framecrc -vsync 0 -i $(SAMPLES)/h264/lossless.h264
|
fate-h264-lossless: CMD = framecrc -vsync 0 -i $(SAMPLES)/h264/lossless.h264
|
||||||
fate-h264-extreme-plane-pred: CMD = framemd5 -vsync 0 -i $(SAMPLES)/h264/extreme-plane-pred.h264
|
fate-h264-extreme-plane-pred: CMD = framemd5 -vsync 0 -i $(SAMPLES)/h264/extreme-plane-pred.h264
|
||||||
|
fate-h264-bsf-mp4toannexb: CMD = md5 -i $(SAMPLES)/h264/interlaced_crop.mp4 -vcodec copy -bsf h264_mp4toannexb -f mpeg
|
||||||
|
50
tests/fate/qt.mak
Normal file
50
tests/fate/qt.mak
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
FATE_TESTS += fate-8bps
|
||||||
|
fate-8bps: CMD = framecrc -i $(SAMPLES)/8bps/full9iron-partial.mov -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qdm2
|
||||||
|
fate-qdm2: CMD = pcm -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-QDM2.mov
|
||||||
|
fate-qdm2: CMP = oneoff
|
||||||
|
fate-qdm2: REF = $(SAMPLES)/qt-surge-suite/surge-2-16-B-QDM2.pcm
|
||||||
|
fate-qdm2: FUZZ = 2
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-alaw-mono
|
||||||
|
fate-qt-alaw-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-alaw.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-alaw-stereo
|
||||||
|
fate-qt-alaw-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-alaw.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-ima4-mono
|
||||||
|
fate-qt-ima4-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-ima4.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-ima4-stereo
|
||||||
|
fate-qt-ima4-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-ima4.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-mac3-mono
|
||||||
|
fate-qt-mac3-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-8-MAC3.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-mac3-stereo
|
||||||
|
fate-qt-mac3-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-8-MAC3.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-mac6-mono
|
||||||
|
fate-qt-mac6-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-8-MAC6.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-mac6-stereo
|
||||||
|
fate-qt-mac6-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-8-MAC6.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-ulaw-mono
|
||||||
|
fate-qt-ulaw-mono: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-1-16-B-ulaw.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qt-ulaw-stereo
|
||||||
|
fate-qt-ulaw-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-ulaw.mov -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-quickdraw
|
||||||
|
fate-quickdraw: CMD = framecrc -i $(SAMPLES)/quickdraw/Airplane.mov -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-rpza
|
||||||
|
fate-rpza: CMD = framecrc -i $(SAMPLES)/rpza/rpza2.mov -t 2 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-svq1
|
||||||
|
fate-svq1: CMD = framecrc -i $(SAMPLES)/svq1/marymary-shackles.mov -an -t 10
|
||||||
|
|
||||||
|
FATE_TESTS += fate-svq3
|
||||||
|
fate-svq3: CMD = framecrc -i $(SAMPLES)/svq3/Vertical400kbit.sorenson3.mov -t 6 -an
|
189
tests/fate/video.mak
Normal file
189
tests/fate/video.mak
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
FATE_TESTS += fate-4xm-1
|
||||||
|
fate-4xm-1: CMD = framecrc -i $(SAMPLES)/4xm/version1.4xm -pix_fmt rgb24 -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-4xm-2
|
||||||
|
fate-4xm-2: CMD = framecrc -i $(SAMPLES)/4xm/version2.4xm -pix_fmt rgb24 -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-aasc
|
||||||
|
fate-aasc: CMD = framecrc -i $(SAMPLES)/aasc/AASC-1.5MB.AVI -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-alg-mm
|
||||||
|
fate-alg-mm: CMD = framecrc -i $(SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-amv
|
||||||
|
fate-amv: CMD = framecrc -idct simple -i $(SAMPLES)/amv/MTV_high_res_320x240_sample_Penguin_Joke_MTV_from_WMV.amv -t 10
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ansi
|
||||||
|
fate-ansi: CMD = framecrc -chars_per_frame 44100 -i $(SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-armovie-escape124
|
||||||
|
fate-armovie-escape124: CMD = framecrc -i $(SAMPLES)/rpl/ESCAPE.RPL -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-auravision
|
||||||
|
fate-auravision: CMD = framecrc -i $(SAMPLES)/auravision/SOUVIDEO.AVI -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-auravision-v2
|
||||||
|
fate-auravision-v2: CMD = framecrc -i $(SAMPLES)/auravision/salma-hayek-in-ugly-betty-partial-avi -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-bethsoft-vid
|
||||||
|
fate-bethsoft-vid: CMD = framecrc -i $(SAMPLES)/bethsoft-vid/ANIM0001.VID -vsync 0 -t 5 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-bfi
|
||||||
|
fate-bfi: CMD = framecrc -i $(SAMPLES)/bfi/2287.bfi -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cdgraphics
|
||||||
|
fate-cdgraphics: CMD = framecrc -i $(SAMPLES)/cdgraphics/BrotherJohn.cdg -pix_fmt rgb24 -t 1
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cljr
|
||||||
|
fate-cljr: CMD = framecrc -i $(SAMPLES)/cljr/testcljr-partial.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-corepng
|
||||||
|
fate-corepng: CMD = framecrc -i $(SAMPLES)/png1/corepng-partial.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-creatureshock-avs
|
||||||
|
fate-creatureshock-avs: CMD = framecrc -i $(SAMPLES)/creatureshock-avs/OUTATIME.AVS -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cvid
|
||||||
|
fate-cvid: CMD = framecrc -i $(SAMPLES)/cvid/laracroft-cinepak-partial.avi -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cvid-palette
|
||||||
|
fate-cvid-palette: CMD = framecrc -i $(SAMPLES)/cvid/catfight-cvid-pal8-partial.mov -pix_fmt rgb24 -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cyberia-c93
|
||||||
|
fate-cyberia-c93: CMD = framecrc -i $(SAMPLES)/cyberia-c93/intro1.c93 -t 3 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-cyuv
|
||||||
|
fate-cyuv: CMD = framecrc -i $(SAMPLES)/cyuv/cyuv.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-delphine-cin
|
||||||
|
fate-delphine-cin: CMD = framecrc -i $(SAMPLES)/delphine-cin/LOGO-partial.CIN -pix_fmt rgb24 -vsync 0
|
||||||
|
|
||||||
|
FATE_TESTS += fate-deluxepaint-anm
|
||||||
|
fate-deluxepaint-anm: CMD = framecrc -i $(SAMPLES)/deluxepaint-anm/INTRO1.ANM -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-duck-tm2
|
||||||
|
fate-duck-tm2: CMD = framecrc -i $(SAMPLES)/duck/tm20.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-dxa-scummvm
|
||||||
|
fate-dxa-scummvm: CMD = framecrc -i $(SAMPLES)/dxa/scummvm.dxa -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-feeble-dxa
|
||||||
|
fate-feeble-dxa: CMD = framecrc -i $(SAMPLES)/dxa/meetsquid.dxa -t 2 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-flic-af11-palette-change
|
||||||
|
fate-flic-af11-palette-change: CMD = framecrc -i $(SAMPLES)/fli/fli-engines.fli -t 3.3 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-flic-af12
|
||||||
|
fate-flic-af12: CMD = framecrc -i $(SAMPLES)/fli/jj00c2.fli -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-flic-magiccarpet
|
||||||
|
fate-flic-magiccarpet: CMD = framecrc -i $(SAMPLES)/fli/intel.dat -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-frwu
|
||||||
|
fate-frwu: CMD = framecrc -i $(SAMPLES)/frwu/frwu.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-id-cin-video
|
||||||
|
fate-id-cin-video: CMD = framecrc -i $(SAMPLES)/idcin/idlog-2MB.cin -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS-$(CONFIG_AVFILTER) += fate-idroq-video-encode
|
||||||
|
fate-idroq-video-encode: CMD = md5 -f image2 -vcodec pgmyuv -i $(SAMPLES)/ffmpeg-synthetic/vsynth1/%02d.pgm -sws_flags +bitexact -vf pad=512:512:80:112 -f RoQ -t 0.2
|
||||||
|
|
||||||
|
FATE_TESTS += fate-iff-byterun1
|
||||||
|
fate-iff-byterun1: CMD = framecrc -i $(SAMPLES)/iff/ASH.LBM -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-iff-fibonacci
|
||||||
|
fate-iff-fibonacci: CMD = md5 -i $(SAMPLES)/iff/dasboot-in-compressed -f s16le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-iff-ilbm
|
||||||
|
fate-iff-ilbm: CMD = framecrc -i $(SAMPLES)/iff/lms-matriks.ilbm -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-kmvc
|
||||||
|
fate-kmvc: CMD = framecrc -i $(SAMPLES)/KMVC/LOGO1.AVI -an -t 3 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-mimic
|
||||||
|
fate-mimic: CMD = framecrc -idct simple -i $(SAMPLES)/mimic/mimic2-womanloveffmpeg.cam -vsync 0
|
||||||
|
|
||||||
|
FATE_TESTS += fate-mjpegb
|
||||||
|
fate-mjpegb: CMD = framecrc -idct simple -flags +bitexact -i $(SAMPLES)/mjpegb/mjpegb_part.mov -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-motionpixels
|
||||||
|
fate-motionpixels: CMD = framecrc -i $(SAMPLES)/motion-pixels/INTRO-partial.MVI -an -pix_fmt rgb24 -vframes 111
|
||||||
|
|
||||||
|
FATE_TESTS += fate-mpeg2-field-enc
|
||||||
|
fate-mpeg2-field-enc: CMD = framecrc -flags +bitexact -dct fastint -idct simple -i $(SAMPLES)/mpeg2/mpeg2_field_encoding.ts -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-nuv
|
||||||
|
fate-nuv: CMD = framecrc -idct simple -i $(SAMPLES)/nuv/Today.nuv -vsync 0
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qpeg
|
||||||
|
fate-qpeg: CMD = framecrc -i $(SAMPLES)/qpeg/Clock.avi -an -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-r210
|
||||||
|
fate-r210: CMD = framecrc -i $(SAMPLES)/r210/r210.avi -pix_fmt rgb48le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-rl2
|
||||||
|
fate-rl2: CMD = framecrc -i $(SAMPLES)/rl2/Z4915300.RL2 -pix_fmt rgb24 -an -vsync 0
|
||||||
|
|
||||||
|
FATE_TESTS += fate-smacker
|
||||||
|
fate-smacker: CMD = framecrc -i $(SAMPLES)/smacker/wetlogo.smk -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-smc
|
||||||
|
fate-smc: CMD = framecrc -i $(SAMPLES)/smc/cass_schi.qt -vsync 0 -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-sp5x
|
||||||
|
fate-sp5x: CMD = framecrc -idct simple -i $(SAMPLES)/sp5x/sp5x_problem.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-sub-srt
|
||||||
|
fate-sub-srt: CMD = md5 -i $(SAMPLES)/sub/SubRip_capability_tester.srt -f ass
|
||||||
|
|
||||||
|
FATE_TESTS += fate-tiertex-seq
|
||||||
|
fate-tiertex-seq: CMD = framecrc -i $(SAMPLES)/tiertex-seq/Gameover.seq -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-tmv
|
||||||
|
fate-tmv: CMD = framecrc -i $(SAMPLES)/tmv/pop-partial.tmv -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-truemotion1-15
|
||||||
|
fate-truemotion1-15: CMD = framecrc -i $(SAMPLES)/duck/phant2-940.duk -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-truemotion1-24
|
||||||
|
fate-truemotion1-24: CMD = framecrc -i $(SAMPLES)/duck/sonic3dblast_intro-partial.avi -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-txd-16bpp
|
||||||
|
fate-txd-16bpp: CMD = framecrc -i $(SAMPLES)/txd/misc.txd -pix_fmt bgra -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-txd-pal8
|
||||||
|
fate-txd-pal8: CMD = framecrc -i $(SAMPLES)/txd/outro.txd -pix_fmt rgb24 -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-ulti
|
||||||
|
fate-ulti: CMD = framecrc -i $(SAMPLES)/ulti/hit12w.avi -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-v210
|
||||||
|
fate-v210: CMD = framecrc -i $(SAMPLES)/v210/v210_720p-partial.avi -pix_fmt yuv422p16be -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-v410dec
|
||||||
|
fate-v410dec: CMD = framecrc -i $(SAMPLES)/v410/lenav410.mov -pix_fmt yuv444p10le
|
||||||
|
|
||||||
|
FATE_TESTS += fate-v410enc
|
||||||
|
fate-v410enc: tests/vsynth1/00.pgm
|
||||||
|
fate-v410enc: CMD = md5 -f image2 -vcodec pgmyuv -i $(TARGET_PATH)/tests/vsynth1/%02d.pgm -flags +bitexact -vcodec v410 -f avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-vcr1
|
||||||
|
fate-vcr1: CMD = framecrc -i $(SAMPLES)/vcr1/VCR1test.avi -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-video-xl
|
||||||
|
fate-video-xl: CMD = framecrc -i $(SAMPLES)/vixl/pig-vixl.avi
|
||||||
|
|
||||||
|
FATE_TESTS += fate-vqa-cc
|
||||||
|
fate-vqa-cc: CMD = framecrc -i $(SAMPLES)/vqa/cc-demo1-partial.vqa -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-wc3movie-xan
|
||||||
|
fate-wc3movie-xan: CMD = framecrc -i $(SAMPLES)/wc3movie/SC_32-part.MVE -pix_fmt rgb24
|
||||||
|
|
||||||
|
FATE_TESTS += fate-wnv1
|
||||||
|
fate-wnv1: CMD = framecrc -i $(SAMPLES)/wnv1/wnv1-codec.avi -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-yop
|
||||||
|
fate-yop: CMD = framecrc -i $(SAMPLES)/yop/test1.yop -pix_fmt rgb24 -an
|
||||||
|
|
||||||
|
FATE_TESTS += fate-xxan-wc4
|
||||||
|
fate-xxan-wc4: CMD = framecrc -i $(SAMPLES)/wc4-xan/wc4_2.avi -an -vframes 10
|
22
tests/fate/voice.mak
Normal file
22
tests/fate/voice.mak
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
FATE_TESTS += fate-g722dec-1
|
||||||
|
fate-g722dec-1: CMD = framecrc -i $(SAMPLES)/g722/conf-adminmenu-162.g722
|
||||||
|
|
||||||
|
FATE_TESTS += fate-g722enc
|
||||||
|
fate-g722enc: tests/data/asynth-16000-1.sw
|
||||||
|
fate-g722enc: CMD = md5 -ar 16000 -ac 1 -f s16le -i $(TARGET_PATH)/tests/data/asynth-16000-1.sw -acodec g722 -ac 1 -f g722
|
||||||
|
|
||||||
|
FATE_TESTS += fate-gsm
|
||||||
|
fate-gsm: CMD = framecrc -i $(SAMPLES)/gsm/sample-gsm-8000.mov -t 10
|
||||||
|
|
||||||
|
FATE_TESTS += fate-gsm-ms
|
||||||
|
fate-gsm-ms: CMD = framecrc -i $(SAMPLES)/gsm/ciao.wav
|
||||||
|
|
||||||
|
FATE_TESTS += fate-qcelp
|
||||||
|
fate-qcelp: CMD = pcm -i $(SAMPLES)/qcp/0036580847.QCP
|
||||||
|
fate-qcelp: CMP = oneoff
|
||||||
|
fate-qcelp: REF = $(SAMPLES)/qcp/0036580847.pcm
|
||||||
|
|
||||||
|
FATE_TESTS += fate-truespeech
|
||||||
|
fate-truespeech: CMD = pcm -i $(SAMPLES)/truespeech/a6.wav
|
||||||
|
fate-truespeech: CMP = oneoff
|
||||||
|
fate-truespeech: REF = $(SAMPLES)/truespeech/a6.pcm
|
@ -1,92 +0,0 @@
|
|||||||
FATE_TESTS += fate-mpeg2-field-enc
|
|
||||||
fate-mpeg2-field-enc: CMD = framecrc -flags +bitexact -dct fastint -idct simple -i $(SAMPLES)/mpeg2/mpeg2_field_encoding.ts -an
|
|
||||||
|
|
||||||
FATE_TESTS += fate-qcelp
|
|
||||||
fate-qcelp: CMD = pcm -i $(SAMPLES)/qcp/0036580847.QCP
|
|
||||||
fate-qcelp: CMP = oneoff
|
|
||||||
fate-qcelp: REF = $(SAMPLES)/qcp/0036580847.pcm
|
|
||||||
|
|
||||||
FATE_TESTS += fate-qdm2
|
|
||||||
fate-qdm2: CMD = pcm -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-QDM2.mov
|
|
||||||
fate-qdm2: CMP = oneoff
|
|
||||||
fate-qdm2: REF = $(SAMPLES)/qt-surge-suite/surge-2-16-B-QDM2.pcm
|
|
||||||
fate-qdm2: FUZZ = 2
|
|
||||||
|
|
||||||
FATE_TESTS += fate-imc
|
|
||||||
fate-imc: CMD = pcm -i $(SAMPLES)/imc/imc.avi
|
|
||||||
fate-imc: CMP = oneoff
|
|
||||||
fate-imc: REF = $(SAMPLES)/imc/imc.pcm
|
|
||||||
|
|
||||||
FATE_TESTS += fate-yop
|
|
||||||
fate-yop: CMD = framecrc -i $(SAMPLES)/yop/test1.yop -pix_fmt rgb24 -an
|
|
||||||
|
|
||||||
FATE_TESTS += fate-dts
|
|
||||||
fate-dts: CMD = pcm -i $(SAMPLES)/dts/dts.ts
|
|
||||||
fate-dts: CMP = oneoff
|
|
||||||
fate-dts: REF = $(SAMPLES)/dts/dts.pcm
|
|
||||||
|
|
||||||
FATE_TESTS += fate-nellymoser
|
|
||||||
fate-nellymoser: CMD = pcm -i $(SAMPLES)/nellymoser/nellymoser.flv
|
|
||||||
fate-nellymoser: CMP = oneoff
|
|
||||||
fate-nellymoser: REF = $(SAMPLES)/nellymoser/nellymoser.pcm
|
|
||||||
|
|
||||||
FATE_TESTS += fate-truespeech
|
|
||||||
fate-truespeech: CMD = pcm -i $(SAMPLES)/truespeech/a6.wav
|
|
||||||
fate-truespeech: CMP = oneoff
|
|
||||||
fate-truespeech: REF = $(SAMPLES)/truespeech/a6.pcm
|
|
||||||
|
|
||||||
FATE_TESTS += fate-gsm
|
|
||||||
fate-gsm: CMD = framecrc -i $(SAMPLES)/gsm/sample-gsm-8000.mov -t 10
|
|
||||||
|
|
||||||
FATE_TESTS += fate-gsm-ms
|
|
||||||
fate-gsm-ms: CMD = framecrc -i $(SAMPLES)/gsm/ciao.wav
|
|
||||||
|
|
||||||
FATE_TESTS += fate-g722dec-1
|
|
||||||
fate-g722dec-1: CMD = framecrc -i $(SAMPLES)/g722/conf-adminmenu-162.g722
|
|
||||||
|
|
||||||
FATE_TESTS += fate-g722enc
|
|
||||||
fate-g722enc: tests/data/asynth-16000-1.sw
|
|
||||||
fate-g722enc: CMD = md5 -ar 16000 -ac 1 -f s16le -i $(TARGET_PATH)/tests/data/asynth-16000-1.sw -acodec g722 -ac 1 -f g722
|
|
||||||
|
|
||||||
FATE_TESTS += fate-ansi
|
|
||||||
fate-ansi: CMD = framecrc -chars_per_frame 44100 -i $(SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rgb24
|
|
||||||
|
|
||||||
FATE_TESTS += fate-binkaudio-dct
|
|
||||||
fate-binkaudio-dct: CMD = pcm -i $(SAMPLES)/bink/binkaudio_dct.bik
|
|
||||||
fate-binkaudio-dct: CMP = oneoff
|
|
||||||
fate-binkaudio-dct: REF = $(SAMPLES)/bink/binkaudio_dct.pcm
|
|
||||||
fate-binkaudio-dct: FUZZ = 2
|
|
||||||
|
|
||||||
FATE_TESTS += fate-binkaudio-rdft
|
|
||||||
fate-binkaudio-rdft: CMD = pcm -i $(SAMPLES)/bink/binkaudio_rdft.bik
|
|
||||||
fate-binkaudio-rdft: CMP = oneoff
|
|
||||||
fate-binkaudio-rdft: REF = $(SAMPLES)/bink/binkaudio_rdft.pcm
|
|
||||||
fate-binkaudio-rdft: FUZZ = 2
|
|
||||||
|
|
||||||
FATE_TESTS += fate-txd-pal8
|
|
||||||
fate-txd-pal8: CMD = framecrc -i $(SAMPLES)/txd/outro.txd -pix_fmt rgb24 -an
|
|
||||||
|
|
||||||
FATE_TESTS += fate-txd-16bpp
|
|
||||||
fate-txd-16bpp: CMD = framecrc -i $(SAMPLES)/txd/misc.txd -pix_fmt bgra -an
|
|
||||||
|
|
||||||
FATE_TESTS += fate-ws_snd
|
|
||||||
fate-ws_snd: CMD = md5 -i $(SAMPLES)/vqa/ws_snd.vqa -f s16le
|
|
||||||
|
|
||||||
FATE_TESTS += fate-dxa-scummvm
|
|
||||||
fate-dxa-scummvm: CMD = framecrc -i $(SAMPLES)/dxa/scummvm.dxa -pix_fmt rgb24
|
|
||||||
|
|
||||||
FATE_TESTS += fate-mjpegb
|
|
||||||
fate-mjpegb: CMD = framecrc -idct simple -flags +bitexact -i $(SAMPLES)/mjpegb/mjpegb_part.mov -an
|
|
||||||
|
|
||||||
FATE_TESTS += fate-v410dec
|
|
||||||
fate-v410dec: CMD = framecrc -i $(SAMPLES)/v410/lenav410.mov -pix_fmt yuv444p10le
|
|
||||||
|
|
||||||
FATE_TESTS += fate-v410enc
|
|
||||||
fate-v410enc: tests/vsynth1/00.pgm
|
|
||||||
fate-v410enc: CMD = md5 -f image2 -vcodec pgmyuv -i $(TARGET_PATH)/tests/vsynth1/%02d.pgm -flags +bitexact -vcodec v410 -f avi
|
|
||||||
|
|
||||||
FATE_TESTS += fate-r210
|
|
||||||
fate-r210: CMD = framecrc -i $(SAMPLES)/r210/r210.avi -pix_fmt rgb48le
|
|
||||||
|
|
||||||
FATE_TESTS += fate-xxan_wc4_video
|
|
||||||
fate-xxan_wc4_video: CMD = framecrc -i $(SAMPLES)/wc4-xan/wc4_2.avi -an -vframes 10
|
|
1
tests/ref/fate/h264-bsf-mp4toannexb
Normal file
1
tests/ref/fate/h264-bsf-mp4toannexb
Normal file
@ -0,0 +1 @@
|
|||||||
|
503d34ff458a86387ab349c31726f19a
|
@ -35,10 +35,12 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
|
#define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
|
||||||
|
|
||||||
#define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \
|
#define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \
|
||||||
(((uint8_t*)(x))[1] << 16) | \
|
(((uint8_t*)(x))[1] << 16) | \
|
||||||
(((uint8_t*)(x))[2] << 8) | \
|
(((uint8_t*)(x))[2] << 8) | \
|
||||||
((uint8_t*)(x))[3])
|
((uint8_t*)(x))[3])
|
||||||
|
|
||||||
#define BE_64(x) (((uint64_t)(((uint8_t*)(x))[0]) << 56) | \
|
#define BE_64(x) (((uint64_t)(((uint8_t*)(x))[0]) << 56) | \
|
||||||
((uint64_t)(((uint8_t*)(x))[1]) << 48) | \
|
((uint64_t)(((uint8_t*)(x))[1]) << 48) | \
|
||||||
((uint64_t)(((uint8_t*)(x))[2]) << 40) | \
|
((uint64_t)(((uint8_t*)(x))[2]) << 40) | \
|
||||||
@ -125,7 +127,7 @@ int main(int argc, char *argv[])
|
|||||||
free(ftyp_atom);
|
free(ftyp_atom);
|
||||||
ftyp_atom = malloc(ftyp_atom_size);
|
ftyp_atom = malloc(ftyp_atom_size);
|
||||||
if (!ftyp_atom) {
|
if (!ftyp_atom) {
|
||||||
printf ("could not allocate %"PRIu64" byte for ftyp atom\n",
|
printf("could not allocate %"PRIu64" bytes for ftyp atom\n",
|
||||||
atom_size);
|
atom_size);
|
||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
@ -165,7 +167,7 @@ int main(int argc, char *argv[])
|
|||||||
(atom_type != PICT_ATOM) &&
|
(atom_type != PICT_ATOM) &&
|
||||||
(atom_type != UUID_ATOM) &&
|
(atom_type != UUID_ATOM) &&
|
||||||
(atom_type != FTYP_ATOM)) {
|
(atom_type != FTYP_ATOM)) {
|
||||||
printf ("encountered non-QT top-level atom (is this a Quicktime file?)\n");
|
printf("encountered non-QT top-level atom (is this a QuickTime file?)\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
atom_offset += atom_size;
|
atom_offset += atom_size;
|
||||||
@ -191,8 +193,7 @@ int main(int argc, char *argv[])
|
|||||||
moov_atom_size = atom_size;
|
moov_atom_size = atom_size;
|
||||||
moov_atom = malloc(moov_atom_size);
|
moov_atom = malloc(moov_atom_size);
|
||||||
if (!moov_atom) {
|
if (!moov_atom) {
|
||||||
printf ("could not allocate %"PRIu64" byte for moov atom\n",
|
printf("could not allocate %"PRIu64" bytes for moov atom\n", atom_size);
|
||||||
atom_size);
|
|
||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
if (fread(moov_atom, atom_size, 1, infile) != 1) {
|
if (fread(moov_atom, atom_size, 1, infile) != 1) {
|
||||||
@ -305,7 +306,6 @@ int main(int argc, char *argv[])
|
|||||||
perror(argv[2]);
|
perror(argv[2]);
|
||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
last_offset -= bytes_to_copy;
|
last_offset -= bytes_to_copy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user