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

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

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

trunk/xvidcore/examples/xvid_encraw.c revision 376, Sat Aug 17 20:03:36 2002 UTC branches/dev-api-4/xvidcore/examples/xvid_encraw.c revision 909, Sun Mar 9 00:28:09 2003 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-2003 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_encraw.c,v 1.11.2.1 2003-03-09 00:28:09 edgomez Exp $
   
 /************************************************************************  
23   *   *
24   *  Speed test routine for XviD using the XviD-API   ****************************************************************************/
25   *  (C) Christoph Lampert, 2002/08/17  
26    /*****************************************************************************
27     *  Application notes :
28   *   *
29   *  A sequence of YUV pics in PGM or RAW file format is encoded and the   *  A sequence of YUV pics in PGM file format is encoded and decoded
30   *  raw MPEG-4 stream is written to stdout.   *  The speed is measured and PSNR of decoded picture is calculated.
  *  The encoding speed of this is measured, too.  
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_encraw.c -lxvidcore -lm -o xvid_encraw  
  *  
  *  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)  
  *  
  *  BITRATE is in kbps (default 900),  
  *      if BITRATE<32, then value is taken is fixed QUANTIZER  
  *  
  *  FRAMERATE is a float (with or without decimal dot), default is 25.00  
  *  
  *  input/output and m4v-output is saved, if corresponding flags are set  
  *  
  *  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  
34   *   *
35   ************************************************************************/   ************************************************************************/
36    
37  #include <stdio.h>  #include <stdio.h>
38  #include <stdlib.h>  #include <stdlib.h>
39  #include <math.h>               // needed for log10  #include <string.h>
40  #include <sys/time.h>           // only needed for gettimeofday  #include <math.h>
41    #ifndef WIN32
42    #include <sys/time.h>
43    #else
44    #include <time.h>
45    #endif
46    
47  #include "../src/xvid.h"                /* comes with XviD */  #include "xvid.h"
48    
49  int motion_presets[7] = {  /*****************************************************************************
50          0,                                                              // Q 0   *                            Quality presets
51          PMV_EARLYSTOP16,                                                // Q 1   ****************************************************************************/
52          PMV_EARLYSTOP16,                                                // Q 2  
53          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 3  static xvid_motion_t const motion_presets[] = {
54          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                          // Q 4          0,
55          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8          // Q 5          PMV_HALFPELREFINE16,
56                          | PMV_HALFPELREFINE8,          PMV_HALFPELREFINE16,
57          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EXTSEARCH16         // Q 6          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8,
58                          | PMV_USESQUARES16 | PMV_EARLYSTOP8 | PMV_HALFPELREFINE8          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16,
59            PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16,
60          };          };
61    
62  int general_presets[7] = {  static xvid_vol_t const vol_presets[] = {
63          XVID_H263QUANT, /* or use XVID_MPEGQUANT */             // Q 0          XVID_MPEGQUANT,
64          XVID_MPEGQUANT,                                         // Q 1          0,
65          XVID_H263QUANT,                                // Q 2          0,
66          XVID_H263QUANT | XVID_HALFPEL,                          // Q 3          XVID_QUARTERPEL,
67          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 4          XVID_QUARTERPEL | XVID_GMC,
68          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V,           // Q 5          XVID_QUARTERPEL | XVID_GMC
69          XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V };         // Q 6  };
70    
71    static xvid_vop_t const vop_presets[] = {
72            XVID_DYNAMIC_BFRAMES,
73            XVID_DYNAMIC_BFRAMES,
74            XVID_DYNAMIC_BFRAMES | XVID_HALFPEL,
75            XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_INTER4V,
76            XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_INTER4V | XVID_HQACPRED,
77            XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_INTER4V | XVID_HQACPRED | XVID_MODEDECISION_BITS
78    };
79    
80  /* my default values for encoding */  /*****************************************************************************
81     *                     Command line global variables
82     ****************************************************************************/
83    
84    /* Maximum number of frames to encode */
85    #define ABS_MAXFRAMENR 9999
86    
87    static int   ARG_BITRATE = 900;
88    static int   ARG_QUANTI = 0;
89    static int   ARG_QUALITY = 5;
90    static int   ARG_MINQUANT = 1;
91    static int   ARG_MAXQUANT = 31;
92    static float ARG_FRAMERATE = 25.00f;
93    static int   ARG_MAXFRAMENR = ABS_MAXFRAMENR;
94    static char *ARG_INPUTFILE = NULL;
95    static int   ARG_INPUTTYPE = 0;
96    static int   ARG_SAVEMPEGSTREAM = 0;
97    static char *ARG_OUTPUTFILE = NULL;
98    static int   XDIM = 0;
99    static int   YDIM = 0;
100    static int   ARG_BQRATIO = 150;
101    static int   ARG_BQOFFSET = 100;
102    static int   ARG_MAXBFRAMES = 0;
103    #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
104    
105  #define ABS_MAXFRAMENR 9999               // max number of frames  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )
106    #define SMALL_EPS (1e-10)
107    
108  int ARG_BITRATE=900;  #define SWAP(a) ( (((a)&0x000000ff)<<24) | (((a)&0x0000ff00)<<8) | \
109  int ARG_QUANTI=0;                    (((a)&0x00ff0000)>>8)  | (((a)&0xff000000)>>24) )
110    
111  int ARG_QUALITY =6;  /****************************************************************************
112  int ARG_MINQUANT=1;   *                     Nasty global vars ;-)
113  int ARG_MAXQUANT=31;   ***************************************************************************/
 float ARG_FRAMERATE=25.00;  
