[svn] / trunk / xvidcore / examples / xvid_stat.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/examples/xvid_stat.c

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

revision 151, Mon Apr 29 07:23:16 2002 UTC revision 550, Fri Sep 27 20:58:02 2002 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC - Example for encoding and decoding   *  XVID MPEG-4 VIDEO CODEC
4     *  - Console based test application  -
5     *
6     *  Copyright(C) 2002 Christoph Lampert
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_stat.c,v 1.13 2002-09-27 20:58:02 edgomez Exp $
   
 /************************************************************************  
23   *   *
24   *  PSNR and Speed test routine for XviD using the XviD-API   ****************************************************************************/
25   *  (C) Christoph Lampert, 2002/04/13  
26    /*****************************************************************************
27     *  Application notes :
28   *   *
29   *  A sequence of YUV pics in PGM file format is encoded and decoded   *  A sequence of YUV pics in PGM file format is encoded and decoded
30   *  The speed is measured and PSNR of decoded picture is calculated.   *  The speed is measured and PSNR of decoded picture is calculated.
31   *   *
32   *  The program is plain C and needs no libraries except for libxvidcore,   *  The program is plain C and needs no libraries except for libxvidcore,
33   *  and maths-lib ,so with UN*X you simply compile by   *  and maths-lib.
  *  
  *   gcc xvid_stat.c -lxvidcore -lm -o xvid_stat  
  *  
  *  Run without or with illegal parameters, then PGM input input is read  
  *  from stdin.  
  *  
  *  Parameters are: xvid_stat XDIM YDIM QUALITY BITRATE/QUANTIZER FRAMERATE  
  *  
  *  if XDIM or YDIM are illegal (e.g. 0), they are ignored and input is  
  *  considered to be PGM. Otherwise (X and Y both greater than 0) raw YUV  
  *  is expected, as e.g. the standard MPEG test-files, like "foreman"  
  *  
  *  0 <= QUALITY <= 6  (default 5)  
34   *   *
35   *  BITRATE is in kbps (default 900),   * Usage : xvid_stat [OPTIONS]
36   *      if BITRATE<32, then value is taken is fixed QUANTIZER   * Options :
37     *  -w integer     : frame width ([1.2048])
38     *  -h integer     : frame height ([1.2048])
39     *  -b integer     : target bitrate (>0 | default=900kbit)
40     *  -f float       : target framerate (>0)
41     *  -i string      : input filename (default=stdin)
42     *  -t integer     : input data type (yuv=0, pgm=1)
43     *  -n integer     : number of frames to encode
44     *  -q integer     : quality ([0..5])
45     *  -d boolean     : save decoder output (0 False*, !=0 True)
46     *  -m boolean     : save mpeg4 raw stream (0 False*, !=0 True)
47     *  -help          : prints this help message
48     *  -quant integer : fixed quantizer (disables -b setting)
49     *  (* means default)
50     *
51     *  An input file named "stdin" is treated as standard input stream.
52     *
53     *
54     *  PGM input must be in a very specific format, basically it pgm file must
55     *  contain Y plane first just like usual P5 pgm files, and then U and V
56     *  planes are stored just after Y plane so y dimension is y*3/2 in reality
57   *   *
58   *  FRAMERATE is a float (with or without decimal dot), default is 25.00   *  See read_pgmheader for more details.
59   *   *
60   *  input/output and m4v-output is saved, if corresponding flags are set   *  Such a PGM file can be generated from MPEG2 by # mpeg2dec -o pgmpipe
61   *   *
62   *  PGM input must in a very specific format, see read_pgmheader   ****************************************************************************/
  *  it can be generated e.g. from MPEG2 by    mpeg2dec -o pgmpipe  
  *  
  ************************************************************************/  
   
 /************************************************************************  
  *  
  *  For EXAMPLES how to use this, see the seperate file xvid_stat.examples  
  *  
  ************************************************************************/  
63    
64  #include <stdio.h>  #include <stdio.h>
65  #include <stdlib.h>  #include <stdlib.h>
66  #include <math.h>               // needed for log10  #include <string.h>
67  #include <sys/time.h>           // only needed for gettimeofday  #include <math.h>
68    #ifndef _MSC_VER
69    #include <sys/time.h>
70    #else
71    #include <time.h>
72    #endif
73    
74    #include "xvid.h"
75    
76    /****************************************************************************
77     *                               Prototypes
78     ***************************************************************************/
79    
80    /* Prints program usage message */
81    static void usage();
82    
83    /* Statistical functions */
84    static double msecond();
85    static double absdistq(int x, int y,
86                                               unsigned char* buf1, int stride1,
87                                               unsigned char* buf2, int stride2);
88    static double PSNR(int x, int y,
89                                       unsigned char* buf1, int stride1,
90                                       unsigned char* buf2, int stride2);
91    
92    /* PGM related functions */
93    static int read_pgmheader(FILE* handle);
94    static int read_pgmdata(FILE* handle, unsigned char *image);
95    static int read_yuvdata(FILE* handle, unsigned char *image);
96    static int write_pgm(char *filename, unsigned char *image);
97    
98    /* Encoder related functions */
99    static int enc_init(int use_assembler);
100    static int enc_stop();
101    static int enc_main(unsigned char* image, unsigned char* bitstream,
102                                            int *streamlength, int* frametype);
103    
104    /* Decoder related functions */
105    static int dec_stop();
106    static int dec_main(unsigned char *m4v_buffer, unsigned char *out_buffer,
107                                            int m4v_size);
108    static int dec_init(int use_assembler);
109    
110    /*****************************************************************************
111     *                            Quality presets
112     ****************************************************************************/
113    
114  #include "xvid.h"               /* comes with XviD */  static int const motion_presets[7] = {
   
 int motion_presets[7] = {  
115          0,                                                              // Q 0          0,                                                              // Q 0
116          PMV_EARLYSTOP16,                                                // Q 1          PMV_EARLYSTOP16,                                                // Q 1
117          PMV_EARLYSTOP16,                                                // Q 2          PMV_EARLYSTOP16,                                                // Q 2
118          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 3          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 3
119          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 4          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 4
120          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8          // Q 5          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8 |  // Q 5
121                          | PMV_HALFPELREFINE8,          PMV_HALFPELREFINE8,
122          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EXTSEARCH16         // Q 6          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EXTSEARCH16 | // Q 6
123                          | PMV_USESQUARES16 | PMV_EARLYSTOP8 | PMV_HALFPELREFINE8          PMV_USESQUARES16 | PMV_EARLYSTOP8 | PMV_HALFPELREFINE8
124          };          };
125    
126  int general_presets[7] = {  static int const general_presets[7] = {
127          XVID_H263QUANT, /* or use XVID_MPEGQUANT */             // Q 0          XVID_H263QUANT,                               // Q 0
128          XVID_MPEGQUANT,                                         // Q 1          XVID_MPEGQUANT,                                         // Q 1
129          XVID_H263QUANT,                                // Q 2          XVID_H263QUANT,                                // Q 2
130          XVID_H263QUANT | XVID_HALFPEL,                          // Q 3          XVID_H263QUANT | XVID_HALFPEL,                          // Q 3
131          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 4          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 4
132          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 5          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 5
133          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V };         // Q 6          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V  // Q 6
134    };
   
 /* my default values for encoding */  
   
 #define ABS_MAXFRAMENR 9999               // max number of frames  
   
 int ARG_BITRATE=900;  
 int ARG_QUANTI=0;  
   
 int ARG_QUALITY =6;  
 int ARG_MINQUANT=1;  
 int ARG_MAXQUANT=31;  
 float ARG_FRAMERATE=25.00;  
