[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 830, Tue Feb 11 21:56:31 2003 UTC branches/dev-api-4/xvidcore/examples/xvid_encraw.c revision 916, Tue Mar 11 01:08:10 2003 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - Console based test application  -   *  - Console based test application  -
5   *   *
6   *  Copyright(C) 2002 Christoph Lampert   *  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 19  Line 19 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21   *   *
22   * $Id: xvid_encraw.c,v 1.9 2003-02-11 21:56:31 edgomez Exp $   * $Id: xvid_encraw.c,v 1.11.2.3 2003-03-11 01:08:10 edgomez Exp $
23   *   *
24   ****************************************************************************/   ****************************************************************************/
25    
# Line 38  Line 38 
38  #include <stdlib.h>  #include <stdlib.h>
39  #include <string.h>  #include <string.h>
40  #include <math.h>  #include <math.h>
41  #ifndef _MSC_VER  #ifndef WIN32
42  #include <sys/time.h>  #include <sys/time.h>
43  #else  #else
44  #include <time.h>  #include <time.h>
# Line 50  Line 50 
50   *                            Quality presets   *                            Quality presets
51   ****************************************************************************/   ****************************************************************************/
52    
53  static int const motion_presets[7] = {  static xvid_motion_t const motion_presets[] = {
54          0,                                                        /* Q 0 */          0,
55          PMV_EARLYSTOP16,                                          /* Q 1 */          PMV_HALFPELREFINE16,
56          PMV_EARLYSTOP16,                                          /* Q 2 */          PMV_HALFPELREFINE16,
57          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                    /* Q 3 */          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8,
58          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16,                    /* Q 4 */          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16,
59          PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EARLYSTOP8 |  /* Q 5 */          PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16 | PMV_CHROMA16 | PMV_CHROMA8,
         PMV_HALFPELREFINE8,  
         PMV_EARLYSTOP16 | PMV_HALFPELREFINE16 | PMV_EXTSEARCH16 | /* Q 6 */  
         PMV_USESQUARES16 | PMV_EARLYSTOP8 | PMV_HALFPELREFINE8  
60  };  };
61    
62  static int const general_presets[7] = {  static xvid_vol_t const vol_presets[] = {
63          XVID_H263QUANT,                               /* 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
         XVID_H263QUANT | XVID_HALFPEL | XVID_INTER4V  /* Q 6 */  
69  };  };
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  /*****************************************************************************  /*****************************************************************************
81   *                     Command line global variables   *                     Command line global variables
# Line 80  Line 84 
84  /* Maximum number of frames to encode */  /* Maximum number of frames to encode */
85  #define ABS_MAXFRAMENR 9999  #define ABS_MAXFRAMENR 9999
86    
87  /* HINTMODEs */  static int   ARG_STATS = 0;
 #define HINT_MODE_NONE 0  
 #define HINT_MODE_GET  1  
 #define HINT_MODE_SET  2  
 #define HINT_FILE "hints.mv"  
   
88  static int   ARG_BITRATE = 900;  static int   ARG_BITRATE = 900;
89  static int   ARG_QUANTI = 0;  static int   ARG_QUANTI = 0;
90  static int   ARG_QUALITY = 6;  static int   ARG_QUALITY = 5;
91  static int   ARG_MINQUANT = 1;  static int   ARG_MINQUANT = 1;
92  static int   ARG_MAXQUANT = 31;  static int   ARG_MAXQUANT = 31;
93  static float ARG_FRAMERATE = 25.00f;  static float ARG_FRAMERATE = 25.00f;
# Line 96  Line 95 
95  static char *ARG_INPUTFILE = NULL;  static char *ARG_INPUTFILE = NULL;
96  static int   ARG_INPUTTYPE = 0;  static int   ARG_INPUTTYPE = 0;
97  static int   ARG_SAVEMPEGSTREAM = 0;  static int   ARG_SAVEMPEGSTREAM = 0;
 static int   ARG_OUTPUTTYPE = 0;  
98  static char *ARG_OUTPUTFILE = NULL;  static char *ARG_OUTPUTFILE = NULL;
 static int   ARG_HINTMODE = HINT_MODE_NONE;  
99  static int   XDIM = 0;  static int   XDIM = 0;
100  static int   YDIM = 0;  static int   YDIM = 0;
101    static int   ARG_BQRATIO = 150;
102    static int   ARG_BQOFFSET = 100;
103    static int   ARG_MAXBFRAMES = 0;
104  #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)  #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
105    
106  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )  #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )
107  #define SMALL_EPS 1e-10  #define SMALL_EPS (1e-10)
   
 #define LONG_PACK(a,b,c,d) ((long) (((long)(a))<<24) | (((long)(b))<<16) | \  
                                    (((long)(c))<<8)  |((long)(d)))  