114    
115  int ARG_MAXFRAMENR=ABS_MAXFRAMENR;  static int i,filenr = 0;
116    
117  #ifdef BFRAMES  /* the path where to save output */
118    static char filepath[256] = "./";
119    
120  int ARG_MAXBFRAMES=1;  /* Internal structures (handles) for encoding and decoding */
121  int ARG_BQUANTRATIO=200;  static void *enc_handle = NULL;
122    
123  #endif  /*****************************************************************************
124     *               Local prototypes
125     ****************************************************************************/
126    
127  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )  /* Prints program usage message */
128  #define SMALL_EPS 1e-10  static void usage();
129    
130  /* these are global variables. Not very elegant, but easy, and this is an easy program */  /* Statistical functions */
131    static double msecond();
132    
133  int XDIM=0;  /* PGM related functions */
134  int YDIM=0;     // will be set when reading first image  static int read_pgmheader(FILE* handle);
135  int i,filenr = 0;  static int read_pgmdata(FILE* handle, unsigned char *image);
136    static int read_yuvdata(FILE* handle, unsigned char *image);
137    
138  int save_m4v_flag = 1;          // output MPEG4-bytestream?  /* Encoder related functions */
139  int save_ref_flag = 0;          // save input image  static int enc_init(int use_assembler);
140    static int enc_stop();
141    static int enc_main(unsigned char* image,
142                                            unsigned char* bitstream,
143                                            long *frametype);
144    
145  int pgmflag = 0;                // a flag, if input is in PGM format, overwritten in init-phase  /*****************************************************************************
146  char filepath[256] = "./";      // the path where to save output   *               Main function
147     ****************************************************************************/
148    
149  void *enc_handle = NULL;                // internal structures (handles) for encoding  int main(int argc, char *argv[])
150    {
151    
152            unsigned char *mp4_buffer = NULL;
153            unsigned char *in_buffer = NULL;
154            unsigned char *out_buffer = NULL;
155    
156  /*********************************************************************/          double enctime;
157  /*                     "statistical" functions                       */          double totalenctime=0.;
 /*                                                                   */  
 /*  these are not needed for encoding or decoding, but for measuring */  
 /*  time and quality, there in nothing specific to XviD in these     */  
 /*                                                                   */  
 /*********************************************************************/  
158    
159  double msecond()          long totalsize;
160  /* return the current time in seconds(!)  */          int status;
161  {          long frame_type;
         struct timeval  tv;  
         gettimeofday(&tv, 0);  
         return tv.tv_sec + tv.tv_usec * 1.0e-6;  
 }  
162    
163  /*********************************************************************/          long m4v_size;
164  /*                    input and output functions                     */          int use_assembler=0;
 /*                                                                   */  
 /* the are small and simple routines to read and write PGM and YUV   */  
 /* image. It's just for convenience, again nothing specific to XviD  */  
 /*                                                                   */  
 /*********************************************************************/  
165    
166  int read_pgmheader(FILE* handle)          char filename[256];
 {  
         int bytes,xsize,ysize,depth;  
         char dummy[2];  
167    
168          bytes = fread(dummy,1,2,handle);          FILE *in_file = stdin;
169            FILE *out_file = NULL;
170    
171          if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))          printf("xvid_encraw - raw mpeg4 bitstream encoder ");
172                  return 1;          printf("written by Christoph Lampert 2002-2003\n\n");
173          fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);  
174          if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )  /*****************************************************************************
175          {   *                            Command line parsing
176                  return 2;   ****************************************************************************/
177    
178            for (i=1; i< argc; i++) {
179    
180                    if (strcmp("-asm", argv[i]) == 0 ) {
181                            use_assembler = 1;
182          }          }
183          if ( (XDIM==0) || (YDIM==0) )                  else if (strcmp("-w", argv[i]) == 0 && i < argc - 1 ) {
184          {       XDIM=xsize;                          i++;
185                  YDIM=ysize;                          XDIM = atoi(argv[i]);
186                    }
187                    else if (strcmp("-h", argv[i]) == 0 && i < argc - 1 ) {
188                            i++;
189                            YDIM = atoi(argv[i]);
190                    }
191                    else if (strcmp("-b", argv[i]) == 0 && i < argc - 1 ) {
192                            i++;
193                            ARG_BITRATE = atoi(argv[i]);
194                    }
195                    else if (strcmp("-bn", argv[i]) == 0 && i < argc - 1 ) {
196                            i++;
197                            ARG_MAXBFRAMES = atoi(argv[i]);
198                    }
199                    else if (strcmp("-bqr", argv[i]) == 0 && i < argc - 1 ) {
200                            i++;
201                            ARG_BQRATIO = atoi(argv[i]);
202                    }
203                    else if (strcmp("-bqo", argv[i]) == 0 && i < argc - 1 ) {
204                            i++;
205                            ARG_BQOFFSET = atoi(argv[i]);
206                    }
207                    else if (strcmp("-q", argv[i]) == 0 && i < argc - 1 ) {
208                            i++;
209                            ARG_QUALITY = atoi(argv[i]);
210                    }
211                    else if (strcmp("-f", argv[i]) == 0 && i < argc - 1 ) {
212                            i++;
213                            ARG_FRAMERATE = (float)atof(argv[i]);
214                    }
215                    else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
216                            i++;
217                            ARG_INPUTFILE = argv[i];
218                    }
219                    else if (strcmp("-t", argv[i]) == 0 && i < argc - 1 ) {
220                            i++;
221                            ARG_INPUTTYPE = atoi(argv[i]);
222                    }
223                    else if(strcmp("-n", argv[i]) == 0 && i < argc - 1 ) {
224                            i++;
225                            ARG_MAXFRAMENR  = atoi(argv[i]);
226                    }
227                    else if (strcmp("-quant", argv[i]) == 0 && i < argc - 1 ) {
228                            i++;
229                            ARG_QUANTI = atoi(argv[i]);
230                    }
231                    else if (strcmp("-m", argv[i]) == 0 && i < argc - 1 ) {
232                            i++;
233                            ARG_SAVEMPEGSTREAM = atoi(argv[i]);
234                    }
235                    else if (strcmp("-o", argv[i]) == 0 && i < argc - 1 ) {
236                            i++;
237                            ARG_OUTPUTFILE = argv[i];
238                    }
239                    else if (strcmp("-help", argv[i])) {
240                            usage();
241                            return(0);
242                    }
243                    else {
244                            usage();
245                            exit(-1);
246          }          }
247    
         return 0;  
