diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-26 09:54:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-26 14:33:10 +0200 |
commit | dd63e275748ce3003e2ead88b6e35a9033970000 (patch) | |
tree | 7a941eae50f2f37f1595e1a1582887aa6e2c990e | |
parent | a4b58fd9e805c34a1583873578f77fbcfe96c467 (diff) | |
download | ffmpeg-dd63e275748ce3003e2ead88b6e35a9033970000.tar.gz |
swr-test: add sorted formats table from avr
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/swresample_test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libswresample/swresample_test.c b/libswresample/swresample_test.c index 5f88f6af27..2e8860b6ef 100644 --- a/libswresample/swresample_test.c +++ b/libswresample/swresample_test.c @@ -80,6 +80,19 @@ static void shift(uint8_t *a[], int index, int ch_count, enum AVSampleFormat f){ } } +static const enum AVSampleFormat formats[] = { + AV_SAMPLE_FMT_S16, + AV_SAMPLE_FMT_FLTP, + AV_SAMPLE_FMT_S16P, + AV_SAMPLE_FMT_FLT, + AV_SAMPLE_FMT_S32P, + AV_SAMPLE_FMT_S32, + AV_SAMPLE_FMT_U8P, + AV_SAMPLE_FMT_U8, + AV_SAMPLE_FMT_DBLP, + AV_SAMPLE_FMT_DBL, +}; + uint64_t layouts[]={ AV_CH_LAYOUT_MONO , AV_CH_LAYOUT_STEREO , |