135    
 int ARG_MAXFRAMENR=ABS_MAXFRAMENR;  
136    
137    /*****************************************************************************
138     *                     Command line global variables
139     ****************************************************************************/
140    
141    /* Maximum number of frames to encode */
142    #define ABS_MAXFRAMENR 9999
143    
144    static int   ARG_BITRATE = 900;
145    static int   ARG_QUANTI = 0;
146    static int   ARG_QUALITY = 6;
147    static int   ARG_MINQUANT = 1;
148    static int   ARG_MAXQUANT = 31;
149    static float ARG_FRAMERATE = 25.00f;
150    static int   ARG_MAXFRAMENR = ABS_MAXFRAMENR;
151    static char *ARG_INPUTFILE = NULL;
152    static int   ARG_INPUTTYPE = 0;
153    static int   ARG_SAVEDECOUTPUT = 0;
154    static int   ARG_SAVEMPEGSTREAM = 0;
155    static int   XDIM = 0;
156    static int   YDIM = 0;
157    #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
158    
159  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )
160  #define SMALL_EPS 1e-10  #define SMALL_EPS 1e-10
161    
162    /****************************************************************************
163     *                     Nasty global vars ;-)
164     ***************************************************************************/
165    
166    static int i,filenr = 0;
167    static int save_ref_flag = 0;
168    
169    /* the path where to save output */
170    static char filepath[256] = "./";
171    
172    /* Internal structures (handles) for encoding and decoding */
173    static void *enc_handle = NULL;
174    static void *dec_handle = NULL;
175    
176    /*****************************************************************************
177     *                               Main program
178     ****************************************************************************/
179    
180  /* these are global variables. Not very elegant, but easy, and this is an easy program */  int main(int argc, char *argv[])
181    {
 int XDIM=0;  
 int YDIM=0;     // will be set when reading first image  
 int i,filenr = 0;  
182    
183  int save_m4v_flag = 0;          // save MPEG4-bytestream?          unsigned char *divx_buffer = NULL;
184  int save_dec_flag = 1;          // save decompressed bytestream?          unsigned char *in_buffer = NULL;
185  int save_ref_flag = 0;          //          unsigned char *out_buffer = NULL;
186    
187  int pgmflag = 0;                // a flag, if input is in PGM format, overwritten in init-phase          double enctime,dectime;
188  char filepath[256] = "./";      // the path where to save output          double totalenctime=0.;
189            double totaldectime=0.;
190    
191  void *enc_handle = NULL;                // internal structures (handles) for encoding          long totalsize=0;
192  void *dec_handle = NULL;                // and decoding          int status;
193    
194            int m4v_size;
195            int frame_type[ABS_MAXFRAMENR];
196            int Iframes=0, Pframes=0, use_assembler=0;
197            double framepsnr[ABS_MAXFRAMENR];
198    
199  /*********************************************************************/          double Ipsnr=0.,Imaxpsnr=0.,Iminpsnr=999.,Ivarpsnr=0.;
200  /*                     "statistical" functions                       */          double Ppsnr=0.,Pmaxpsnr=0.,Pminpsnr=999.,Pvarpsnr=0.;
201  /*                                                                   */          double Bpsnr=0.,Bmaxpsnr=0.,Bminpsnr=999.,Bvarpsnr=0.;
 /*  these are not needed for encoding or decoding, but for measuring */  
 /*  time and quality, there in nothing specific to XviD in these     */  
 /*                                                                   */  
 /*********************************************************************/  
202    
203  double msecond()          char filename[256];
 /* return the current time in seconds(!)  */  
 {  
         struct timeval  tv;  
         gettimeofday(&tv, 0);  
         return tv.tv_sec + tv.tv_usec * 1.0e-6;  
 }  
204    
205            FILE *filehandle;
206            FILE *in_file = stdin;
207    
208            printf("xvid_stat - XviD core library test program ");
209            printf("written by Christoph Lampert 2002\n\n");
210    
211  double absdistq(int x,int y, unsigned char* buf1, int stride1, unsigned char* buf2, int stride2)  /*****************************************************************************
212  /* returns the sum of squared distances (SSD) between two images of dimensions x times y */   *                            Command line parsing
213  {   ****************************************************************************/
         double dist=0.;  
         int i,j,val;  
214    
215          for (i=0;i<y;i++)          for (i=1; i< argc; i++) {
         {  
                 val=0;  
                 for (j=0;j<x;j++)  
                         val+= ((int)buf1[j]-(int)buf2[j])*((int)buf1[j]-(int)buf2[j]);  
216    
217                  dist += (double)val;                  if (strcmp("-asm", argv[i]) == 0 ) {
218                  buf1 += stride1;                          use_assembler = 1;
                 buf2 += stride2;  
219          }          }
220     return dist/(x*y);                  else if (strcmp("-w", argv[i]) == 0 && i < argc - 1 ) {
221                            i++;
222                            XDIM = atoi(argv[i]);
223  }  }
224                    else if (strcmp("-h", argv[i]) == 0 && i < argc - 1 ) {
225                            i++;
226  double PSNR(int x,int y, unsigned char* buf1, int stride1, unsigned char* buf2, int stride2 )                          YDIM = atoi(argv[i]);
 /* return the PSNR between to images                                               */  
 /* this is a logarithmic measure for "quality" from the world of signal processing */  
 /* if you don't know what it is, simply accept that higher values are better       */  
 {  
    return 10*(log10(255*255)-log10( absdistq(x, y, buf1, stride1, buf2, stride2) ));  
227  }  }
228                    else if (strcmp("-b", argv[i]) == 0 && i < argc - 1 ) {
229                            i++;
230  /*********************************************************************/                          ARG_BITRATE = atoi(argv[i]);
 /*                    input and output functions                     */  
 /*                                                                   */  
 /* the are small and simple routines to read and write PGM and YUV   */  
 /* image. It's just for convenience, again nothing specific to XviD  */  
 /*                                                                   */  
 /*********************************************************************/  
   
 int read_pgmheader(FILE* handle)  
 {  
         int bytes,xsize,ysize,depth;  
         char dummy[2];  
   
         bytes = fread(dummy,1,2,handle);  
   
         if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))  
                 return 1;  
         fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);  
         if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )  
         {  
                 fprintf(stderr,"%d %d %d\n",xsize,ysize,depth);  
                 return 2;  
231          }          }
232          if ( (XDIM==0) || (YDIM==0) )                  else if (strcmp("-q", argv[i]) == 0 && i < argc - 1 ) {
233          {       XDIM=xsize;                          i++;
234                  YDIM=ysize;                          ARG_QUALITY = atoi(argv[i]);
235          }          }
236                    else if (strcmp("-f", argv[i]) == 0 && i < argc - 1 ) {
237          return 0;                          i++;
238                            ARG_FRAMERATE = (float)atof(argv[i]);
239  }  }
240                    else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
241  int read_pgmdata(FILE* handle, unsigned char *image)                          i++;
242  {                          ARG_INPUTFILE = argv[i];
         int i,status;  
         char dummy;  
   
         unsigned char* buff1_ptr2 = image + XDIM*YDIM;  
         unsigned char* buff1_ptr3 = image + XDIM*YDIM + XDIM/2*YDIM/2;  
   
         fread(image,XDIM*YDIM,1,stdin); // read Y component of picture  
   
         for (i=0;i<YDIM/2;i++)  
         {  
                 fread(buff1_ptr2,XDIM/2,1,stdin);        // read U  
                 buff1_ptr2 += XDIM/2;  
                 fread(buff1_ptr3,XDIM/2,1,stdin);        // read V  
                 buff1_ptr3 += XDIM/2;  
243          }          }
244          fread(&dummy,1,1,handle);       //  I don't know why, but this seems needed                  else if (strcmp("-t", argv[i]) == 0 && i < argc - 1 ) {
245          return 0;                          i++;
246                            ARG_INPUTTYPE = atoi(argv[i]);
247  }  }
248                    else if(strcmp("-n", argv[i]) == 0 && i < argc - 1 ) {
249  int read_yuvdata(FILE* handle, unsigned char *image)                          i++;
250  {       int i;                          ARG_MAXFRAMENR  = atoi(argv[i]);
         char dummy;  
   
         unsigned char* buff1_ptr2 = image + XDIM*YDIM;  
         unsigned char* buff1_ptr3 = image + XDIM*YDIM + XDIM/2*YDIM/2;  
   
         if (fread(image,XDIM,YDIM*3/2,stdin) != YDIM*3/2)  
                 return 1;  
         else  
                 return 0;  
251  }  }
252                    else if (strcmp("-quant", argv[i]) == 0 && i < argc - 1 ) {
253  int write_pgm(char *filename, unsigned char *image)                          i++;
254  {                          ARG_QUANTI = atoi(argv[i]);
         FILE *filehandle;  
         filehandle=fopen(filename,"wb");  
         if (filehandle)  
         {  
                 fprintf(filehandle,"P5\n\n");           //  
                 fprintf(filehandle,"%d %d 255\n",XDIM,YDIM*3/2);  
                 fwrite(image,XDIM,YDIM*3/2,filehandle);  
                 fclose(filehandle);  
                 return 0;  
255          }          }
256          else                  else if (strcmp("-d", argv[i]) == 0 && i < argc - 1 ) {
257                  return 1;                          i++;
258                            ARG_SAVEDECOUTPUT = atoi(argv[i]);
259  }  }
260                    else if (strcmp("-m", argv[i]) == 0 && i < argc - 1 ) {
261                            i++;
262                            ARG_SAVEMPEGSTREAM = atoi(argv[i]);
 /*********************************************************************/  
 /* Routines for encoding: init encoder, frame step, release encoder  */  
 /*********************************************************************/  
   
 #define FRAMERATE_INCR 1001  
   
   
 int enc_init()  
 {       /* initialize encoder for first use, pass all needed parameters to the codec */  
         int xerr;  
   
         XVID_INIT_PARAM xinit;  
         XVID_ENC_PARAM xparam;  
   
         xinit.cpu_flags = XVID_CPU_FORCE;  
         xvid_init(NULL, 0, &xinit, NULL);  
   
         xparam.width = XDIM;  
         xparam.height = YDIM;  
         if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS)  
         {  
                 xparam.fincr = 1;  
                 xparam.fbase = (int)ARG_FRAMERATE;  
263          }          }
264          else                  else if (strcmp("-help", argv[i])) {
265          {                          usage();
266                  xparam.fincr = FRAMERATE_INCR;                          return(0);
                 xparam.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);  
267          }          }
268          xparam.rc_reaction_delay_factor = 16;                  else {
269          xparam.rc_averaging_period = 100;                          usage();
270          xparam.rc_buffer = 10;                          exit(-1);
         xparam.rc_bitrate = ARG_BITRATE*1000;  
         xparam.min_quantizer = 1;  
         xparam.max_quantizer = 31;  
         xparam.max_key_interval = (int)ARG_FRAMERATE*10;  
   
                 /* I use a small value here, since will not encode whole movies, but short clips */  
   
         xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xparam, NULL);  
         enc_handle=xparam.handle;  
   
         return xerr;  