248  }  }
249    
250  int read_pgmdata(FILE* handle, unsigned char *image)  /*****************************************************************************
251  {   *                            Arguments checking
252          int i,status;   ****************************************************************************/
         char dummy;  
253    
254          unsigned char* buff1_ptr2 = image + XDIM*YDIM;          if (XDIM <= 0 || XDIM >= 2048 || YDIM <=0 || YDIM >= 2048 ) {
255          unsigned char* buff1_ptr3 = image + XDIM*YDIM + XDIM/2*YDIM/2;                  fprintf(stderr, "Trying to retreive width and height from PGM header\n");
256                    ARG_INPUTTYPE = 1; /* pgm */
257            }
258    
259          fread(image,XDIM*YDIM,1,stdin); // read Y component of picture          if ( ARG_QUALITY < 0 || ARG_QUALITY > 5) {
260                    fprintf(stderr,"Wrong Quality\n");
261                    return(-1);
262            }
263    
264          for (i=0;i<YDIM/2;i++)          if ( ARG_BITRATE <= 0 && ARG_QUANTI == 0) {
265          {                  fprintf(stderr,"Wrong Bitrate\n");
266                  fread(buff1_ptr2,XDIM/2,1,stdin);        // read U                  return(-1);
                 buff1_ptr2 += XDIM/2;  
                 fread(buff1_ptr3,XDIM/2,1,stdin);        // read V  
                 buff1_ptr3 += XDIM/2;  
267          }          }
268          fread(&dummy,1,1,handle);       //  I don't know why, but this seems needed  
269          return 0;          if ( ARG_FRAMERATE <= 0) {
270                    fprintf(stderr,"Wrong Framerate %s \n",argv[5]);
271                    return(-1);
272  }  }
273    
274  int read_yuvdata(FILE* handle, unsigned char *image)          if ( ARG_MAXFRAMENR <= 0) {
275  {       int i;                  fprintf(stderr,"Wrong number of frames\n");
276          char dummy;                  return(-1);
277            }
278    
279          unsigned char* buff1_ptr2 = image + XDIM*YDIM;          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
280          unsigned char* buff1_ptr3 = image + XDIM*YDIM + XDIM/2*YDIM/2;                  in_file = stdin;
281            }
282            else {
283    
284          if (fread(image,XDIM,YDIM*3/2,stdin) != YDIM*3/2)                  in_file = fopen(ARG_INPUTFILE, "rb");
285                  return 1;                  if (in_file == NULL) {
286          else                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
287                  return 0;                          return(-1);
288                    }
289  }  }
290    
291  int write_pgm(char *filename, unsigned char *image)          if (ARG_INPUTTYPE) {
292  {                  if (read_pgmheader(in_file)) {
293          FILE *filehandle;                          fprintf(stderr, "Wrong input format, I want YUV encapsulated in PGM\n");
294          filehandle=fopen(filename,"wb");                          return(-1);
         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;  
295          }          }
         else  
                 return 1;  
296  }  }
297    
298  /*********************************************************************/          /* now we know the sizes, so allocate memory */
299  /* Routines for encoding: init encoder, frame step, release encoder  */          in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM));
300  /*********************************************************************/          if (!in_buffer)
301                    goto free_all_memory;
302    
303  #define FRAMERATE_INCR 1001          /* this should really be enough memory ! */
304            mp4_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM)*2);
305            if (!mp4_buffer)
306                    goto free_all_memory;
307    
308    /*****************************************************************************
309     *                            XviD PART  Start
310     ****************************************************************************/
311    
 int enc_init(int use_assembler)  
 {       /* initialize encoder for first use, pass all needed parameters to the codec */  
         int xerr;  
312    
313          XVID_INIT_PARAM xinit;          status = enc_init(use_assembler);
314          XVID_ENC_PARAM xparam;          if (status)
315            {
316                    fprintf(stderr, "Encore INIT problem, return value %d\n", status);
317                    goto release_all;
318            }
319    
320          if(use_assembler)  /*****************************************************************************
321     *                            Main loop
322     ****************************************************************************/
323    
324  #ifdef ARCH_IA64          if (ARG_SAVEMPEGSTREAM && ARG_OUTPUTFILE) {
                 xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;  
 #else  
                 xinit.cpu_flags = 0;  
 #endif  
325    
326          else                  if((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {
327                  xinit.cpu_flags = XVID_CPU_FORCE;                          fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);
328                            goto release_all;
329                    }
330    
331            }
332            else {
333                    out_file = NULL;
334            }
335    
336    /*****************************************************************************
337     *                       Encoding loop
338     ****************************************************************************/
339    
340            totalsize = 0;
341    
342          xvid_init(NULL, 0, &xinit, NULL);          do {
343    
344          xparam.width = XDIM;                  if (ARG_INPUTTYPE)
345          xparam.height = YDIM;                          status = read_pgmdata(in_file, in_buffer);      /* read PGM data (YUV-format) */
346          if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS)                  else
347                            status = read_yuvdata(in_file, in_buffer);      /* read raw data (YUV-format) */
348    
349                    if (status)
350          {          {
351                  xparam.fincr = 1;                          /* Couldn't read image, most likely end-of-file */
352                  xparam.fbase = (int)ARG_FRAMERATE;                          continue;
353          }          }
354          else  
355    /*****************************************************************************
356     *                       Encode and decode this frame
357     ****************************************************************************/
358    
359                    enctime = msecond();
360                    m4v_size = enc_main(in_buffer, mp4_buffer, &frame_type);
361                    enctime = msecond() - enctime;
362    
363                    /* Not coded frames return 0 */
364                    if(m4v_size == 0) goto next_frame;
365    
366          {          {
367                  xparam.fincr = FRAMERATE_INCR;                          char *type;
368                  xparam.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);  
369                            switch(frame_type) {
370                            case XVID_TYPE_IVOP:
371                                    type = "I";
372                                    break;
373                            case XVID_TYPE_PVOP:
374                                    type = "P";
375                                    break;
376                            case XVID_TYPE_BVOP:
377                                    type = "B";
378                                    break;
379                            case XVID_TYPE_SVOP:
380                                    type = "S";
381                                    break;
382                            default:
383                                    type = "Unknown";
384                                    break;
385          }          }
         xparam.rc_reaction_delay_factor = 16;  
         xparam.rc_averaging_period = 100;  
         xparam.rc_buffer = 10;  
         xparam.rc_bitrate = ARG_BITRATE*1000;  
         xparam.min_quantizer = 1;  
         xparam.max_quantizer = 31;  
         xparam.max_key_interval = (int)ARG_FRAMERATE*10;  
   
 #ifdef BFRAMES  
         xparam.global = XVID_GLOBAL_DX50BVOP;  
         xparam.max_bframes = ARG_MAXBFRAMES;  
         xparam.bquant_ratio = ARG_BQUANTRATIO;  
         xparam.frame_drop_ratio=0;  
 #endif  
386    
387          /* I use a small value here, since will not encode whole movies,                          printf("Frame %5d: type = %s, enctime(ms) =%6.1f, length(bytes) =%7d\n",
388                  but short clips */                                     (int)filenr, type, (float)enctime, (int)m4v_size);
389    
390                    }
391    
392                    /* Update encoding time stats */
393                    totalenctime += enctime;
394                    totalsize += m4v_size;
395    
396          xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xparam, NULL);  /*****************************************************************************
397          enc_handle=xparam.handle;   *                       Save stream to file
398     ****************************************************************************/
399    
400          return xerr;                  if (ARG_SAVEMPEGSTREAM)
401                    {
402                            /* Save single files */
403                            if (out_file == NULL) {
404                                    sprintf(filename, "%sframe%05d.m4v", filepath, filenr);
405                                    out_file = fopen(filename, "wb");
406                                    fwrite(mp4_buffer, m4v_size, 1, out_file);
407                                    fclose(out_file);
408                                    out_file = NULL;
409  }  }
410                            else {
411    
412  int  enc_stop()                                  /* Write mp4 data */
413  {       int xerr;                                  fwrite(mp4_buffer, 1, m4v_size, out_file);
414    
415          xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);                          }
         return xerr;  
