[svn] / branches / dev-api-4 / xvidcore / examples / xvid_bench.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/examples/xvid_bench.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1053, Mon Jun 9 01:25:19 2003 UTC revision 1122, Wed Aug 13 11:44:02 2003 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC - Unit tests and benches   *  XVID MPEG-4 VIDEO CODEC
4     *  - Unit tests and benches -
5     *
6     *  Copyright(C) 2002 Pascal Massimino <skal@planet-d.net>
7   *   *
8   *      This program is free software; you can redistribute it and/or modify   *      This program is free software; you can redistribute it and/or modify
9   *      it under the terms of the GNU General Public License as published by   *      it under the terms of the GNU General Public License as published by
# Line 14  Line 17 
17   *   *
18   *      You should have received a copy of the GNU General Public License   *      You should have received a copy of the GNU General Public License
19   *      along with this program; if not, write to the Free Software   *      along with this program; if not, write to the Free Software
20   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21     *
22     * $Id: xvid_bench.c,v 1.9.2.4 2003-08-13 11:43:45 edgomez Exp $
23   *   *
24   *************************************************************************/   ****************************************************************************/
25    
26  /************************************************************************  /*****************************************************************************
27   *   *
28   *  'Reference' output is at the end of file.   *  'Reference' output is at the end of file.
29   *  Don't take the checksums and crc too seriouly, they aren't   *  Don't take the checksums and crc too seriouly, they aren't
# Line 27  Line 32 
32   *   compiles with something like:   *   compiles with something like:
33   *   gcc -o xvid_bench xvid_bench.c  -I../src/ -lxvidcore -lm   *   gcc -o xvid_bench xvid_bench.c  -I../src/ -lxvidcore -lm
34   *   *
35   *      History:   ****************************************************************************/
  *  
  *      06.06.2002  initial coding      -Skal-  
  *  
  *************************************************************************/  