271  }  }
272    
 int  enc_stop()  
 {       int xerr;  
   
         xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);  
         return xerr;  
273  }  }
274    
275  int  enc_main(unsigned char* image, unsigned char* bitstream, int *streamlength, int* frametype)  /*****************************************************************************
276  {       int xerr;   *                            Arguments checking
277     ****************************************************************************/
         XVID_ENC_FRAME xframe;  
         XVID_ENC_STATS xstats;  
   
         xframe.bitstream = bitstream;  
         xframe.length = -1;     // this is written by the routine  
   
         xframe.image = image;  
         xframe.colorspace = XVID_CSP_YV12;      // defined in <xvid.h>  
   
         xframe.intra = -1; // let the codec decide between I-frame (1) and P-frame (0)  
   
         xframe.quant = ARG_QUANTI;      // is quant != 0, use a fixed quant (and ignore bitrate)  
   
         xframe.motion = motion_presets[ARG_QUALITY];  
         xframe.general = general_presets[ARG_QUALITY];  
         xframe.quant_intra_matrix = xframe.quant_inter_matrix = NULL;  
   
         xerr = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xframe, &xstats);  
   
 /*              enc_result->is_key_frame = xframe.intra;  
                 enc_result->quantizer = xframe.quant;  
                 enc_result->total_bits = xframe.length * 8;  
                 enc_result->motion_bits = xstats.hlength * 8;  
                 enc_result->texture_bits = enc_result->total_bits - enc_result->motion_bits;  
 */  
   
 /*  This is statictical data, e.g. for 2-pass.  
     If you are not interested in any of this, you can use NULL instead of &xstats  
 */  
         *frametype = xframe.intra;  
         *streamlength = xframe.length;  