416  }  }
417    
418  int  enc_main(unsigned char* image, unsigned char* bitstream, int *streamlength, int* frametype)          next_frame:
419  {       int xerr;                  /* Read the header if it's pgm stream */
420                    if (ARG_INPUTTYPE)
421                            status = read_pgmheader(in_file);
422    
423          XVID_ENC_FRAME xframe;                  if(frame_type != 5) filenr++;
         XVID_ENC_STATS xstats;  
424    
425          xframe.bitstream = bitstream;          } while ( (!status) && (filenr<ARG_MAXFRAMENR) );
         xframe.length = -1;     // this is written by the routine  
426    
         xframe.image = image;  
         xframe.colorspace = XVID_CSP_YV12;      // defined in <xvid.h>  
427    
         xframe.intra = -1; // let the codec decide between I-frame (1) and P-frame (0)  
428    
429          xframe.quant = ARG_QUANTI;      // is quant != 0, use a fixed quant (and ignore bitrate)  /*****************************************************************************
430     *         Calculate totals and averages for output, print results
431     ****************************************************************************/
432    
433          xframe.motion = motion_presets[ARG_QUALITY];          totalsize    /= filenr;
434          xframe.general = general_presets[ARG_QUALITY];          totalenctime /= filenr;
         xframe.quant_intra_matrix = xframe.quant_inter_matrix = NULL;  