36    
37  #include <stdio.h>  #include <stdio.h>
38  #include <stdlib.h>  #include <stdlib.h>
# Line 114  Line 115 
115    
116  CPU cpu_list[] =  CPU cpu_list[] =
117  { { "PLAINC", 0 }  { { "PLAINC", 0 }
118    #ifdef ARCH_IS_IA32
119  , { "MMX   ", XVID_CPU_MMX }  , { "MMX   ", XVID_CPU_MMX }
120  , { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }  , { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }
121  , { "SSE2  ", XVID_CPU_SSE2 | XVID_CPU_MMX }  , { "SSE2  ", XVID_CPU_SSE2 | XVID_CPU_MMX }
122  , { "3DNOW ", XVID_CPU_3DNOW }  , { "3DNOW ", XVID_CPU_3DNOW }
123  , { "3DNOWE", XVID_CPU_3DNOWEXT }  , { "3DNOWE", XVID_CPU_3DNOWEXT }
124  , { "IA64  ", XVID_CPU_IA64 }  #endif
125    //, { "IA64  ", XVID_CPU_IA64 }
126  //, { "TSC   ", XVID_CPU_TSC }  //, { "TSC   ", XVID_CPU_TSC }
127  , { 0, 0 } }    , { 0, 0 } };
128    
129  , cpu_short_list[] =  CPU  cpu_short_list[] =
130  { { "PLAINC", 0 }  { { "PLAINC", 0 }
131    #ifdef ARCH_IS_IA32
132  , { "MMX   ", XVID_CPU_MMX }  , { "MMX   ", XVID_CPU_MMX }
133  //, { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }  //, { "MMXEXT", XVID_CPU_MMXEXT | XVID_CPU_MMX }
134  , { "IA64  ", XVID_CPU_IA64 }  #endif
135  , { 0, 0 } }  //, { "IA64  ", XVID_CPU_IA64 }
136      , { 0, 0 } };
137    
138  , cpu_short_list2[] =  CPU cpu_short_list2[] =
139  { { "PLAINC", 0 }  { { "PLAINC", 0 }
140    #ifdef ARCH_IS_IA32
141  , { "MMX   ", XVID_CPU_MMX }  , { "MMX   ", XVID_CPU_MMX }
142  , { "SSE2  ", XVID_CPU_SSE2 | XVID_CPU_MMX }  , { "SSE2  ", XVID_CPU_SSE2 | XVID_CPU_MMX }
143    #endif
144  , { 0, 0 } };  , { 0, 0 } };
145    
146    
147  int init_cpu(CPU *cpu)  int init_cpu(CPU *cpu)
148  {  {
149    int xerr, cpu_type;    int xerr, cpu_type;
150    XVID_INIT_PARAM xinit;          xvid_gbl_init_t xinit;
151    
152    #ifdef ARCH_IS_IA32
153    cpu_type = check_cpu_features() & cpu->cpu;    cpu_type = check_cpu_features() & cpu->cpu;
154    #else
155            cpu_type = XVID_CPU_ASM;
156    #endif
157            memset(&xinit, 0, sizeof(xinit));
158    xinit.cpu_flags = cpu_type | XVID_CPU_FORCE;    xinit.cpu_flags = cpu_type | XVID_CPU_FORCE;
159    /* xinit.cpu_flags = XVID_CPU_MMX | XVID_CPU_FORCE; */          xinit.version = XVID_VERSION;
160    xerr = xvid_init(NULL, 0, &xinit, NULL);          xerr = xvid_global(NULL, 0, &xinit, NULL);
161    if (cpu->cpu>0 && (cpu_type==0 || xerr!=XVID_ERR_OK)) {          if (cpu->cpu>0 && (cpu_type==0 || xerr==XVID_ERR_FAIL)) {
162      printf( "%s - skipped...\n", cpu->name );      printf( "%s - skipped...\n", cpu->name );
163      return 0;      return 0;
164    }    }
# Line 1041  Line 1053 
1053    FILE *f = 0;    FILE *f = 0;
1054    void *dechandle = 0;    void *dechandle = 0;
1055    int xerr;    int xerr;
1056          XVID_INIT_PARAM xinit;          xvid_gbl_init_t xinit;
1057          XVID_DEC_PARAM xparam;          xvid_dec_create_t xparam;
1058          XVID_DEC_FRAME xframe;          xvid_dec_frame_t xframe;
1059          double t = 0.;          double t = 0.;
1060          int nb = 0;          int nb = 0;
1061    uint8_t *buf = 0;    uint8_t *buf = 0;
# Line 1051  Line 1063 
1063    int buf_size, pos;    int buf_size, pos;
1064    uint32_t chksum = 0;    uint32_t chksum = 0;
1065    
1066            memset(&xinit, 0, sizeof(xinit));
1067          xinit.cpu_flags = XVID_CPU_MMX | XVID_CPU_FORCE;          xinit.cpu_flags = XVID_CPU_MMX | XVID_CPU_FORCE;
1068          xvid_init(NULL, 0, &xinit, NULL);          xinit.version = XVID_VERSION;
1069          printf( "API version: %d, core build:%d\n", xinit.api_version, xinit.core_build);          xvid_global(NULL, 0, &xinit, NULL);
   
1070    
1071            memset(&xparam, 0, sizeof(xparam));
1072          xparam.width = width;          xparam.width = width;
1073          xparam.height = height;          xparam.height = height;
1074            xparam.version = XVID_VERSION;
1075          xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);          xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);
1076          if (xerr!=XVID_ERR_OK) {          if (xerr==XVID_ERR_FAIL) {
1077            printf("can't init decoder (err=%d)\n", xerr);            printf("can't init decoder (err=%d)\n", xerr);
1078            return;            return;
1079          }          }
# Line 1096  Line 1110 
1110    pos = 0;    pos = 0;
1111    t = -gettime_usec();    t = -gettime_usec();
1112    while(1) {    while(1) {
1113                    memset(&xframe, 0, sizeof(xframe));
1114                    xframe.version = XVID_VERSION;
1115      xframe.bitstream = buf + pos;      xframe.bitstream = buf + pos;
1116      xframe.length = buf_size - pos;      xframe.length = buf_size - pos;
1117      xframe.image = rgb_out;                  xframe.output.plane[0] = rgb_out;
1118      xframe.stride = width;                  xframe.output.stride[0] = width;
1119      xframe.colorspace = XVID_CSP_RGB24;                  xframe.output.csp = XVID_CSP_BGR;
1120      xerr = xvid_decore(dechandle, XVID_DEC_DECODE, &xframe, 0);      xerr = xvid_decore(dechandle, XVID_DEC_DECODE, &xframe, 0);
1121      nb++;      nb++;
1122      pos += xframe.length;      pos += xframe.length;
# Line 1111  Line 1127 
1127      }      }
1128      if (pos==buf_size)      if (pos==buf_size)
1129        break;        break;
1130      if (xerr!=XVID_ERR_OK) {                  if (xerr==XVID_ERR_FAIL) {
1131            printf("decoding failed for frame #%d (err=%d)!\n", nb, xerr);            printf("decoding failed for frame #%d (err=%d)!\n", nb, xerr);
1132            break;            break;
1133          }          }
# Line 1127  Line 1143 
1143    if (buf!=0) free(buf);    if (buf!=0) free(buf);
1144    if (dechandle!=0) {    if (dechandle!=0) {
1145      xerr= xvid_decore(dechandle, XVID_DEC_DESTROY, NULL, NULL);      xerr= xvid_decore(dechandle, XVID_DEC_DESTROY, NULL, NULL);
1146      if (xerr!=XVID_ERR_OK)                  if (xerr==XVID_ERR_FAIL)
1147              printf("destroy-decoder failed (err=%d)!\n", xerr);              printf("destroy-decoder failed (err=%d)!\n", xerr);
1148    }    }
1149    if (f!=0) fclose(f);    if (f!=0) fclose(f);

Legend:
Removed from v.1053  
changed lines
  Added in v.1122

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4