108    
109  #define SWAP(a) ( (((a)&0x000000ff)<<24) | (((a)&0x0000ff00)<<8) | \  #define SWAP(a) ( (((a)&0x000000ff)<<24) | (((a)&0x0000ff00)<<8) | \
110                    (((a)&0x00ff0000)>>8)  | (((a)&0xff000000)>>24) )                    (((a)&0x00ff0000)>>8)  | (((a)&0xff000000)>>24) )
# Line 142  Line 139 
139  /* Encoder related functions */  /* Encoder related functions */
140  static int enc_init(int use_assembler);  static int enc_init(int use_assembler);
141  static int enc_stop();  static int enc_stop();
142  static int enc_main(unsigned char* image, unsigned char* bitstream,  static int enc_main(unsigned char* image,
143                                          unsigned char *hints_buffer,                                          unsigned char* bitstream,
144                                          long *streamlength, long* frametype, long *hints_size);                                          long *frametype,
145                                            int stats[3]);
146    
147  /*****************************************************************************  /*****************************************************************************
148   *               Main function   *               Main function
# Line 156  Line 154 
154          unsigned char *mp4_buffer = NULL;          unsigned char *mp4_buffer = NULL;
155          unsigned char *in_buffer = NULL;          unsigned char *in_buffer = NULL;
156          unsigned char *out_buffer = NULL;          unsigned char *out_buffer = NULL;
         unsigned char *hints_buffer = NULL;  
157    
158          double enctime;          double enctime;
159          double totalenctime=0.;          double totalenctime=0.;
160    
161          long totalsize;          long totalsize;
         long hints_size;  
162          int status;          int status;
163          long frame_type;          long frame_type;
         long bigendian;  
164    
165          long m4v_size;          long m4v_size;
166          int use_assembler=0;          int use_assembler=0;
# Line 174  Line 169 
169    
170          FILE *in_file = stdin;          FILE *in_file = stdin;
171          FILE *out_file = NULL;          FILE *out_file = NULL;
         FILE *hints_file = NULL;  
172    
173          printf("xvid_encraw - raw mpeg4 bitstream encoder ");          printf("xvid_encraw - raw mpeg4 bitstream encoder ");
174          printf("written by Christoph Lampert 2002\n\n");          printf("written by Christoph Lampert 2002-2003\n\n");
175    
176  /*****************************************************************************  /*****************************************************************************
177   *                            Command line parsing   *                            Command line parsing
# Line 200  Line 194 
194                          i++;                          i++;
195                          ARG_BITRATE = atoi(argv[i]);                          ARG_BITRATE = atoi(argv[i]);
196                  }                  }
197                    else if (strcmp("-bn", argv[i]) == 0 && i < argc - 1 ) {
198                            i++;
199                            ARG_MAXBFRAMES = atoi(argv[i]);
200                    }
201                    else if (strcmp("-bqr", argv[i]) == 0 && i < argc - 1 ) {
202                            i++;
203                            ARG_BQRATIO = atoi(argv[i]);
204                    }
205                    else if (strcmp("-bqo", argv[i]) == 0 && i < argc - 1 ) {
206                            i++;
207                            ARG_BQOFFSET = atoi(argv[i]);
208                    }
209                  else if (strcmp("-q", argv[i]) == 0 && i < argc - 1 ) {                  else if (strcmp("-q", argv[i]) == 0 && i < argc - 1 ) {
210                          i++;                          i++;
211                          ARG_QUALITY = atoi(argv[i]);                          ARG_QUALITY = atoi(argv[i]);
# Line 212  Line 218 
218                          i++;                          i++;
219                          ARG_INPUTFILE = argv[i];                          ARG_INPUTFILE = argv[i];
220                  }                  }
221                    else if (strcmp("-s", argv[i]) == 0) {
222                            ARG_STATS = 1;
223                    }
224                  else if (strcmp("-t", argv[i]) == 0 && i < argc - 1 ) {                  else if (strcmp("-t", argv[i]) == 0 && i < argc - 1 ) {
225                          i++;                          i++;
226                          ARG_INPUTTYPE = atoi(argv[i]);                          ARG_INPUTTYPE = atoi(argv[i]);
# Line 224  Line 233 
233                          i++;                          i++;
234                          ARG_QUANTI = atoi(argv[i]);                          ARG_QUANTI = atoi(argv[i]);
235                  }                  }
236                  else if (strcmp("-m", argv[i]) == 0 && i < argc - 1 ) {                  else if (strcmp("-m", argv[i]) == 0) {
237                          i++;                          ARG_SAVEMPEGSTREAM = 1;
                         ARG_SAVEMPEGSTREAM = atoi(argv[i]);  
                 }  
                 else if (strcmp("-mt", argv[i]) == 0 && i < argc - 1 ) {  
                         i++;  
                         ARG_OUTPUTTYPE = atoi(argv[i]);  
                 }  
                 else if (strcmp("-mv", argv[i]) == 0 && i < argc - 1 ) {  
                         i++;  
                         ARG_HINTMODE = atoi(argv[i]);  
238                  }                  }
239                  else if (strcmp("-o", argv[i]) == 0 && i < argc - 1 ) {                  else if (strcmp("-o", argv[i]) == 0 && i < argc - 1 ) {
240                          i++;                          i++;
# Line 260  Line 260 
260                  ARG_INPUTTYPE = 1; /* pgm */                  ARG_INPUTTYPE = 1; /* pgm */
261          }          }
262    
263          if ( ARG_QUALITY < 0 || ARG_QUALITY > 6) {          if ( ARG_QUALITY < 0 || ARG_QUALITY > 5) {
264                  fprintf(stderr,"Wrong Quality\n");                  fprintf(stderr,"Wrong Quality\n");
265                  return -1;                  return(-1);
266          }          }
267    
268          if ( ARG_BITRATE <= 0 && ARG_QUANTI == 0) {          if ( ARG_BITRATE <= 0 && ARG_QUANTI == 0) {
269                  fprintf(stderr,"Wrong Bitrate\n");                  fprintf(stderr,"Wrong Bitrate\n");
270                  return -1;                  return(-1);
271          }          }
272    
273          if ( ARG_FRAMERATE <= 0) {          if ( ARG_FRAMERATE <= 0) {
274                  fprintf(stderr,"Wrong Framerate %s \n",argv[5]);                  fprintf(stderr,"Wrong Framerate %s \n",argv[5]);
275                  return -1;                  return(-1);
276          }          }
277    
278          if ( ARG_MAXFRAMENR <= 0) {          if ( ARG_MAXFRAMENR <= 0) {
279                  fprintf(stderr,"Wrong number of frames\n");                  fprintf(stderr,"Wrong number of frames\n");
280                  return -1;                  return(-1);
         }  
   
         if ( ARG_HINTMODE != HINT_MODE_NONE &&  
                  ARG_HINTMODE != HINT_MODE_GET &&  
                  ARG_HINTMODE != HINT_MODE_SET)  
                 ARG_HINTMODE = HINT_MODE_NONE;  
   
         if( ARG_HINTMODE != HINT_MODE_NONE) {  
                 char *rights = "rb";  
   
                 /*  
                  * If we are getting hints from core, we will have to write them to  
                  * hint file  
                  */  
                 if(ARG_HINTMODE == HINT_MODE_GET)  
                         rights = "w+b";  
   
                 /* Open the hint file */  
                 hints_file = fopen(HINT_FILE, rights);  
                 if(hints_file == NULL) {  
                         fprintf(stderr, "Error opening input file %s\n", HINT_FILE);  
                         return -1;  
                 }  
   
                 /* Allocate hint memory space, we will be using rawhints */  
                 /* NB : Hope 1Mb is enough */  
                 if((hints_buffer = malloc(1024*1024)) == NULL) {  
                         fprintf(stderr, "Memory allocation error\n");  
                         return -1;  
                 }  
   
281          }          }
282    
283          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
# Line 319  Line 288 
288                  in_file = fopen(ARG_INPUTFILE, "rb");                  in_file = fopen(ARG_INPUTFILE, "rb");
289                  if (in_file == NULL) {                  if (in_file == NULL) {
290                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
291                          return -1;                          return(-1);
292                  }                  }
293          }          }
294    
295          if (ARG_INPUTTYPE) {          if (ARG_INPUTTYPE) {
296                  if (read_pgmheader(in_file)) {                  if (read_pgmheader(in_file)) {
297                          fprintf(stderr, "Wrong input format, I want YUV encapsulated in PGM\n");                          fprintf(stderr, "Wrong input format, I want YUV encapsulated in PGM\n");
298                          return -1;                          return(-1);
299                  }                  }
300          }          }
301    
302          /* now we know the sizes, so allocate memory */          /* now we know the sizes, so allocate memory */
   