435    
436  #ifdef BFRAMES          printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d\n",
437          xframe.bquant = 0;                     totalenctime, 1000/totalenctime, (int)totalsize);
 #endif  
438    
439          xerr = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xframe, &xstats);  /*****************************************************************************
440     *                            XviD PART  Stop
441     ****************************************************************************/
442    
443  /*              enc_result->is_key_frame = xframe.intra;   release_all:
                 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;  
   
         return xerr;  
 }  
   
 /*********************************************************************/  
 /*                          Main program                             */  
 /*********************************************************************/  
444    
445  int main(int argc, char *argv[])          if (enc_handle)
446  {  {
447    unsigned char *divx_buffer = NULL;                  status = enc_stop();
448    unsigned char *in_buffer = NULL;                  if (status)
449                            fprintf(stderr, "Encore RELEASE problem return value %d\n", status);
450            }
451    
452    double enctime;          if(in_file)
453    double totalenctime=0.;                  fclose(in_file);
454            if(out_file)
455                    fclose(out_file);
456    
457    long totalsize=0;   free_all_memory:
458    int status;          free(out_buffer);
459            free(mp4_buffer);
460            free(in_buffer);
461    
462    int m4v_size;          return(0);
   int frame_type[ABS_MAXFRAMENR];  
   int Iframes=0, Pframes=0, Bframes=0;  
   int use_assembler=1;  
463    
464    char filename[256];  }
465    
   FILE *filehandle;  