278    
279          return xerr;          if (XDIM <= 0 || XDIM >= 2048 || YDIM <=0 || YDIM >= 2048 ) {
280                    fprintf(stderr,
281                                    "Trying to retreive width and height from PGM header\n",
282                                    XDIM,
283                                    YDIM);
284                    ARG_INPUTTYPE = 1; /* pgm */
285  }  }
286    
287            if ( ARG_QUALITY < 0 || ARG_QUALITY > 6) {
288  /*********************************************************************/                  fprintf(stderr,"Wrong Quality\n");
289  /* Routines for decoding: init encoder, frame step, release encoder  */                  return -1;
 /*********************************************************************/  
   
 int dec_init()  /* init decoder before first run */  
 {  
         int xerr;  
   
         XVID_INIT_PARAM xinit;  
         XVID_DEC_PARAM xparam;  
   
         xinit.cpu_flags = 0;  
         xvid_init(NULL, 0, &xinit, NULL);  
         xparam.width = XDIM;  
         xparam.height = YDIM;  
   
         xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);  
         dec_handle = xparam.handle;  
   
         return xerr;  
290  }  }
291    
292  int dec_main(unsigned char *m4v_buffer, unsigned char *out_buffer, int m4v_size)          if ( ARG_BITRATE <= 0 && ARG_QUANTI == 0) {
293  {       /* decode one frame  */                  fprintf(stderr,"Wrong Bitrate\n");
294                    return -1;
         int xerr;  
         XVID_DEC_FRAME xframe;  
   
         xframe.bitstream = m4v_buffer;  
         xframe.length = m4v_size;  
         xframe.image = out_buffer;  
         xframe.stride = XDIM;  
         xframe.colorspace = XVID_CSP_YV12;             // XVID_CSP_USER is fastest (no memcopy involved)  
   
         xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, NULL);  
   
         return xerr;  
295  }  }
296    
297  int dec_stop()  /* close decoder to release resources */          if ( ARG_FRAMERATE <= 0) {
298  {                  fprintf(stderr,"Wrong Fraterate %s \n",argv[5]);
299          int xerr;                  return -1;
         xerr = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);  
   
         return xerr;  
300  }  }
301    
302            if ( ARG_MAXFRAMENR <= 0) {
303  /*********************************************************************/                  fprintf(stderr,"Wrong number of frames\n");
304  /*                          Main program                             */                  return -1;
 /*********************************************************************/  
   
 int main(int argc, char *argv[])  
 {  
   unsigned char *divx_buffer = NULL;  
   unsigned char *in_buffer = NULL;  
   unsigned char *out_buffer = NULL;  
   
   double enctime,dectime;  
   double totalenctime=0.;  
   double totaldectime=0.;  
   
   long totalsize=0;  
   int status;  
   
   int m4v_size;  
   int frame_type[ABS_MAXFRAMENR];  
   int Iframes=0, Pframes=0, Bframes=0;  
   double framepsnr[ABS_MAXFRAMENR];  
   
   double Ipsnr=0.,Imaxpsnr=0.,Iminpsnr=999.,Ivarpsnr=0.;  
   double Ppsnr=0.,Pmaxpsnr=0.,Pminpsnr=999.,Pvarpsnr=0.;  
   double Bpsnr=0.,Bmaxpsnr=0.,Bminpsnr=999.,Bvarpsnr=0.;  
   
   char filename[256];  
   
   FILE *filehandle;  
   
 /* read YUV in pgm format from stdin */  
   if (!pgmflag)  
   {  
         pgmflag = 1;  
   
         if (argc>=3)  
         {       XDIM = atoi(argv[1]);  
                 YDIM = atoi(argv[2]);  
                 if ( (XDIM <= 0) || (XDIM >= 2048) || (YDIM <=0) || (YDIM >= 2048) )  
                 {       fprintf(stderr,"Wrong frames size %d %d, trying PGM \n",XDIM, YDIM);  
                 }  
                 else  
                 {  
                         YDIM = YDIM*3/2; /* for YUV */  
                         pgmflag = 0;  
                 }  
         }  
305    }    }
306    
307    if (pgmflag)          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
308    {     if (read_pgmheader(stdin))                  in_file = stdin;
             {  
               printf("Wrong input format, I want YUV encapsulated in PGM\n");  
               return 1;  
309              }              }
310            else {
311    
312                    in_file = fopen(ARG_INPUTFILE, "rb");
313                    if (in_file == NULL) {
314                            fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
315                            return -1;
316    }    }
   if (argc>=4)  
   {     ARG_QUALITY = atoi(argv[3]);  
         if ( (ARG_QUALITY < 0) || (ARG_QUALITY > 6) )  
                 { fprintf(stderr,"Wrong Quality\n"); return -1; }  
         else  
                   printf("Quality %d\n",ARG_QUALITY);  
   }  
   if (argc>=5)  
   {     ARG_BITRATE = atoi(argv[4]);  
         if ( (ARG_BITRATE <= 0) )  
                 { fprintf(stderr,"Wrong Bitrate\n"); return -1; }  
         if ( (ARG_BITRATE <= 32) )  
                 { ARG_QUANTI = ARG_BITRATE;  
                   ARG_BITRATE=0;  
                   printf("Quantizer %d\n",ARG_QUANTI);  
                 }  
         else  
                   printf("Bitrate %d kbps\n",ARG_BITRATE);  
   }  
   if (argc>=6)  
   {     ARG_FRAMERATE = (float)atof(argv[5]);  
         if ( (ARG_FRAMERATE <= 0) )  
                 { fprintf(stderr,"Wrong Fraterate %s \n",argv[5]); return -1; }  
         printf("Framerate %6.3f fps\n",ARG_FRAMERATE);  
317    }    }
318    
319    if (argc>=7)          if (ARG_INPUTTYPE) {
320    {     ARG_MAXFRAMENR = atoi(argv[6]);                  if (read_pgmheader(in_file)) {
321          if ( (ARG_MAXFRAMENR <= 0) )                          fprintf(stderr, "Wrong input format, I want YUV encapsulated in PGM\n");
322           { fprintf(stderr,"Wrong number of frames\n"); return -1; }                          return -1;
323          printf("max. Framenr. %d\n",ARG_MAXFRAMENR);                  }
324    }    }
325    
326  /* now we know the sizes, so allocate memory */  /* now we know the sizes, so allocate memory */
327    
328    in_buffer = (unsigned char *) malloc(XDIM*YDIM);          in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM));
329    if (!in_buffer)    if (!in_buffer)
330      goto free_all_memory;       // goto is one of the most underestimated instructions in C !!!                  goto free_all_memory;
331    
332    divx_buffer = (unsigned char *) malloc(XDIM*YDIM*2);  // this should really be enough memory!          /* this should really be enough memory ! */
333            divx_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM)*2);
334    if (!divx_buffer)    if (!divx_buffer)
335      goto free_all_memory;      goto free_all_memory;
336    
337    YDIM = YDIM*2/3; // PGM is YUV 4:2:0 format, so real image height is *2/3 of PGM picture          out_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM)*4);
   
   out_buffer = (unsigned char *) malloc(XDIM*YDIM*4);  
