Re: [FFmpeg-devel] [PATCH 7/9] dct-test: allow comparing x86 simple idcts

2015-10-08 Thread Christophe Gisquet
Hi, 2015-10-08 8:22 GMT+02:00 Christophe Gisquet : > -else if (!strcmp(dct->name, "SIMPLE10-SSE2") || > - !strcmp(dct->name, "SIMPLE10-AVX")) > +else if (strcmp(dct->name, "SIMPLE10-") > 0) Not correct, I'll use strncmp in a later revision of this patch. -- Chris

[FFmpeg-devel] [PATCH 7/9] dct-test: allow comparing x86 simple idcts

2015-10-07 Thread Christophe Gisquet
Currently, no arch-specific implementation of the simple idcts actually exist, only their _put version, and for x86. Therefore, wrap also the C version to allow easier comparison of the generated results. --- libavcodec/dct-test.c | 15 --- 1 file changed, 12 insertions(+), 3 deletions