466    
467  /* read YUV in pgm format from stdin */  /*****************************************************************************
468    if (!pgmflag)   *                        "statistical" functions
469     *
470     *  these are not needed for encoding or decoding, but for measuring
471     *  time and quality, there in nothing specific to XviD in these
472     *
473     *****************************************************************************/
474    
475    /* Return time elapsed time in miliseconds since the program started */
476    static double msecond()
477    {    {
478          pgmflag = 1;  #ifndef WIN32
479            struct timeval  tv;
480            gettimeofday(&tv, 0);
481            return(tv.tv_sec*1.0e3 + tv.tv_usec * 1.0e-3);
482    #else
483            clock_t clk;
484            clk = clock();
485            return(clk * 1000 / CLOCKS_PER_SEC);
486    #endif
487    }
488    
489  //      if (argc==2 && !strcmp(argv[1],"-noasm"))  /*****************************************************************************
490  //        use_assembler = 0;   *                             Usage message
491     *****************************************************************************/
492    
493    static void usage()
494    {
495    
496            fprintf(stderr, "Usage : xvid_stat [OPTIONS]\n");
497            fprintf(stderr, "Options :\n");
498            fprintf(stderr, " -w integer     : frame width ([1.2048])\n");
499            fprintf(stderr, " -h integer     : frame height ([1.2048])\n");
500            fprintf(stderr, " -b integer     : target bitrate (>0 | default=900kbit)\n");
501            fprintf(stderr, " -bn integer    : max bframes (default=0)\n");
502            fprintf(stderr, " -bqr integer   : bframe quantizer ratio (default=150)\n");
503            fprintf(stderr, " -bqo integer   : bframe quantizer offset (default=100)\n");
504            fprintf(stderr, " -f float       : target framerate (>0)\n");
505            fprintf(stderr, " -i string      : input filename (default=stdin)\n");
506            fprintf(stderr, " -t integer     : input data type (yuv=0, pgm=1)\n");
507            fprintf(stderr, " -n integer     : number of frames to encode\n");
508            fprintf(stderr, " -q integer     : quality ([0..5])\n");
509            fprintf(stderr, " -d boolean     : save decoder output (0 False*, !=0 True)\n");
510            fprintf(stderr, " -m boolean     : save mpeg4 raw stream (0 False*, !=0 True)\n");
511            fprintf(stderr, " -o string      : output container filename (only usefull when -m 1 is used) :\n");
512            fprintf(stderr, "                  When this option is not used : one file per encoded frame\n");
513            fprintf(stderr, "                  When this option is used : save to 'string' file\n");
514            fprintf(stderr, " -help          : prints this help message\n");
515            fprintf(stderr, " -quant integer : fixed quantizer (disables -b setting)\n");
516            fprintf(stderr, " (* means default)\n");
517    
         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);  
518                  }                  }
519                  else  
520    /*****************************************************************************
521     *                       Input and output functions
522     *
523     *      the are small and simple routines to read and write PGM and YUV
524     *      image. It's just for convenience, again nothing specific to XviD
525     *
526     *****************************************************************************/
527    
528    static int read_pgmheader(FILE* handle)
529                  {                  {
530                          YDIM = YDIM*3/2; /* for YUV */          int bytes,xsize,ysize,depth;
531                          pgmflag = 0;          char dummy[2];
532                  }  
533          }          bytes = fread(dummy,1,2,handle);
   }  
534    
535    if (pgmflag)          if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))
536    {     if (read_pgmheader(stdin))                  return(1);
537    
538            fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);
539            if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )
540              {              {
541                fprintf(stderr,"Wrong input format, I want YUV encapsulated in PGM\n");                  fprintf(stderr,"%d %d %d\n",xsize,ysize,depth);
542                return 1;                  return(2);
             }  
   }  
   if (argc>=4)  
   {     ARG_QUALITY = atoi(argv[3]);  
         if ( (ARG_QUALITY < 0) || (ARG_QUALITY > 6) )  
                 { fprintf(stderr,"Wrong Quality\n"); return -1; }  
         else  
                   fprintf(stderr,"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;  
                   fprintf(stderr,"Quantizer %d\n",ARG_QUANTI);  
543                  }                  }
544          else          if ( (XDIM==0) || (YDIM==0) )
545                    fprintf(stderr,"Bitrate %d kbps\n",ARG_BITRATE);          {
546                    XDIM=xsize;
547                    YDIM=ysize*2/3;
548    }    }
549    if (argc>=6)  
550    {     ARG_FRAMERATE = (float)atof(argv[5]);          return(0);
         if ( (ARG_FRAMERATE <= 0) )  
                 { fprintf(stderr,"Wrong Fraterate %s \n",argv[5]); return -1; }  
         fprintf(stderr,"Framerate %6.3f fps\n",ARG_FRAMERATE);  
   }  
   
   if (argc>=7)  
   {     ARG_MAXFRAMENR = atoi(argv[6]);  
         if ( (ARG_MAXFRAMENR <= 0) )  
          { fprintf(stderr,"Wrong number of frames\n"); return -1; }  
         fprintf(stderr,"max. Framenr. %d\n",ARG_MAXFRAMENR);  
   }  
   
 #ifdef BFRAMES  
   if (argc>=8)  
   {     ARG_MAXBFRAMES = atoi(argv[7]);  
         if ( (ARG_MAXBFRAMES < -1) || ( ARG_MAXBFRAMES > ARG_FRAMERATE) )  
          { fprintf(stderr,"Wrong maximumnumber of bframes\n"); return -1; }  
         fprintf(stderr,"max. B-frames %d\n",ARG_MAXBFRAMES);  
   }  
   
   if (argc>=9)  
   {     ARG_MAXFRAMENR = atoi(argv[8]);  
         if ( (ARG_BQUANTRATIO <= 0) )  
          { fprintf(stderr,"Wrong B-frames Quantizer ratio \n"); return -1; }  
         fprintf(stderr,"B-frames quant-ratio %d\n",ARG_BQUANTRATIO);  
551    }    }
 #endif  