338    if (!out_buffer)    if (!out_buffer)
339      goto free_all_memory;      goto free_all_memory;
340    
341    
342  /*********************************************************************/  /*****************************************************************************
343  /*                         XviD PART  Start                          */   *                            XviD PART  Start
344  /*********************************************************************/   ****************************************************************************/
345    
346    
347          status = enc_init();          status = enc_init(use_assembler);
348          if (status)          if (status)
349          {          {
350                  printf("Encore INIT problem, return value %d\n", status);                  fprintf(stderr, "Encore INIT problem, return value %d\n", status);
351                  goto release_all;                  goto release_all;
352          }          }
353    
354          status = dec_init();          status = dec_init(use_assembler);
355          if (status)          if (status)
356          {          {
357                  printf("Decore INIT problem, return value %d\n", status);                  fprintf(stderr, "Decore INIT problem, return value %d\n", status);
358                  goto release_all;                  goto release_all;
359          }          }
360    
361    
362  /*********************************************************************/  /*****************************************************************************
363  /*                               Main loop                           */   *                            Main loop
364  /*********************************************************************/   ****************************************************************************/
365    
366    do          do {
367      {  
368          if (pgmflag)                  if (ARG_INPUTTYPE)
369                status = read_pgmdata(stdin, in_buffer);  // read PGM data (YUV-format)                          status = read_pgmdata(in_file, in_buffer);      // read PGM data (YUV-format)
370          else          else
371                status = read_yuvdata(stdin, in_buffer);  // read raw data (YUV-format)                          status = read_yuvdata(in_file, in_buffer);      // read raw data (YUV-format)
372    
373        if (status)        if (status)
374          {          {
375            // Couldn't read image, most likely end-of-file                          /* Couldn't read image, most likely end-of-file */
376            continue;            continue;
377          }          }
378    
# Line 545  Line 384 
384          }          }
385    
386    
387  /*********************************************************************/  /*****************************************************************************
388  /*               analyse this frame before encoding                  */   *                       Analyse this frame before encoding
389  /*********************************************************************/   ****************************************************************************/
390    
391  //      nothing is done here at the moment, but you could e.g. create  /*
392  //      histograms or measure entropy or apply preprocessing filters...   *      nothing is done here at the moment, but you could e.g. create
393     *      histograms or measure entropy or apply preprocessing filters...
394  /*********************************************************************/   */
395  /*               encode and decode this frame                        */  
396  /*********************************************************************/  /*****************************************************************************
397     *                       Encode and decode this frame
398     ****************************************************************************/
399    
400          enctime = -msecond();                  enctime = msecond();
401          status = enc_main(in_buffer, divx_buffer, &m4v_size, &frame_type[filenr]);          status = enc_main(in_buffer, divx_buffer, &m4v_size, &frame_type[filenr]);
402          enctime += msecond();                  enctime = msecond() - enctime;
403    
404          totalenctime += enctime;          totalenctime += enctime;
405          totalsize += m4v_size;          totalsize += m4v_size;
406    
407          printf("Frame %5d: intra %d, enctime =%6.1f ms length=%7d bytes ",                  printf("Frame %5d: intra %1d, enctime=%6.1f ms, size=%6d bytes ",
408                   filenr, frame_type[filenr], enctime*1000, m4v_size);                             (int)filenr, (int)frame_type[filenr], (float)enctime, (int)m4v_size);
409    
410          if (save_m4v_flag)                  if (ARG_SAVEMPEGSTREAM)
411          {          {
412                  sprintf(filename, "%sframe%05d.m4v", filepath, filenr);                  sprintf(filename, "%sframe%05d.m4v", filepath, filenr);
413                  filehandle = fopen(filename, "wb");                  filehandle = fopen(filename, "wb");
# Line 574  Line 415 
415                  fclose(filehandle);                  fclose(filehandle);
416          }          }
417    
418          dectime = -msecond();                  dectime = msecond();
419          status = dec_main(divx_buffer, out_buffer, m4v_size);          status = dec_main(divx_buffer, out_buffer, m4v_size);
420          dectime += msecond();                  dectime = msecond() - dectime;
421    
422          totaldectime += dectime;          totaldectime += dectime;
423    
424    
425  /*********************************************************************/  /*****************************************************************************
426  /*        analyse the decoded frame and compare to original          */   *             Analyse the decoded frame and compare to original
427  /*********************************************************************/   ****************************************************************************/
428    
429          framepsnr[filenr] = PSNR(XDIM,YDIM, in_buffer, XDIM, out_buffer, XDIM );                  framepsnr[filenr] = PSNR(XDIM,YDIM*3/2, in_buffer, XDIM, out_buffer, XDIM);
430    
431          printf("dectime =%6.1f ms PSNR %5.2f\n",dectime*1000, framepsnr[filenr]);                  printf("dectime =%6.1f ms PSNR %5.2f\n",dectime, framepsnr[filenr]);
432    
433          if (save_dec_flag)                  if (ARG_SAVEDECOUTPUT)
434          {          {
435                  sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                  sprintf(filename, "%sdec%05d.pgm", filepath, filenr);
436                  write_pgm(filename,out_buffer);                  write_pgm(filename,out_buffer);
437          }          }
438    
439          if (pgmflag)                  /* Read the header if it's pgm stream */
440                  status = read_pgmheader(stdin);         // because if this was the last PGM, stop now                  if (ARG_INPUTTYPE)
441                            status = read_pgmheader(in_file);
442    
443          filenr++;          filenr++;
444    
# Line 604  Line 446 
446    
447    
448    
449  /*********************************************************************/  /*****************************************************************************
450  /*     calculate totals and averages for output, print results       */   *         Calculate totals and averages for output, print results
451  /*********************************************************************/   ****************************************************************************/
452    
453          totalsize    /= filenr;          totalsize    /= filenr;
454          totalenctime /= filenr;          totalenctime /= filenr;
# Line 624  Line 466 
466                          Iframes++;                          Iframes++;
467                          Ipsnr += framepsnr[i];                          Ipsnr += framepsnr[i];
468                          break;                          break;
                 case 2:  
