[FFmpeg-cvslog] swr-test: allow testing a specific subset of cases
Michael Niedermayer
git at videolan.org
Sat May 5 19:07:16 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat May 5 18:22:48 2012 +0200| [3db6093244f46f580b2c1857179580e312b52954] | committer: Michael Niedermayer
swr-test: allow testing a specific subset of cases
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3db6093244f46f580b2c1857179580e312b52954
---
libswresample/swresample_test.c | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/libswresample/swresample_test.c b/libswresample/swresample_test.c
index 7c6e466..7af55b8 100644
--- a/libswresample/swresample_test.c
+++ b/libswresample/swresample_test.c
@@ -237,14 +237,15 @@ int main(int argc, char **argv){
uint32_t rand_seed = 0;
int remaining_tests[max_tests];
int test;
+ int specific_test= -1;
struct SwrContext * forw_ctx= NULL;
struct SwrContext *backw_ctx= NULL;
if (argc > 1) {
if (!strcmp(argv[1], "-h")) {
- av_log(NULL, AV_LOG_INFO, "Usage: swresample-test [<num_tests>]\n"
- "Default is %d\n", num_tests);
+ av_log(NULL, AV_LOG_INFO, "Usage: swresample-test [<num_tests>[ <test>]] \n"
+ "num_tests Default is %d\n", num_tests);
return 0;
}
num_tests = strtol(argv[1], NULL, 0);
@@ -254,6 +255,9 @@ int main(int argc, char **argv){
}
if(num_tests<= 0 || num_tests>max_tests)
num_tests = max_tests;
+ if(argc > 2) {
+ specific_test = strtol(argv[1], NULL, 0);
+ }
}
for(i=0; i<max_tests; i++)
@@ -281,6 +285,11 @@ int main(int argc, char **argv){
out_sample_rate = rates [vector % FF_ARRAY_ELEMS(rates )]; vector /= FF_ARRAY_ELEMS(rates);
av_assert0(!vector);
+ if(specific_test == 0){
+ if(out_sample_rate != in_sample_rate || in_ch_layout != out_ch_layout)
+ continue;
+ }
+
in_ch_count= av_get_channel_layout_nb_channels(in_ch_layout);
out_ch_count= av_get_channel_layout_nb_channels(out_ch_layout);
av_get_channel_layout_string( in_layout_string, sizeof( in_layout_string), in_ch_count, in_ch_layout);
More information about the ffmpeg-cvslog
mailing list