552    
553  /* now we know the sizes, so allocate memory */  static int read_pgmdata(FILE* handle, unsigned char *image)
554    {
555            int i;
556            char dummy;
557    
558    in_buffer = (unsigned char *) malloc(XDIM*YDIM);          unsigned char *y = image;
559    if (!in_buffer)          unsigned char *u = image + XDIM*YDIM;
560      goto free_all_memory;          unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;
561    
562    divx_buffer = (unsigned char *) malloc(XDIM*YDIM*2);          /* read Y component of picture */
563    if (!divx_buffer)          fread(y, 1, XDIM*YDIM, handle);
     goto free_all_memory;  
564    
565    YDIM = YDIM*2/3; // PGM is YUV 4:2:0 format, so real image height is *2/3 of PGM picture          for (i=0;i<YDIM/2;i++)
566            {
567                    /* read U */
568                    fread(u, 1, XDIM/2, handle);
569    
570  /*********************************************************************/                  /* read V */
571  /*                         XviD PART  Start                          */                  fread(v, 1, XDIM/2, handle);
 /*********************************************************************/  
572    
573    status = enc_init(use_assembler);                  /* Update pointers */
574          if (status)                  u += XDIM/2;
575          {                  v += XDIM/2;
                 fprintf(stderr,"Encore INIT problem, return value %d\n", status);  
                 goto release_all;  
576          }          }
577    
578  /*********************************************************************/      /*  I don't know why, but this seems needed */
579  /*                               Main loop                           */          fread(&dummy, 1, 1, handle);
580  /*********************************************************************/  
581            return(0);
582    }
583    
584    do  static int read_yuvdata(FILE* handle, unsigned char *image)
585      {      {
586          if (pgmflag)  
587                status = read_pgmdata(stdin, in_buffer);  // read PGM data (YUV-format)          if (fread(image, 1, IMAGE_SIZE(XDIM, YDIM), handle) != (unsigned int)IMAGE_SIZE(XDIM, YDIM))
588                    return(1);
589          else          else
590                status = read_yuvdata(stdin, in_buffer);  // read raw data (YUV-format)                  return(0);
591    }
592    
593      if (status)  /*****************************************************************************
594     *     Routines for encoding: init encoder, frame step, release encoder
595     ****************************************************************************/
596    
597    #define FRAMERATE_INCR 1001
598    
599    /* Initialize encoder for first use, pass all needed parameters to the codec */
600    static int enc_init(int use_assembler)
601          {          {
602            // Couldn't read image, most likely end-of-file          int xerr;
603            continue;  
604            xvid_gbl_init_t   xvid_gbl_init;
605            xvid_enc_create_t xvid_enc_create;
606    
607            /*------------------------------------------------------------------------
608             * XviD core initialization
609             *----------------------------------------------------------------------*/
610    
611            /* Set version -- version checking will done by xvidcore*/
612            xvid_gbl_init.version = XVID_VERSION;
613    
614            /* Do we have to enable ASM optimizations ? */
615            if(use_assembler) {
616    
617    #ifdef ARCH_IS_IA64
618                    xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
619    #else
620                    xvid_gbl_init.cpu_flags = 0;
621    #endif
622            }
623            else {
624                    xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
625          }          }
626    
627            /* Initialize XviD core -- Should be done once per __process__ */
628            xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
629    
630      if (save_ref_flag)          /*------------------------------------------------------------------------
631          {           * XviD encoder initialization
632                  sprintf(filename, "%s%05d.pgm", filepath, filenr);           *----------------------------------------------------------------------*/
633                  write_pgm(filename,in_buffer);  
634            /* Version again */
635            xvid_enc_create.version = XVID_VERSION;
636    
637            /* Width and Height of input frames */
638            xvid_enc_create.width = XDIM;
639            xvid_enc_create.height = YDIM;
640    
641            /* No fancy thread tests */
642            xvid_enc_create.num_threads = 0;
643    
644            /* Frame rate - Do some quick float fps = fincr/fbase hack */
645            if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS) {
646                    xvid_enc_create.fincr = 1;
647                    xvid_enc_create.fbase = (int)ARG_FRAMERATE;
648            } else {
649                    xvid_enc_create.fincr = FRAMERATE_INCR;
650                    xvid_enc_create.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);
651          }          }
652    
653            /* Maximum key frame interval */
654            xvid_enc_create.max_key_interval = (int)ARG_FRAMERATE*10;
655    
656  /*********************************************************************/          /* Bframes settings */
657  /*               analyse this frame before encoding                  */          xvid_enc_create.max_bframes = ARG_MAXBFRAMES;
658  /*********************************************************************/          xvid_enc_create.bquant_ratio = ARG_BQRATIO;
659            xvid_enc_create.bquant_offset = ARG_BQOFFSET;
660    
661  //      nothing is done here at the moment, but you could e.g. create          /* Dropping ratio frame -- we don't need that */
662  //      histograms or measure entropy or apply preprocessing filters...          xvid_enc_create.frame_drop_ratio = 0;
663    
664  /*********************************************************************/          /* Global encoder options */
665  /*               encode and decode this frame                        */          xvid_enc_create.global = 0;
 /*********************************************************************/  