303          in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM));          in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM,YDIM));
304          if (!in_buffer)          if (!in_buffer)
305                  goto free_all_memory;                  goto free_all_memory;
# Line 357  Line 325 
325   *                            Main loop   *                            Main loop
326   ****************************************************************************/   ****************************************************************************/
327    
328          totalsize = LONG_PACK('M','P','4','U');          if (ARG_SAVEMPEGSTREAM && ARG_OUTPUTFILE) {
         if(*((char *)(&totalsize)) == 'M')  
                 bigendian = 1;  
         else  
                 bigendian = 0;  
   
         if (ARG_SAVEMPEGSTREAM && (ARG_OUTPUTTYPE || ARG_OUTPUTFILE)) {  
   
                 if (ARG_OUTPUTFILE == NULL && ARG_OUTPUTTYPE)  
                         ARG_OUTPUTFILE = "stream.mp4u";  
                 else if(ARG_OUTPUTFILE == NULL && !ARG_OUTPUTTYPE)  
                         ARG_OUTPUTFILE = "stream.m4v";  
329    
330                  if((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {                  if((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {
331                          fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);                          fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);
332                          goto release_all;                          goto release_all;
333                  }                  }
334    
                 /* Write header */  
                 if (ARG_OUTPUTTYPE) {  
   
                         long test = LONG_PACK('M','P','4','U');  
   
                         test = (!bigendian)?SWAP(test):test;  
   
                         fwrite(&test, sizeof(test), 1, out_file);  
   
                 }  
   
335          }          }
336          else {          else {
337                  out_file = NULL;                  out_file = NULL;
# Line 399  Line 345 
345    
346          do {          do {
347    
348                  if (ARG_INPUTTYPE)                  char *type;
349                          status = read_pgmdata(in_file, in_buffer);      /* read PGM data (YUV-format) */                  int stats[3];
                 else  
                         status = read_yuvdata(in_file, in_buffer);      /* read raw data (YUV-format) */  
350    
351                  if (status)                  if(ARG_INPUTTYPE) {
352                  {                          /* read PGM data (YUV-format) */
353                          /* Couldn't read image, most likely end-of-file */                          status = read_pgmdata(in_file, in_buffer);
354                          continue;                  } else {
355                            /* read raw data (YUV-format) */
356                            status = read_yuvdata(in_file, in_buffer);
357                  }                  }
358    
359  /*****************************************************************************                  if(status) {
360   *                       Read hints from file                          /* Couldn't read image, most likely end-of-file */
361   ****************************************************************************/                          continue;
   
                 if(ARG_HINTMODE == HINT_MODE_SET) {  
                         fread(&hints_size, 1, sizeof(long), hints_file);  
                         hints_size = (!bigendian)?SWAP(hints_size):hints_size;  
                         fread(hints_buffer, 1, hints_size, hints_file);  
362                  }                  }
363    
364  /*****************************************************************************  /*****************************************************************************
# Line 425  Line 366 
366   ****************************************************************************/   ****************************************************************************/
367    
368                  enctime = msecond();                  enctime = msecond();
369                  status = enc_main(in_buffer, mp4_buffer, hints_buffer,                  m4v_size = enc_main(in_buffer, mp4_buffer, &frame_type, stats);
                                                   &m4v_size, &frame_type, &hints_size);  
370                  enctime = msecond() - enctime;                  enctime = msecond() - enctime;
371    
372                  totalenctime += enctime;                  /* Not coded frames return 0 */
373                  totalsize += m4v_size;                  if(m4v_size == 0) goto next_frame;
374    
375                  printf("Frame %5d: intra %1d, enctime=%6.1f ms, size=%6dbytes\n",                  /* Write the Frame statistics */
376                             (int)filenr, (int)frame_type, (float)enctime, (int)m4v_size);                  switch(frame_type) {
377                    case XVID_TYPE_IVOP:
378                            type = "I";
379                            break;
380                    case XVID_TYPE_PVOP:
381                            type = "P";
382                            break;
383                    case XVID_TYPE_BVOP:
384                            type = "B";
385                            break;
386                    case XVID_TYPE_SVOP:
387                            type = "S";
388                            break;
389                    case XVID_TYPE_NOTHING:
390                            type = "N";
391                            break;
392                    default:
393                            type = "U";
394                            break;
395                    }
396    
397                    printf("Frame %5d: type = %s, enctime(ms) =%6.1f, length(bytes) =%7d",
398                               (int)filenr,
399                               type,
400                               (float)enctime,
401                               (int)m4v_size);
402    
403                    if(ARG_STATS) {
404                            printf(", psnr y = %2.2f, psnr u = %2.2f, psnr v = %2.2f",
405                                       (stats[0] == 0)? 0.0f: 48.131f - 10*(float)log10((float)stats[0]/((float)(XDIM)*(YDIM))),
406                                       (stats[1] == 0)? 0.0f: 48.131f - 10*(float)log10((float)stats[1]/((float)(XDIM)*(YDIM)/4)),
407                                       (stats[2] == 0)? 0.0f: 48.131f - 10*(float)log10((float)stats[2]/((float)(XDIM)*(YDIM)/4)));
408                    }
409    
410  /*****************************************************************************                  printf("\n");
  *                       Save hints to file  
  ****************************************************************************/  
411    
412                  if(ARG_HINTMODE == HINT_MODE_GET) {                  /* Update encoding time stats */
413                          hints_size = (!bigendian)?SWAP(hints_size):hints_size;                  totalenctime += enctime;
414                          fwrite(&hints_size, 1, sizeof(long), hints_file);                  totalsize += m4v_size;
                         hints_size = (!bigendian)?SWAP(hints_size):hints_size;  
                         fwrite(hints_buffer, 1, hints_size, hints_file);  
                 }  
415    
416  /*****************************************************************************  /*****************************************************************************
417   *                       Save stream to file   *                       Save stream to file
# Line 461  Line 428 
428                                  out_file = NULL;                                  out_file = NULL;
429                          }                          }
430                          else {                          else {
                                 /* Using mp4u container */  
                                 if (ARG_OUTPUTTYPE) {  
                                         long size = m4v_size;  
                                         size = (!bigendian)?SWAP(size):size;  
                                         fwrite(&size, sizeof(size), 1, out_file);  
                                 }  
431    
432                                  /* Write mp4 data */                                  /* Write mp4 data */
433                                  fwrite(mp4_buffer, m4v_size, 1, out_file);                                  fwrite(mp4_buffer, 1, m4v_size, out_file);
434    
435                          }                          }
436                  }                  }
437    
438            next_frame:
439                  /* Read the header if it's pgm stream */                  /* Read the header if it's pgm stream */
440                  if (ARG_INPUTTYPE)                  if (ARG_INPUTTYPE)
441                          status = read_pgmheader(in_file);                          status = read_pgmheader(in_file);
# Line 491  Line 453 
453          totalsize    /= filenr;          totalsize    /= filenr;
454          totalenctime /= filenr;          totalenctime /= filenr;
455    
456          printf("Avg: enctime %5.2f ms, %5.2f fps, filesize %7d bytes\n",          printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d\n",
457                     totalenctime, 1000/totalenctime, (int)totalsize);                     totalenctime, 1000/totalenctime, (int)totalsize);
458    
459    
460  /*****************************************************************************  /*****************************************************************************
461   *                            XviD PART  Stop   *                            XviD PART  Stop
462   ****************************************************************************/   ****************************************************************************/
# Line 511  Line 474 
474                  fclose(in_file);                  fclose(in_file);
475          if(out_file)          if(out_file)
476                  fclose(out_file);                  fclose(out_file);
         if(hints_file)  
                 fclose(hints_file);  