469                  default:                  default:
                         Bframes++;  
                         Bpsnr += framepsnr[i];  
470                          break;                          break;
471                  }                  }
472          }          }
# Line 636  Line 475 
475                  Ppsnr /= Pframes;                  Ppsnr /= Pframes;
476          if (Iframes)          if (Iframes)
477                  Ipsnr /= Iframes;                  Ipsnr /= Iframes;
         if (Bframes)  
                 Bpsnr /= Bframes;  
478    
479            /* calculate statistics for every frametype: P,I */
480          for (i=0;i<filenr;i++)  // calculate statistics for every frametype: P,I (and B)          for (i=0;i<filenr;i++)
481          {          {
482                  switch (frame_type[i])                  switch (frame_type[i])
483                  {                  {
# Line 657  Line 494 
494                          if (framepsnr[i] < Pminpsnr)                          if (framepsnr[i] < Pminpsnr)
495                                  Iminpsnr = framepsnr[i];                                  Iminpsnr = framepsnr[i];
496                          Ivarpsnr += (framepsnr[i] - Ipsnr)*(framepsnr[i] - Ipsnr) /Iframes;                          Ivarpsnr += (framepsnr[i] - Ipsnr)*(framepsnr[i] - Ipsnr) /Iframes;
497                          break;                  default:
                 case 2:  
                         if (framepsnr[i] > Bmaxpsnr)  
                                 Bmaxpsnr = framepsnr[i];  
                         if (framepsnr[i] < Pminpsnr)  
                                 Bminpsnr = framepsnr[i];  
                         Bvarpsnr += (framepsnr[i] - Bpsnr)*(framepsnr[i] - Bpsnr) /Bframes;  
498                          break;                          break;
499                  }                  }
500          }          }
501    
502            /* Print all statistics */
503          printf("Avg. Q%1d %2s ",ARG_QUALITY, (ARG_QUANTI ? " q" : "br"));          printf("Avg. Q%1d %2s ",ARG_QUALITY, (ARG_QUANTI ? " q" : "br"));
504          printf("%04d ",MAX(ARG_QUANTI,ARG_BITRATE));          printf("%04d ",(ARG_QUANTI)?ARG_QUANTI:ARG_BITRATE);
505          printf("( %.2f bpp) ", (double)ARG_BITRATE*1000/XDIM/YDIM/ARG_FRAMERATE);          printf("( %.2f bpp) ", (double)ARG_BITRATE*1000/XDIM/YDIM/ARG_FRAMERATE);
506          printf("size %6d ",totalsize);          printf("size %6d ",totalsize);
507          printf("( %4d kbps ",(int)(totalsize*8*ARG_FRAMERATE/1000));          printf("( %4d kbps ",(int)(totalsize*8*ARG_FRAMERATE/1000));
508          printf("/ %.2f bpp) ",(double)totalsize*8/XDIM/YDIM);          printf("/ %.2f bpp) ",(double)totalsize*8/XDIM/YDIM);
509          printf("enc: %6.1f fps, dec: %6.1f fps \n",1/totalenctime, 1/totaldectime);          printf("enc: %6.1f fps, dec: %6.1f fps \n",1000/totalenctime, 1000/totaldectime);
510          printf("PSNR P(%d): %5.2f ( %5.2f , %5.2f ; %5.4f ) ",Pframes,Ppsnr,Pminpsnr,Pmaxpsnr,sqrt(Pvarpsnr/filenr));          printf("PSNR P(%d): %5.2f ( %5.2f , %5.2f ; %5.4f ) ",Pframes,Ppsnr,Pminpsnr,Pmaxpsnr,sqrt(Pvarpsnr/filenr));
511          printf("I(%d): %5.2f ( %5.2f , %5.2f ; %5.4f ) ",Iframes,Ipsnr,Iminpsnr,Imaxpsnr,sqrt(Ivarpsnr/filenr));          printf("I(%d): %5.2f ( %5.2f , %5.2f ; %5.4f ) ",Iframes,Ipsnr,Iminpsnr,Imaxpsnr,sqrt(Ivarpsnr/filenr));
         if (Bframes)  
                 printf("B(%d): %5.2f ( %5.2f , %5.2f ; %5.4f ) ",Bframes,Bpsnr,Bminpsnr,Bmaxpsnr,sqrt(Bvarpsnr/filenr));  