666    
667          enctime = -msecond();          /* I use a small value here, since will not encode whole movies, but short clips */
668          status = enc_main(in_buffer, divx_buffer, &m4v_size, &frame_type[filenr]);          xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
         enctime += msecond();  
669    
670          totalenctime += enctime;          /* Retrieve the encoder instance from the structure */
671          totalsize += m4v_size;          enc_handle = xvid_enc_create.handle;
672    
673          fprintf(stderr,"Frame %5d: intra %d, enctime =%6.1f ms length=%7d bytes\n",          return(xerr);
674                   filenr, frame_type[filenr], enctime*1000, m4v_size);  }
675    
676          if (save_m4v_flag)  static int enc_stop()
677          {          {
678                  fwrite(divx_buffer, m4v_size, 1, stdout);          int xerr;
679    
680            /* Destroy the encoder instance */
681            xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);
682    
683            return(xerr);
684          }          }
685    
686          if (pgmflag)  static int enc_main(unsigned char* image,
687                  status = read_pgmheader(stdin);                                          unsigned char* bitstream,
688                                  // because if this was the last PGM, stop now                                          long *frametype)
689    {
690            int ret;
691    
692          filenr++;          xvid_enc_frame_t xvid_enc_frame;
693            xvid_enc_stats_t xvid_enc_stats[2];
694    
695     } while ( (!status) && (filenr<ARG_MAXFRAMENR) );          /* Version for the frame and the stats */
696            xvid_enc_frame.version = XVID_VERSION;
697            xvid_enc_stats[0].version = XVID_VERSION;
698            xvid_enc_stats[1].version = XVID_VERSION;
699    
700            /* Bind output buffer */
701            xvid_enc_frame.bitstream = bitstream;
702            xvid_enc_frame.length = -1;
703    
704            /* Initialize input image fields */
705            xvid_enc_frame.input.plane[0]  = image;
706            xvid_enc_frame.input.csp       = XVID_CSP_I420;
707            xvid_enc_frame.input.stride[0] = XDIM;
708    
709  /*********************************************************************/          /* Set up core's general features */
710  /*     calculate totals and averages for output, print results       */          xvid_enc_frame.vol_flags = vol_presets[ARG_QUALITY];
 /*********************************************************************/  
711    
712          totalsize    /= filenr;          /* Set up core's general features */
713          totalenctime /= filenr;          xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];
714    
715          for (i=0;i<filenr;i++)          /* Frame type -- let core decide for us */
716          {          xvid_enc_frame.type   = XVID_TYPE_AUTO;
                 switch (frame_type[i])  
                 {  
                 case 0:  
                         Pframes++;  
                         break;  
                 case 1:  
                         Iframes++;  
                         break;  
                 case 2:  
                 default:  
                         Bframes++;  
                         break;  
                 }  
         }  
717    
718          fprintf(stderr,"Avg: enctime %5.2f ms, %5.2f fps, filesize =%d\n",          /* Force the right quantizer */
719                  1000*totalenctime, 1./totalenctime, totalsize);          xvid_enc_frame.quant  = ARG_QUANTI;
720            xvid_enc_frame.bquant = 0;
721    
722  /*********************************************************************/          /* Set up motion estimation flags */
723  /*                         XviD PART  Stop                           */          xvid_enc_frame.motion = motion_presets[ARG_QUALITY];
 /*********************************************************************/  
724    
725  release_all:          /* We don't use special matrices */
726            xvid_enc_frame.quant_intra_matrix = NULL;
727            xvid_enc_frame.quant_inter_matrix = NULL;
728    
729          if (enc_handle)          ret = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame, &xvid_enc_stats);
         {  
                 status = enc_stop();  
                 if (status)  
                         fprintf(stderr,"Encore RELEASE problem return value %d\n", status);  
         }  
730    
731  free_all_memory:          *frametype = xvid_enc_stats[0].type;
         free(divx_buffer);  
         free(in_buffer);  
732    
733    return 0;          return(ret);
734  }  }

Legend:
Removed from v.376  
changed lines
  Added in v.909

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