summaryrefslogtreecommitdiffstats
path: root/graphics/libGL/files-old/patch-src__gallium__state_trackers__xvmc__tests__xvmc_bench.c
blob: 367424c73d982f2fffef2a5752d70cd655ab06ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
--- src/gallium/state_trackers/xvmc/tests/xvmc_bench.c.orig 2013-10-05 03:59:22.000000000 +0000
+++ src/gallium/state_trackers/xvmc/tests/xvmc_bench.c  2014-10-16 13:46:30.000000000 +0000
@@ -27,9 +27,10 @@
 
 #include <assert.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
-#include <error.h>
 #include <sys/time.h>
+#include <unistd.h>
 #include "testlib.h"
 
 #define MACROBLOCK_WIDTH       16
@@ -144,23 +145,10 @@
    }
 
    if (fail)
-       error
-       (
-           1, 0,
-           "Bad argument.\n"
-           "\n"
-           "Usage: %s [options]\n"
-           "\t-iw <width>\tInput width\n"
-           "\t-ih <height>\tInput height\n"
-           "\t-ow <width>\tOutput width\n"
-           "\t-oh <height>\tOutput height\n"
-           "\t-p <pipeline>\tPipeline to test\n"
-           "\t-mb <mb type>\tMacroBlock types to use\n"
-           "\t-r <reps>\tRepetitions\n\n"
-           "\tPipeline steps: mc,csc,swap\n"
-           "\tMB types: i,p,b\n",
-           argv[0]
-       );
+   {
+       printf ("error happened\n");
+       exit(1);
+   }
 
    if (config->output_width == 0)
        config->output_width = config->input_width;
@@ -214,7 +202,8 @@
    ))
    {
        XCloseDisplay(display);
-       error(1, 0, "Error, unable to find a good port.\n");
+       printf("Error, unable to find a good port.\n");
+       exit(1);
    }
 
    if (is_overlay)