512          printf("\n");          printf("\n");
513    
514  /*********************************************************************/  /*****************************************************************************
515  /*                         XviD PART  Stop                           */   *                            XviD PART  Stop
516  /*********************************************************************/   ****************************************************************************/
517    
518  release_all:  release_all:
519    
# Line 691  Line 521 
521          {          {
522                  status = enc_stop();                  status = enc_stop();
523                  if (status)                  if (status)
524                          printf("Encore RELEASE problem return value %d\n", status);                          fprintf(stderr, "Encore RELEASE problem return value %d\n", status);
525          }          }
526    
527          if (dec_handle)          if (dec_handle)
528          {          {
529                  status = dec_stop();                  status = dec_stop();
530                  if (status)                  if (status)
531                          printf("Decore RELEASE problem return value %d\n", status);                          fprintf(stderr, "Decore RELEASE problem return value %d\n", status);
532          }          }
533    
534            fclose(in_file);
535    
536  free_all_memory:  free_all_memory:
537          free(out_buffer);          free(out_buffer);
# Line 708  Line 539 
539          free(in_buffer);          free(in_buffer);
540    
541    return 0;    return 0;
542    
543    }
544    
545    /*****************************************************************************
546     *                        "statistical" functions
547     *
548     *  these are not needed for encoding or decoding, but for measuring
549     *  time and quality, there in nothing specific to XviD in these
550     *
551     *****************************************************************************/
552    
553    
554    
555    /* Return time elapsed time in miliseconds since the program started */
556    static double msecond()
557    {
558    #ifndef _MSC_VER
559            struct timeval  tv;
560            gettimeofday(&tv, 0);
561            return tv.tv_sec*1.0e3 + tv.tv_usec * 1.0e-3;
562    #else
563            clock_t clk;
564            clk = clock();
565            return clk * 1000 / CLOCKS_PER_SEC;
566    #endif
567    }
568    
569    
570    /*
571     * Returns the sum of squared distances (SSD) between two images of dimensions
572     * x times y
573     */
574    static double absdistq(int x, int y,
575                                               unsigned char* buf1, int stride1,
576                                               unsigned char* buf2, int stride2)
577    {
578            double dist=0.;
579            int i,j,val;
580    
581            for (i=0;i<y;i++)
582            {
583                    val=0;
584                    for (j=0;j<x;j++)
585                            val+= ((int)buf1[j]-(int)buf2[j])*((int)buf1[j]-(int)buf2[j]);
586    
587                    dist += (double)val;
588                    buf1 += stride1;
589                    buf2 += stride2;
590            }
591            return dist/(x*y);
592    }
593    
594    
595    /*
596     * Returns the PSNR between to images.
597     *
598     * This is a common logarithmic measure for "quality" from the world of signal
599     * processing if you don't know what it is, simply accept that higher values
600     * are better.
601     *
602     * PSNR represents the ratio of useful signal over noise signal. In our case,
603     * useful signal is refernce image, noise signal is the difference between
604     * reference and decoded frame from encoded bitstream.
605     *
606     * The problem is this type of value is dependant of image source and so, is
607     * not reliable as a common "quality" indicator.
608     * So PSNR computes the ratio of maximum/noise. Maximum being set to 2^bpp/channel
609     * This way, PSNR is not dependant anymore of image data type.
610     *
611     */
612    static double PSNR(int x, int y,
613                                       unsigned char* buf1, int stride1,
614                                       unsigned char* buf2, int stride2)
615    {
616            return 10*(log10(255*255)-log10( absdistq(x, y, buf1, stride1, buf2, stride2) ));
617    }
618    
619    /*****************************************************************************
620     *                             Usage message
621     *****************************************************************************/
622    
623    static void usage()
624    {
625    
626            fprintf(stderr, "Usage : xvid_stat [OPTIONS]\n");
627            fprintf(stderr, "Options :\n");
628            fprintf(stderr, " -w integer     : frame width ([1.2048])\n");
629            fprintf(stderr, " -h integer     : frame height ([1.2048])\n");
630            fprintf(stderr, " -b integer     : target bitrate (>0 | default=900kbit)\n");
631            fprintf(stderr, " -f float       : target framerate (>0)\n");
632            fprintf(stderr, " -i string      : input filename (default=stdin)\n");
633            fprintf(stderr, " -t integer     : input data type (yuv=0, pgm=1)\n");
634            fprintf(stderr, " -n integer     : number of frames to encode\n");
635            fprintf(stderr, " -q integer     : quality ([0..5])\n");
636            fprintf(stderr, " -d boolean     : save decoder output (0 False*, !=0 True)\n");
637            fprintf(stderr, " -m boolean     : save mpeg4 raw stream (0 False*, !=0 True)\n");
638            fprintf(stderr, " -help          : prints this help message\n");
639            fprintf(stderr, " -quant integer : fixed quantizer (disables -b setting)\n");
640            fprintf(stderr, " (* means default)\n");
641    
642    }
643    
644    /*****************************************************************************
645     *                       Input and output functions
646     *
647     *      the are small and simple routines to read and write PGM and YUV
648     *      image. It's just for convenience, again nothing specific to XviD
649     *
650     *****************************************************************************/
651    
652    static int read_pgmheader(FILE* handle)
653    {
654            int bytes,xsize,ysize,depth;
655            char dummy[2];
656    
657            bytes = fread(dummy,1,2,handle);
658    
659            if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))
660                    return 1;
661    
662            fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);
663            if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )
664            {
665                    fprintf(stderr,"%d %d %d\n",xsize,ysize,depth);
666                    return 2;
667            }
668            if ( (XDIM==0) || (YDIM==0) )
669            {
670                    XDIM=xsize;
671                    YDIM=ysize*2/3;
672            }
673    
674            return 0;
675    }
676    
677    static int read_pgmdata(FILE* handle, unsigned char *image)
678    {
679            int i;
680            char dummy;
681    
682            unsigned char *y = image;
683            unsigned char *u = image + XDIM*YDIM;
684            unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;
685    
686            /* read Y component of picture */
687            fread(y, 1, XDIM*YDIM, handle);
688    
689            for (i=0;i<YDIM/2;i++)
690            {
691                    /* read U */
692                    fread(u, 1, XDIM/2, handle);
693    
694                    /* read V */
695                    fread(v, 1, XDIM/2, handle);
696    
697                    /* Update pointers */
698                    u += XDIM/2;
699                    v += XDIM/2;
700            }
701    
702        /*  I don't know why, but this seems needed */
703            fread(&dummy, 1, 1, handle);
704    
705            return 0;
706    }
707    
708    static int read_yuvdata(FILE* handle, unsigned char *image)
709    {
710    
711            if (fread(image, 1, IMAGE_SIZE(XDIM, YDIM), handle) != (unsigned int)IMAGE_SIZE(XDIM, YDIM))
712                    return 1;
713            else
714                    return 0;
715    }
716    
717    static int write_pgm(char *filename, unsigned char *image)
718    {
719            int loop;
720    
721            unsigned char *y = image;
722            unsigned char *u = image + XDIM*YDIM;
723            unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;
724    
725            FILE *filehandle;
726            filehandle=fopen(filename,"w+b");
727            if (filehandle)
728            {
729                    /* Write header */
730                    fprintf(filehandle,"P5\n\n%d %d 255\n", XDIM,YDIM*3/2);
731    
732                    /* Write Y data */
733                    fwrite(y, 1, XDIM*YDIM, filehandle);
734    
735                    for(loop=0; loop<YDIM/2; loop++)
736                    {
737                            /* Write U scanline */
738                            fwrite(u, 1, XDIM/2, filehandle);
739    
740                            /* Write V scanline */
741                            fwrite(v, 1, XDIM/2, filehandle);
742    
743                            /* Update pointers */
744                            u += XDIM/2;
745                            v += XDIM/2;
746    
747                    }
748    
749                    /* Close file */
750                    fclose(filehandle);
751    
752                    return 0;
753            }
754            else
755                    return 1;
756    }
757    
758    /*****************************************************************************
759     *     Routines for encoding: init encoder, frame step, release encoder
760     ****************************************************************************/
761    
762    #define FRAMERATE_INCR 1001
763    
764    /* Initialize encoder for first use, pass all needed parameters to the codec */
765    static int enc_init(int use_assembler)
766    {
767            int xerr;
768    
769            XVID_INIT_PARAM xinit;
770            XVID_ENC_PARAM xparam;
771    
772            if(use_assembler) {
773    
774    #ifdef ARCH_IA64
775                    xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
776    #else
777                    xinit.cpu_flags = 0;
778    #endif
779            }
780            else {
781                    xinit.cpu_flags = XVID_CPU_FORCE;
782            }
783    
784            xvid_init(NULL, 0, &xinit, NULL);
785    
786            xparam.width = XDIM;
787            xparam.height = YDIM;
788            if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS)
789            {
790                    xparam.fincr = 1;
791                    xparam.fbase = (int)ARG_FRAMERATE;
792            }
793            else
794            {
795                    xparam.fincr = FRAMERATE_INCR;
796                    xparam.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);
797            }
798            xparam.rc_reaction_delay_factor = 16;
799        xparam.rc_averaging_period = 100;
800        xparam.rc_buffer = 10;
801            xparam.rc_bitrate = ARG_BITRATE*1000;
802            xparam.min_quantizer = ARG_MINQUANT;
803            xparam.max_quantizer = ARG_MAXQUANT;
804            xparam.max_key_interval = (int)ARG_FRAMERATE*10;
805    
806            /* I use a small value here, since will not encode whole movies, but short clips */
807    
808            xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xparam, NULL);
809            enc_handle=xparam.handle;
810    
811            return xerr;
812    }
813    
814    static int enc_stop()
815    {
816            int xerr;
817    
818            xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);
819            return xerr;
820    
821    }
822    
823    static int enc_main(unsigned char* image, unsigned char* bitstream,
824                                            int *streamlength, int* frametype)
825    {
826            int xerr;
827    
828            XVID_ENC_FRAME xframe;
829            XVID_ENC_STATS xstats;
830    
831            xframe.bitstream = bitstream;
832            xframe.length = -1;     // this is written by the routine
833    
834            xframe.image = image;
835            xframe.colorspace = XVID_CSP_YV12;      // defined in <xvid.h>
836    
837            xframe.intra = -1; // let the codec decide between I-frame (1) and P-frame (0)
838    
839            xframe.quant = ARG_QUANTI;      // is quant != 0, use a fixed quant (and ignore bitrate)
840    
841            xframe.motion = motion_presets[ARG_QUALITY];
842            xframe.general = general_presets[ARG_QUALITY];
843            xframe.quant_intra_matrix = xframe.quant_inter_matrix = NULL;
844    
845            xerr = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xframe, &xstats);
846    
847            /*
848             * This is statictical data, e.g. for 2-pass. If you are not
849             * interested in any of this, you can use NULL instead of &xstats
850             */
851            *frametype = xframe.intra;
852            *streamlength = xframe.length;
853    
854            return xerr;
855    }
856    
857    /*****************************************************************************
858     * Routines for decoding: init encoder, frame step, release encoder
859     ****************************************************************************/
860    
861    /* init decoder before first run */
862    static int dec_init(int use_assembler)
863    {
864            int xerr;
865    
866            XVID_INIT_PARAM xinit;
867            XVID_DEC_PARAM xparam;
868    
869            if(use_assembler)
870    
871    #ifdef ARCH_IA64
872                    xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
873    #else
874            xinit.cpu_flags = 0;
875    #endif
876    
877            else
878                    xinit.cpu_flags = XVID_CPU_FORCE;
879    
880            xvid_init(NULL, 0, &xinit, NULL);
881            xparam.width = XDIM;
882            xparam.height = YDIM;
883    
884            xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);
885            dec_handle = xparam.handle;
886    
887            return xerr;
888  }  }
889    
890    /* decode one frame  */
891    static int dec_main(unsigned char *m4v_buffer, unsigned char *out_buffer,
892                                            int m4v_size)
893    {
894            int xerr;
895            XVID_DEC_FRAME xframe;
896    
897            xframe.bitstream = m4v_buffer;
898            xframe.length = m4v_size;
899            xframe.image = out_buffer;
900            xframe.stride = XDIM;
901            xframe.colorspace = XVID_CSP_YV12;             // XVID_CSP_USER is fastest (no memcopy involved)
902    
903            xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, NULL);
904    
905            return xerr;
906    }
907    
908    /* close decoder to release resources */
909    static int dec_stop()
910    {
911            int xerr;
912            xerr = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);
913    
914            return xerr;
915    }
916    
917    /* EOF */

Legend:
Removed from v.151  
changed lines
  Added in v.550

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