477    
478   free_all_memory:   free_all_memory:
479          free(out_buffer);          free(out_buffer);
480          free(mp4_buffer);          free(mp4_buffer);
481          free(in_buffer);          free(in_buffer);
         if(hints_buffer) free(hints_buffer);  
482    
483          return 0;          return(0);
484    
485  }  }
486    
# Line 539  Line 499 
499  #ifndef WIN32  #ifndef WIN32
500          struct timeval  tv;          struct timeval  tv;
501          gettimeofday(&tv, 0);          gettimeofday(&tv, 0);
502          return tv.tv_sec*1.0e3 + tv.tv_usec * 1.0e-3;          return(tv.tv_sec*1.0e3 + tv.tv_usec * 1.0e-3);
503  #else  #else
504          clock_t clk;          clock_t clk;
505          clk = clock();          clk = clock();
506          return clk * 1000 / CLOCKS_PER_SEC;          return(clk * 1000 / CLOCKS_PER_SEC);
507  #endif  #endif
508  }  }
509    
# Line 554  Line 514 
514  static void usage()  static void usage()
515  {  {
516    
517          fprintf(stderr, "Usage : xvid_encraw [OPTIONS]\n");          fprintf(stderr, "Usage : xvid_stat [OPTIONS]\n");
518          fprintf(stderr, "Options :\n");          fprintf(stderr, "Options :\n");
         fprintf(stderr, " -asm           : use assembly code\n");  
519          fprintf(stderr, " -w integer     : frame width ([1.2048])\n");          fprintf(stderr, " -w integer     : frame width ([1.2048])\n");
520          fprintf(stderr, " -h integer     : frame height ([1.2048])\n");          fprintf(stderr, " -h integer     : frame height ([1.2048])\n");
521          fprintf(stderr, " -b integer     : target bitrate (>0 | default=900kbit)\n");          fprintf(stderr, " -b integer     : target bitrate (>0 | default=900kbit)\n");
522            fprintf(stderr, " -bn integer    : max bframes (default=0)\n");
523            fprintf(stderr, " -bqr integer   : bframe quantizer ratio (default=150)\n");
524            fprintf(stderr, " -bqo integer   : bframe quantizer offset (default=100)\n");
525          fprintf(stderr, " -f float       : target framerate (>0)\n");          fprintf(stderr, " -f float       : target framerate (>0)\n");
526          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
527            fprintf(stderr, " -s             : print stats about encoded frames\n");
528          fprintf(stderr, " -t integer     : input data type (yuv=0, pgm=1)\n");          fprintf(stderr, " -t integer     : input data type (yuv=0, pgm=1)\n");
529          fprintf(stderr, " -n integer     : number of frames to encode\n");          fprintf(stderr, " -n integer     : number of frames to encode\n");
530          fprintf(stderr, " -q integer     : quality ([0..5])\n");          fprintf(stderr, " -q integer     : quality ([0..5])\n");
531          fprintf(stderr, " -m boolean     : save mpeg4 raw stream (0 False*, !=0 True)\n");          fprintf(stderr, " -d boolean     : save decoder output (0 False*, !=0 True)\n");
532            fprintf(stderr, " -m             : save mpeg4 raw stream\n");
533          fprintf(stderr, " -o string      : output container filename (only usefull when -m 1 is used) :\n");          fprintf(stderr, " -o string      : output container filename (only usefull when -m 1 is used) :\n");
534          fprintf(stderr, "                  When this option is not used : one file per encoded frame\n");          fprintf(stderr, "                  When this option is not used : one file per encoded frame\n");
535          fprintf(stderr, "                  When this option is used :\n");          fprintf(stderr, "                  When this option is used : save to 'string' file\n");
         fprintf(stderr, "                    + stream.m4v with -mt 0\n");  
         fprintf(stderr, "                    + stream.mp4u with -mt 1\n");  
         fprintf(stderr, " -mt integer    : output type (m4v=0, mp4u=1)\n");  
         fprintf(stderr, " -mv integer    : Use motion vector hints (no hints=0, get hints=1, set hints=2)\n");  
536          fprintf(stderr, " -help          : prints this help message\n");          fprintf(stderr, " -help          : prints this help message\n");
537          fprintf(stderr, " -quant integer : fixed quantizer (disables -b setting)\n");          fprintf(stderr, " -quant integer : fixed quantizer (disables -b setting)\n");
538          fprintf(stderr, " (* means default)\n");          fprintf(stderr, " (* means default)\n");
# Line 595  Line 555 
555          bytes = fread(dummy,1,2,handle);          bytes = fread(dummy,1,2,handle);
556    
557          if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))          if ( (bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5' ))
558                  return 1;                  return(1);
559    
560          fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);          fscanf(handle,"%d %d %d",&xsize,&ysize,&depth);
561          if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )          if ( (xsize > 1440) || (ysize > 2880 ) || (depth != 255) )
562          {          {
563                  fprintf(stderr,"%d %d %d\n",xsize,ysize,depth);                  fprintf(stderr,"%d %d %d\n",xsize,ysize,depth);
564                  return 2;                  return(2);
565          }          }
566          if ( (XDIM==0) || (YDIM==0) )          if ( (XDIM==0) || (YDIM==0) )
567          {          {
# Line 609  Line 569 
569                  YDIM=ysize*2/3;                  YDIM=ysize*2/3;
570          }          }
571    
572          return 0;          return(0);
573  }  }
574    
575  static int read_pgmdata(FILE* handle, unsigned char *image)  static int read_pgmdata(FILE* handle, unsigned char *image)
# Line 640  Line 600 
600      /*  I don't know why, but this seems needed */      /*  I don't know why, but this seems needed */
601          fread(&dummy, 1, 1, handle);          fread(&dummy, 1, 1, handle);
602    
603          return 0;          return(0);
604  }  }
605    
606  static int read_yuvdata(FILE* handle, unsigned char *image)  static int read_yuvdata(FILE* handle, unsigned char *image)
607  {  {
608    
609          if (fread(image, 1, IMAGE_SIZE(XDIM, YDIM), handle) != (unsigned int)IMAGE_SIZE(XDIM, YDIM))          if (fread(image, 1, IMAGE_SIZE(XDIM, YDIM), handle) != (unsigned int)IMAGE_SIZE(XDIM, YDIM))
610                  return 1;                  return(1);
611          else          else
612                  return 0;                  return(0);
613  }  }
614    
615  /*****************************************************************************  /*****************************************************************************
# Line 663  Line 623 
623  {  {
624          int xerr;          int xerr;
625    
626          XVID_INIT_PARAM xinit;          xvid_gbl_init_t   xvid_gbl_init;
627          XVID_ENC_PARAM xparam;          xvid_enc_create_t xvid_enc_create;
628    
629            /*------------------------------------------------------------------------
630             * XviD core initialization
631             *----------------------------------------------------------------------*/
632    
633            /* Set version -- version checking will done by xvidcore*/
634            xvid_gbl_init.version = XVID_VERSION;
635    
636            /* Do we have to enable ASM optimizations ? */
637          if(use_assembler) {          if(use_assembler) {
638    
639  #ifdef ARCH_IA64  #ifdef ARCH_IS_IA64
640                  xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
641  #else  #else
642                  xinit.cpu_flags = 0;                  xvid_gbl_init.cpu_flags = 0;
643  #endif  #endif
644          }          }
645          else {          else {
646                  xinit.cpu_flags = XVID_CPU_FORCE;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
647          }          }
648    
649          xvid_init(NULL, 0, &xinit, NULL);          /* Initialize XviD core -- Should be done once per __process__ */
650            xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
651    
652          xparam.width = XDIM;          /*------------------------------------------------------------------------
653          xparam.height = YDIM;           * XviD encoder initialization
654          if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS)           *----------------------------------------------------------------------*/
655          {  
656                  xparam.fincr = 1;          /* Version again */
657                  xparam.fbase = (int)ARG_FRAMERATE;          xvid_enc_create.version = XVID_VERSION;
658          }  
659          else          /* Width and Height of input frames */
660          {          xvid_enc_create.width = XDIM;
661                  xparam.fincr = FRAMERATE_INCR;          xvid_enc_create.height = YDIM;
662                  xparam.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);  
663            /* No fancy thread tests */
664            xvid_enc_create.num_threads = 0;
665    
666            /* Frame rate - Do some quick float fps = fincr/fbase hack */
667            if ((ARG_FRAMERATE - (int)ARG_FRAMERATE) < SMALL_EPS) {
668                    xvid_enc_create.fincr = 1;
669                    xvid_enc_create.fbase = (int)ARG_FRAMERATE;
670            } else {
671                    xvid_enc_create.fincr = FRAMERATE_INCR;
672                    xvid_enc_create.fbase = (int)(FRAMERATE_INCR * ARG_FRAMERATE);
673          }          }
674          xparam.rc_reaction_delay_factor = 16;  
675      xparam.rc_averaging_period = 100;          /* Maximum key frame interval */
676      xparam.rc_buffer = 10;          xvid_enc_create.max_key_interval = (int)ARG_FRAMERATE*10;
677          xparam.rc_bitrate = ARG_BITRATE*1000;  
678          xparam.min_quantizer = ARG_MINQUANT;          /* Bframes settings */
679          xparam.max_quantizer = ARG_MAXQUANT;          xvid_enc_create.max_bframes = ARG_MAXBFRAMES;
680          xparam.max_key_interval = (int)ARG_FRAMERATE*10;          xvid_enc_create.bquant_ratio = ARG_BQRATIO;
681            xvid_enc_create.bquant_offset = ARG_BQOFFSET;
682    
683            /* Dropping ratio frame -- we don't need that */
684            xvid_enc_create.frame_drop_ratio = 0;
685    
686            /* Global encoder options */
687            xvid_enc_create.global = (ARG_STATS)?XVID_EXTRASTATS_ENABLE:0;
688    
689          /* I use a small value here, since will not encode whole movies, but short clips */          /* I use a small value here, since will not encode whole movies, but short clips */
690            xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
691    
692          xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xparam, NULL);          /* Retrieve the encoder instance from the structure */
693          enc_handle=xparam.handle;          enc_handle = xvid_enc_create.handle;
694    
695          return xerr;          return(xerr);
696  }  }
697    
698  static int enc_stop()  static int enc_stop()
699  {  {
700          int xerr;          int xerr;
701    
702            /* Destroy the encoder instance */
703          xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);          xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);
         return xerr;  
