mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
IDCT works, and ieeetest not complains nicely if attempt to run a test with an unsupported DCT type.
Original commit message from CVS: IDCT works, and ieeetest not complains nicely if attempt to run a test with an unsupported DCT type.
This commit is contained in:
parent
3bcccbf82e
commit
41ad7a209b
1 changed files with 5 additions and 0 deletions
|
@ -82,6 +82,11 @@ main(int argc, char **argv)
|
|||
gst_library_load("gstidct");
|
||||
|
||||
idct = gst_idct_new(method);
|
||||
if (idct == 0) {
|
||||
printf("method not available\n\n\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
dct_init();
|
||||
|
||||
|
|
Loading…
Reference in a new issue