704    
705            return(xerr);
706  }  }
707    
708  static int enc_main(unsigned char* image, unsigned char* bitstream,  static int enc_main(unsigned char* image,
709                                          unsigned char* hints_buffer,                                          unsigned char* bitstream,
710                                          long *streamlength, long *frametype, long *hints_size)                                          long *frametype,
711                                            int stats[3])
712  {  {
713          int xerr;          int ret;
714    
715          XVID_ENC_FRAME xframe;          xvid_enc_frame_t xvid_enc_frame;
716          XVID_ENC_STATS xstats;          xvid_enc_stats_t xvid_enc_stats[2];
717    
718          xframe.bitstream = bitstream;          /* Version for the frame and the stats */
719          xframe.length = -1;     /* this is written by the routine */          xvid_enc_frame.version = XVID_VERSION;
720            xvid_enc_stats[0].version = XVID_VERSION;
721            xvid_enc_stats[1].version = XVID_VERSION;
722    
723          xframe.image = image;          /* Bind output buffer */
724          xframe.colorspace = XVID_CSP_YV12;      /* defined in <xvid.h> */          xvid_enc_frame.bitstream = bitstream;
725            xvid_enc_frame.length = -1;
726    
727          xframe.intra = -1; /* let the codec decide between I-frame (1) and P-frame (0) */          /* Initialize input image fields */
728            xvid_enc_frame.input.plane[0]  = image;
729            xvid_enc_frame.input.csp       = XVID_CSP_I420;
730            xvid_enc_frame.input.stride[0] = XDIM;
731    
732          xframe.quant = ARG_QUANTI;      /* is quant != 0, use a fixed quant (and ignore bitrate) */          /* Set up core's general features */
733            xvid_enc_frame.vol_flags = vol_presets[ARG_QUALITY];
734    
735          xframe.motion = motion_presets[ARG_QUALITY];          /* Set up core's general features */
736          xframe.general = general_presets[ARG_QUALITY];          xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];
         xframe.quant_intra_matrix = xframe.quant_inter_matrix = NULL;  
737    
738          xframe.hint.hintstream = hints_buffer;          /* Frame type -- let core decide for us */
739            xvid_enc_frame.type   = XVID_TYPE_AUTO;
740    
741          if(ARG_HINTMODE == HINT_MODE_SET) {          /* Force the right quantizer */
742                  xframe.hint.hintlength = *hints_size;          xvid_enc_frame.quant  = ARG_QUANTI;
743                  xframe.hint.rawhints = 0;          xvid_enc_frame.bquant = 0;
                 xframe.general |= XVID_HINTEDME_SET;  
         }  
744    
745          if(ARG_HINTMODE == HINT_MODE_GET) {          /* Set up motion estimation flags */
746                  xframe.hint.rawhints = 0;          xvid_enc_frame.motion = motion_presets[ARG_QUALITY];
747                  xframe.general |= XVID_HINTEDME_GET;  
748          }          /* We don't use special matrices */
749            xvid_enc_frame.quant_intra_matrix = NULL;
750            xvid_enc_frame.quant_inter_matrix = NULL;
751    
752          xerr = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xframe, &xstats);          /* Foll proof */
753            xvid_enc_stats[0].sse_y = 0;
754            xvid_enc_stats[0].sse_v = 0;
755            xvid_enc_stats[0].sse_u = 0;
756    
757          if(ARG_HINTMODE == HINT_MODE_GET)          /* Encode the frame */
758                  *hints_size = xframe.hint.hintlength;          xvid_enc_frame.vop_flags |= (ARG_STATS)?XVID_EXTRASTATS:0;
759            ret = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame, &xvid_enc_stats);
760    
761          /*          *frametype = xvid_enc_stats[0].type;
762           * This is statictical data, e.g. for 2-pass. If you are not          stats[0]   = xvid_enc_stats[0].sse_y;
763           * interested in any of this, you can use NULL instead of &xstats          stats[1]   = xvid_enc_stats[0].sse_u;
764           */          stats[2]   = xvid_enc_stats[0].sse_v;
         *frametype = xframe.intra;  
         *streamlength = xframe.length;  
765    
766          return xerr;          return(ret);
767  }  }

Legend:
Removed from v.830  
changed lines
  Added in v.916

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