[svn] / branches / release-1_3-branch / xvidcore / examples / xvid_encraw.c Repository:
ViewVC logotype

Diff of /branches/release-1_3-branch/xvidcore/examples/xvid_encraw.c

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

trunk/xvidcore/examples/xvid_encraw.c revision 1812, Thu Nov 27 20:17:39 2008 UTC branches/release-1_3-branch/xvidcore/examples/xvid_encraw.c revision 2129, Wed Jul 8 17:32:58 2015 UTC
# Line 6  Line 6 
6   *  Copyright(C) 2002-2003 Christoph Lampert <gruel@web.de>   *  Copyright(C) 2002-2003 Christoph Lampert <gruel@web.de>
7   *               2002-2003 Edouard Gomez <ed.gomez@free.fr>   *               2002-2003 Edouard Gomez <ed.gomez@free.fr>
8   *               2003      Peter Ross <pross@xvid.org>   *               2003      Peter Ross <pross@xvid.org>
9     *               2003-2014 Michael Militzer <isibaar@xvid.org>
10   *   *
11   *  This program is free software; you can redistribute it and/or modify   *  This program is free software; you can redistribute it and/or modify
12   *  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 21  Line 22 
22   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
23   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24   *   *
25   * $Id: xvid_encraw.c,v 1.37 2008-11-27 20:17:39 Isibaar Exp $   * $Id$
26   *   *
27   ****************************************************************************/   ****************************************************************************/
28    
# Line 39  Line 40 
40   ************************************************************************/   ************************************************************************/
41    
42  #include <stdio.h>  #include <stdio.h>
 //#include <io.h>  
43  #include <stdlib.h>  #include <stdlib.h>
44  #include <string.h>  #include <string.h>
45  #include <math.h>  #include <math.h>
46    #include <ctype.h>
47  #ifndef WIN32  #ifndef WIN32
48  #include <sys/time.h>  #include <sys/time.h>
49  #else  #else
# Line 54  Line 55 
55  #endif  #endif
56    
57  #include "xvid.h"  #include "xvid.h"
58    #include "portab.h" /* for pthread */
59    
60  #ifdef XVID_MKV_OUTPUT  #ifdef XVID_MKV_OUTPUT
61  #include "matroska.cpp"  #include "matroska.cpp"
# Line 61  Line 63 
63    
64  #undef READ_PNM  #undef READ_PNM
65    
66    //#define USE_APP_LEVEL_THREADING /* Should xvid_encraw app use multi-threading? */
67    
68  /*****************************************************************************  /*****************************************************************************
69   *                            Quality presets   *                            Quality presets
70   ****************************************************************************/   ****************************************************************************/
# Line 121  Line 125 
125   ****************************************************************************/   ****************************************************************************/
126    
127  #define MAX_ZONES   64  #define MAX_ZONES   64
128    #define MAX_ENC_INSTANCES 4
129    #define MAX_XDIM 4096
130    #define MAX_YDIM 4096
131  #define DEFAULT_QUANT 400  #define DEFAULT_QUANT 400
132    #define DEFAULT_BITRATE 700000 /* bitrate expressed in bps, not kbps */
133    #define DEFAULT_INTERLACING 1  /* 1:BFF, 2:TFF */
134    #define DEFAULT_SSIM 2
135    #define DEFAULT_PROGRESS 10    /* show progress every 10 frames by default */
136    
137  typedef struct  typedef struct
138  {  {
# Line 145  Line 155 
155          int quants[32];          int quants[32];
156  } frame_stats_t;  } frame_stats_t;
157    
158    typedef struct
159    {
160            pthread_t handle;       /* thread's handle */
161    
162            int start_num;          /* begin/end of sequence */
163            int stop_num;
164    
165            char *outfilename;      /* output filename */
166            char *outavifilename;   /* output avi filename */
167            char *outmkvfilename;   /* output mkv filename */
168            char *statsfilename1;   /* pass1 statsfile */
169    
170            int input_num;
171    
172            int totalsize;          /* encoder stats */
173            double totalenctime;
174            float totalPSNR[3];
175            frame_stats_t framestats[7];
176    } enc_sequence_data_t;
177    
178  /* Maximum number of frames to encode */  /* Maximum number of frames to encode */
179  #define ABS_MAXFRAMENR -1 /* no limit */  #define ABS_MAXFRAMENR -1 /* no limit */
180    
# Line 162  Line 192 
192    
193  static zone_t ZONES[MAX_ZONES];  static zone_t ZONES[MAX_ZONES];
194  static  int NUM_ZONES = 0;  static  int NUM_ZONES = 0;
 static  frame_stats_t framestats[7];  
195    
196  static  int ARG_STATS = 0;  static  int ARG_NUM_APP_THREADS = 1;
197    static  int ARG_CPU_FLAGS = 0;
198  static  int ARG_SSIM = -1;  static  int ARG_SSIM = -1;
199  static  char* ARG_SSIM_PATH = NULL;  static  char* ARG_SSIM_PATH = NULL;
200  static  int ARG_DUMP = 0;  static  int ARG_DUMP = 0;
# Line 176  Line 206 
206  static  char *ARG_PASS2 = 0;  static  char *ARG_PASS2 = 0;
207  //static int ARG_QUALITY = ME_ELEMENTS - 1;  //static int ARG_QUALITY = ME_ELEMENTS - 1;
208  static  int ARG_QUALITY = 6;  static  int ARG_QUALITY = 6;
209  static  float ARG_FRAMERATE = 25.00f;  static  float ARG_FRAMERATE = 0.f;
210  static  int ARG_DWRATE = 25;  static  int ARG_DWRATE = 25;
211  static  int ARG_DWSCALE = 1;  static  int ARG_DWSCALE = 1;
212  static  int ARG_MAXFRAMENR = ABS_MAXFRAMENR;  static  int ARG_MAXFRAMENR = ABS_MAXFRAMENR;
# Line 187  Line 217 
217  static  int ARG_SAVEMPEGSTREAM = 0;  static  int ARG_SAVEMPEGSTREAM = 0;
218  static  int ARG_SAVEINDIVIDUAL = 0;  static  int ARG_SAVEINDIVIDUAL = 0;
219  static  char *ARG_OUTPUTFILE = NULL;  static  char *ARG_OUTPUTFILE = NULL;
 #ifdef XVID_AVI_OUTPUT  
220  static  char *ARG_AVIOUTPUTFILE = NULL;  static  char *ARG_AVIOUTPUTFILE = NULL;
 #endif  
 #ifdef XVID_MKV_OUTPUT  
221  static  char *ARG_MKVOUTPUTFILE = NULL;  static  char *ARG_MKVOUTPUTFILE = NULL;
 #endif  
 #ifdef XVID_AVI_INPUT  
 static  PAVISTREAM avi_stream = NULL;  
 static  PAVIFILE avi_file = NULL;  
 static  LPBITMAPINFOHEADER info_header = NULL;  
 static  PGETFRAME get_frame = NULL;  
 #else  
 #define get_frame NULL  
 #endif  
222  static  char *ARG_TIMECODEFILE = NULL;  static  char *ARG_TIMECODEFILE = NULL;
223  static  int XDIM = 0;  static  int XDIM = 0;
224  static  int YDIM = 0;  static  int YDIM = 0;
225  static  int ARG_BQRATIO = 150;  static  int ARG_BQRATIO = 150;
226  static  int ARG_BQOFFSET = 100;  static  int ARG_BQOFFSET = 100;
227  static  int ARG_MAXBFRAMES = 2;  static  int ARG_MAXBFRAMES = 2;
 static  int ARG_PACKED = 1;  
228  static  int ARG_DEBUG = 0;  static  int ARG_DEBUG = 0;
 static  int ARG_VOPDEBUG = 0;  
 static  int ARG_TRELLIS = 1;  
229  static  int ARG_QTYPE = 0;  static  int ARG_QTYPE = 0;
230  static  int ARG_QMATRIX = 0;  static  int ARG_QMATRIX = 0;
 static  int ARG_GMC = 0;  
231  static  int ARG_INTERLACING = 0;  static  int ARG_INTERLACING = 0;
 static  int ARG_QPEL = 0;  
 static  int ARG_TURBO = 0;  
232  static  int ARG_VHQMODE = 1;  static  int ARG_VHQMODE = 1;
233  static  int ARG_BVHQ = 0;  static  int ARG_QMETRIC = 0;
 static  int ARG_CLOSED_GOP = 1;  
 static  int ARG_CHROMAME = 1;  
234  static  int ARG_PAR = 1;  static  int ARG_PAR = 1;
235  static  int ARG_PARHEIGHT;  static  int ARG_PARHEIGHT;
236  static  int ARG_PARWIDTH;  static  int ARG_PARWIDTH;
# Line 244  Line 254 
254  static  int ARG_VBVMAXRATE = 0;  static  int ARG_VBVMAXRATE = 0;
255  static  int ARG_VBVPEAKRATE = 0;  static  int ARG_VBVPEAKRATE = 0;
256  static  int ARG_THREADS = 0;  static  int ARG_THREADS = 0;
257  static  int ARG_VFR = 0;  static  int ARG_SLICES = 1;
258  static  int ARG_PROGRESS = 0;  static  int ARG_PROGRESS = 0;
259  static  int ARG_COLORSPACE = XVID_CSP_YV12;  static  int ARG_COLORSPACE = XVID_CSP_YV12;
260          /* the path where to save output */          /* the path where to save output */
261  static char filepath[256] = "./";  static char filepath[256] = "./";
262          /* Internal structures (handles) for encoding and decoding */  
263  static  void *enc_handle = NULL;  /* on/off options */
264    static  int ARG_USE_ASSEMBLER = 1;
265    static  int ARG_TURBO         = 0;
266    static  int ARG_BVHQ          = 0;
267    static  int ARG_QPEL          = 0;
268    static  int ARG_GMC           = 0;
269    static  int ARG_PACKED        = 1;
270    static  int ARG_CLOSED_GOP    = 1;
271    static  int ARG_STATS         = 0;
272    static  int ARG_PSNRHVSM      = 0;
273    static  int ARG_VOPDEBUG      = 0;
274    static  int ARG_CHROMAME      = 1;
275    static  int ARG_TRELLIS       = 1;
276    
277  static  unsigned char qmatrix_intra[64];  static  unsigned char qmatrix_intra[64];
278  static  unsigned char qmatrix_inter[64];  static  unsigned char qmatrix_inter[64];
279    
# Line 292  Line 315 
315                                                  unsigned char *image);                                                  unsigned char *image);
316    
317  /* Encoder related functions */  /* Encoder related functions */
318  static int enc_init(int use_assembler);  static void enc_gbl(int use_assembler);
319    static int  enc_init(void **enc_handle, char *stats_pass1, int start_num);
320  static int enc_info();  static int enc_info();
321  static int enc_stop();  static int  enc_stop(void *enc_handle);
322  static int enc_main(unsigned char *image,  static int  enc_main(void *enc_handle,
323                                             unsigned char *image,
324                                          unsigned char *bitstream,                                          unsigned char *bitstream,
325                                          int *key,                                          int *key,
326                                          int *stats_type,                                          int *stats_type,
# Line 303  Line 328 
328                                          int *stats_length,                                          int *stats_length,
329                                          int stats[3],                                          int stats[3],
330                                          int framenum);                                          int framenum);
331    static void encode_sequence(enc_sequence_data_t *h);
332    
333  /* Zone Related Functions */  /* Zone Related Functions */
334  static void apply_zone_modifiers(xvid_enc_frame_t * frame, int framenum);  static void apply_zone_modifiers(xvid_enc_frame_t * frame, int framenum);
# Line 321  Line 347 
347  main(int argc,  main(int argc,
348           char *argv[])           char *argv[])
349  {  {
   
         unsigned char *mp4_buffer = NULL;  
         unsigned char *in_buffer = NULL;  
         unsigned char *out_buffer = NULL;  
   
         double enctime;  
350          double totalenctime = 0.;          double totalenctime = 0.;
351          float totalPSNR[3] = {0., 0., 0.};          float totalPSNR[3] = {0., 0., 0.};
352    
353          FILE *statsfile;          FILE *statsfile;
354            frame_stats_t framestats[7];
355    
356          int totalsize;          int input_num = 0;
357          int result;          int totalsize = 0;
358          int m4v_size;          int use_assembler = ARG_USE_ASSEMBLER;
         int key;  
         int stats_type;  
         int stats_quant;  
         int stats_length;  
         int use_assembler = 1;  
         int fakenvop = 0;  
359          int i;          int i;
         int nvop_counter;  
   
         int input_num;  
         int output_num;  
   
         char filename[256];  
   
         FILE *in_file = stdin;  
         FILE *out_file = NULL;  
         FILE *time_file = NULL;  
   
 #ifdef XVID_AVI_OUTPUT  
         int avierr;  
         PAVIFILE myAVIFile=NULL;  
         PAVISTREAM myAVIStream=NULL;  
         AVISTREAMINFO myAVIStreamInfo;  
         BITMAPINFOHEADER myBitmapInfoHeader;  
         AVIFileInit();  
 #endif  
 #ifdef XVID_MKV_OUTPUT  
         PMKVFILE myMKVFile=NULL;  
         PMKVSTREAM myMKVStream=NULL;  
         MKVSTREAMINFO myMKVStreamInfo;  
 #endif  
360    
361          printf("xvid_encraw - raw mpeg4 bitstream encoder ");          printf("xvid_encraw - raw mpeg4 bitstream encoder ");
362          printf("written by Christoph Lampert 2002-2003\n\n");          printf("written by Christoph Lampert\n\n");
363    
364          /* Is there a dumb XviD coder ? */          /* Is there a dumb Xvid coder ? */
365          if(ME_ELEMENTS != VOP_ELEMENTS) {          if(ME_ELEMENTS != VOP_ELEMENTS) {
366                  fprintf(stderr, "Presets' arrays should have the same number of elements -- Please fill a bug to xvid-devel@xvid.org\n");                  fprintf(stderr, "Presets' arrays should have the same number of elements -- Please file a bug to xvid-devel@xvid.org\n");
367                  return(-1);                  return(-1);
368          }          }
369    
370            /* Clear framestats */
371            memset(framestats, 0, sizeof(framestats));
372    
373  /*****************************************************************************  /*****************************************************************************
374   *                            Command line parsing   *                            Command line parsing
375   ****************************************************************************/   ****************************************************************************/
# Line 406  Line 401 
401                                  ARG_BITRATE = atoi(argv[i+1]);                                  ARG_BITRATE = atoi(argv[i+1]);
402                          if (ARG_BITRATE) {                          if (ARG_BITRATE) {
403                                  i++;                                  i++;
404                                  if (ARG_BITRATE <= 10000)                                  if (ARG_BITRATE <= 20000)
405                                          /* if given parameter is <= 10000, assume it means kbps */                                          /* if given parameter is <= 20000, assume it means kbps */
406                                          ARG_BITRATE *= 1000;                                          ARG_BITRATE *= 1000;
407                          }                          }
408                          else                          else
409                                  ARG_BITRATE = 700000;                                  ARG_BITRATE = DEFAULT_BITRATE;
410                  } else if (strcmp("-size", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-size", argv[i]) == 0 && i < argc - 1) {
411                          i++;                          i++;
412                          ARG_TARGETSIZE = atoi(argv[i]);                          ARG_TARGETSIZE = atoi(argv[i]);
# Line 460  Line 455 
455                          ARG_PACKED = 2;                          ARG_PACKED = 2;
456                  } else if (strcmp("-nochromame", argv[i]) == 0) {                  } else if (strcmp("-nochromame", argv[i]) == 0) {
457                          ARG_CHROMAME = 0;                          ARG_CHROMAME = 0;
458                    } else if (strcmp("-chromame", argv[i]) == 0) {
459                            ARG_CHROMAME = 1;
460                  } else if (strcmp("-threads", argv[i]) == 0 && i < argc -1) {                  } else if (strcmp("-threads", argv[i]) == 0 && i < argc -1) {
461                          i++;                          i++;
462                          ARG_THREADS = atoi(argv[i]);                          ARG_THREADS = atoi(argv[i]);
463                    } else if (strcmp("-slices", argv[i]) == 0 && i < argc -1) {
464                            i++;
465                            ARG_SLICES = atoi(argv[i]);
466                  } else if (strcmp("-bquant_ratio", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-bquant_ratio", argv[i]) == 0 && i < argc - 1) {
467                          i++;                          i++;
468                          ARG_BQRATIO = atoi(argv[i]);                          ARG_BQRATIO = atoi(argv[i]);
# Line 497  Line 497 
497                                  memset(&ZONES[NUM_ZONES], 0, sizeof(zone_t));                                  memset(&ZONES[NUM_ZONES], 0, sizeof(zone_t));
498    
499                                  ZONES[NUM_ZONES].frame = startframe;                                  ZONES[NUM_ZONES].frame = startframe;
500                                  ZONES[NUM_ZONES].modifier = atof(options)*100;                                  ZONES[NUM_ZONES].modifier = (int)(atof(options)*100);
501                                  if (toupper(c)=='Q')                                  if (toupper(c)=='Q')
502                                          ZONES[NUM_ZONES].mode = XVID_ZONE_QUANT;                                          ZONES[NUM_ZONES].mode = XVID_ZONE_QUANT;
503                                  else if (toupper(c)=='W')                                  else if (toupper(c)=='W')
# Line 510  Line 510 
510                                  if ((frameoptions=strchr(options, ','))!=NULL) {                                  if ((frameoptions=strchr(options, ','))!=NULL) {
511                                          int readchar=0, count;                                          int readchar=0, count;
512                                          frameoptions++;                                          frameoptions++;
513                                          while (readchar<strlen(frameoptions)) {                                          while (readchar<(int)strlen(frameoptions)) {
514                                                  if (sscanf(frameoptions+readchar, "%d%n", &(ZONES[NUM_ZONES].bvop_threshold), &count)==1) {                                                  if (sscanf(frameoptions+readchar, "%d%n", &(ZONES[NUM_ZONES].bvop_threshold), &count)==1) {
515                                                          readchar += count;                                                          readchar += count;
516                                                  }                                                  }
# Line 548  Line 548 
548                          else {                          else {
549                                  ZONES[NUM_ZONES].mode = XVID_ZONE_WEIGHT;                                  ZONES[NUM_ZONES].mode = XVID_ZONE_WEIGHT;
550                          }                          }
551                          ZONES[NUM_ZONES].modifier = atof(argv[i+2])*100;                          ZONES[NUM_ZONES].modifier = (int)(atof(argv[i+2])*100);
552                          i++;                          i++;
553              ZONES[NUM_ZONES].frame = atoi(argv[i]);              ZONES[NUM_ZONES].frame = atoi(argv[i]);
554                          i++;                          i++;
# Line 568  Line 568 
568                  } else if (strcmp("-vhqmode", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-vhqmode", argv[i]) == 0 && i < argc - 1) {
569                          i++;                          i++;
570                          ARG_VHQMODE = atoi(argv[i]);                          ARG_VHQMODE = atoi(argv[i]);
571                    } else if (strcmp("-metric", argv[i]) == 0 && i < argc - 1) {
572                            i++;
573                            ARG_QMETRIC = atoi(argv[i]);
574                  } else if (strcmp("-framerate", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-framerate", argv[i]) == 0 && i < argc - 1) {
575                          int exponent;                          int exponent;
576                          i++;                          i++;
577                          ARG_FRAMERATE = (float) atof(argv[i]);                          ARG_FRAMERATE = (float) atof(argv[i]);
578                          exponent = strcspn(argv[i], ".");                          exponent = (int) strcspn(argv[i], ".");
579                          if (exponent<strlen(argv[i]))                          if (exponent<(int)strlen(argv[i]))
580                                  exponent=pow(10.0, (int)(strlen(argv[i])-1-exponent));                                  exponent=(int)pow(10.0, (int)(strlen(argv[i])-1-exponent));
581                          else                          else
582                                  exponent=1;                                  exponent=1;
583                          ARG_DWRATE = atof(argv[i])*exponent;                          ARG_DWRATE = (int)(atof(argv[i])*exponent);
584                          ARG_DWSCALE = exponent;                          ARG_DWSCALE = exponent;
585                          exponent = gcd(ARG_DWRATE, ARG_DWSCALE);                          exponent = gcd(ARG_DWRATE, ARG_DWSCALE);
586                          ARG_DWRATE /= exponent;                          ARG_DWRATE /= exponent;
# Line 590  Line 593 
593                          ARG_INPUTFILE = argv[i];                          ARG_INPUTFILE = argv[i];
594                  } else if (strcmp("-stats", argv[i]) == 0) {                  } else if (strcmp("-stats", argv[i]) == 0) {
595                          ARG_STATS = 1;                          ARG_STATS = 1;
596                    } else if (strcmp("-nostats", argv[i]) == 0) {
597                            ARG_STATS = 0;
598                  } else if (strcmp("-ssim", argv[i]) == 0) {                  } else if (strcmp("-ssim", argv[i]) == 0) {
599                          ARG_SSIM = 2;                          ARG_SSIM = DEFAULT_SSIM;
600                          if ((i < argc - 1) && (*argv[i+1] != '-')) {                          if ((i < argc - 1) && (*argv[i+1] != '-')) {
601                                  i++;                                  i++;
602                                  ARG_SSIM = atoi(argv[i]);                                  ARG_SSIM = atoi(argv[i]);
603                          }                          }
604                    } else if (strcmp("-psnrhvsm", argv[i]) == 0) {
605                            ARG_PSNRHVSM = 1;
606                    } else if (strcmp("-nopsnrhvsm", argv[i]) == 0) {
607                            ARG_PSNRHVSM = 0;
608                  } else if (strcmp("-ssim_file", argv[i]) == 0 && i < argc -1) {                  } else if (strcmp("-ssim_file", argv[i]) == 0 && i < argc -1) {
609                          i++;                          i++;
610                          ARG_SSIM_PATH = argv[i];                          ARG_SSIM_PATH = argv[i];
# Line 604  Line 613 
613                          ARG_TIMECODEFILE = argv[i];                          ARG_TIMECODEFILE = argv[i];
614                  } else if (strcmp("-dump", argv[i]) == 0) {                  } else if (strcmp("-dump", argv[i]) == 0) {
615                          ARG_DUMP = 1;                          ARG_DUMP = 1;
616                  } else if (strcmp("-lumimasking", argv[i]) == 0) {                  } else if (strcmp("-masking", argv[i]) == 0 && i < argc -1) {
617                          ARG_LUMIMASKING = 1;                          i++;
618                            ARG_LUMIMASKING = atoi(argv[i]);
619                  } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {
620                          i++;                          i++;
621                          ARG_INPUTTYPE = atoi(argv[i]);                          ARG_INPUTTYPE = atoi(argv[i]);
# Line 685  Line 695 
695  #endif  #endif
696                  } else if (strcmp("-vop_debug", argv[i]) == 0) {                  } else if (strcmp("-vop_debug", argv[i]) == 0) {
697                          ARG_VOPDEBUG = 1;                          ARG_VOPDEBUG = 1;
698                    } else if (strcmp("-novop_debug", argv[i]) == 0) {
699                            ARG_VOPDEBUG = 0;
700                    } else if (strcmp("-trellis", argv[i]) == 0) {
701                            ARG_TRELLIS = 1;
702                  } else if (strcmp("-notrellis", argv[i]) == 0) {                  } else if (strcmp("-notrellis", argv[i]) == 0) {
703                          ARG_TRELLIS = 0;                          ARG_TRELLIS = 0;
704                  } else if (strcmp("-bvhq", argv[i]) == 0) {                  } else if (strcmp("-bvhq", argv[i]) == 0) {
705                          ARG_BVHQ = 1;                          ARG_BVHQ = 1;
706                    } else if (strcmp("-nobvhq", argv[i]) == 0) {
707                            ARG_BVHQ = 0;
708                  } else if (strcmp("-qpel", argv[i]) == 0) {                  } else if (strcmp("-qpel", argv[i]) == 0) {
709                          ARG_QPEL = 1;                          ARG_QPEL = 1;
710                    } else if (strcmp("-noqpel", argv[i]) == 0) {
711                            ARG_QPEL = 0;
712                  } else if (strcmp("-turbo", argv[i]) == 0) {                  } else if (strcmp("-turbo", argv[i]) == 0) {
713                          ARG_TURBO = 1;                          ARG_TURBO = 1;
714                    } else if (strcmp("-noturbo", argv[i]) == 0) {
715                            ARG_TURBO = 0;
716                  } else if (strcmp("-gmc", argv[i]) == 0) {                  } else if (strcmp("-gmc", argv[i]) == 0) {
717                          ARG_GMC = 1;                          ARG_GMC = 1;
718                    } else if (strcmp("-nogmc", argv[i]) == 0) {
719                            ARG_GMC = 0;
720                  } else if (strcmp("-interlaced", argv[i]) == 0) {                  } else if (strcmp("-interlaced", argv[i]) == 0) {
721                          if ((i < argc - 1) && (*argv[i+1] != '-')) {                          if ((i < argc - 1) && (*argv[i+1] != '-')) {
722                                  i++;                                  i++;
723                                  ARG_INTERLACING = atoi(argv[i]);                                  ARG_INTERLACING = atoi(argv[i]);
724                          } else {                          } else {
725                                  ARG_INTERLACING = 1;                                  ARG_INTERLACING = DEFAULT_INTERLACING;
726                          }                          }
727                  } else if (strcmp("-noclosed_gop", argv[i]) == 0) {                  } else if (strcmp("-noclosed_gop", argv[i]) == 0) {
728                          ARG_CLOSED_GOP = 0;                          ARG_CLOSED_GOP = 0;
# Line 714  Line 736 
736                          ARG_VBVMAXRATE = atoi(argv[i]);                          ARG_VBVMAXRATE = atoi(argv[i]);
737                  } else if (strcmp("-vbvpeak", argv[i]) == 0 && i < argc -1) {                  } else if (strcmp("-vbvpeak", argv[i]) == 0 && i < argc -1) {
738                          i++;                          i++;
739                          ARG_VBVPEAKRATE = atoi(argv[i])*3;                          ARG_VBVPEAKRATE = atoi(argv[i]);
740                  } else if (strcmp("-reaction", argv[i]) == 0 && i < argc -1) {                  } else if (strcmp("-reaction", argv[i]) == 0 && i < argc -1) {
741                          i++;                          i++;
742                          ARG_REACTION = atoi(argv[i]);                          ARG_REACTION = atoi(argv[i]);
# Line 758  Line 780 
780                          if (ARG_PROGRESS > 0)                          if (ARG_PROGRESS > 0)
781                                  i++;                                  i++;
782                          else                          else
783                                  ARG_PROGRESS = 10;                                  ARG_PROGRESS = DEFAULT_PROGRESS;
784                  } else if (strcmp("-help", argv[i])) {                  } else if (strcmp("-help", argv[i]) == 0) {
785                        if (i < argc - 1 && strcmp("zones", argv[i+1]) == 0) {
786                                    fprintf(stderr, "Zones options\n\
787    NB: You can define up to %d zones using the -zones option as described below.\n\
788    \n\
789     -zones start,mode,value[,options][/start,mode,value[,options]]...\n\
790    \n\
791     Parameters of a zone use the comma (,) as a delimiter. Multiple zones are\n\
792     separated by a slash (/). The end of each zone is defined by either the start\n\
793     of the following zone or the last frame of the input file.\n\
794    \n\
795     start     : start frame of the zone\n\
796     mode      : weight zone = w, quantizer zone = q\n\
797     value     : depending on mode either the zone's weight or quantizer\n\
798     options   : enable certain encoder features for the zone. Each feature is\n\
799                 represented by a single letter. An integer number stands for\n\
800                 b-frame sensitivity. To enable multiple features at the same time\n\
801                 combine the appropriate symbols without any delimiting characters.\n\
802                 K = begin with keyframe\n\
803                 O = enable chroma optimizer\n\
804                 G = greyscale encoding\n\
805                 C = cartoon mode\n\
806           integer = b-frame sensitivity\n\
807    \n\
808     Example:\n\
809      to create a first zone starting at frame 0 with weight 1.0, all options\n\
810      enabled and b-frame sensitivity -5, and a second zone starting at frame 1000\n\
811      with constant quant 4 and no options enabled you would use the -zones option\n\
812      like this:\n\
813    \n\
814      -zones 0,w,1.0,-5KOGC/1000,q,4\n\n", MAX_ZONES);
815                            } else
816                          usage();                          usage();
817                          return (0);                          return (0);
818                  } else {                  } else {
# Line 773  Line 826 
826   *                            Arguments checking   *                            Arguments checking
827   ****************************************************************************/   ****************************************************************************/
828    
829          if (XDIM <= 0 || XDIM >= 4096 || YDIM <= 0 || YDIM >= 4096) {          if (XDIM <= 0 || XDIM >= MAX_XDIM || YDIM <= 0 || YDIM >= MAX_YDIM) {
830                  fprintf(stderr,                  fprintf(stderr,
831                                  "Trying to retrieve width and height from input header\n");                                  "Trying to retrieve width and height from input header\n");
832                  if (!ARG_INPUTTYPE)                  if (!ARG_INPUTTYPE)
# Line 782  Line 835 
835    
836          if (ARG_QUALITY < 0 ) {          if (ARG_QUALITY < 0 ) {
837                  ARG_QUALITY = 0;                  ARG_QUALITY = 0;
838          } else if (ARG_QUALITY >= ME_ELEMENTS) {          } else if (ARG_QUALITY >= (int) ME_ELEMENTS) {
839                  ARG_QUALITY = ME_ELEMENTS - 1;                  ARG_QUALITY = ME_ELEMENTS - 1;
840          }          }
841    
# Line 829  Line 882 
882                  return (-1);                  return (-1);
883          }          }
884    
885          if (ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {          if (ARG_INPUTFILE != NULL) {
886                  in_file = stdin;  #if defined(XVID_AVI_INPUT)
         } else {  
 #ifdef XVID_AVI_INPUT  
887        if (strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avs")==0 ||        if (strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avs")==0 ||
888            strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avi")==0 ||            strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avi")==0 ||
889                    ARG_INPUTTYPE==2)                    ARG_INPUTTYPE==2)
890        {        {
891                      PAVIFILE avi_in = NULL;
892                      PAVISTREAM avi_in_stream = NULL;
893                      PGETFRAME get_frame = NULL;
894                      BITMAPINFOHEADER myBitmapInfoHeader;
895                    AVISTREAMINFO avi_info;                    AVISTREAMINFO avi_info;
 #ifndef XVID_AVI_OUTPUT  
                   AVIFileInit();  
 #endif  
896                    FILE *avi_fp = fopen(ARG_INPUTFILE, "rb");                    FILE *avi_fp = fopen(ARG_INPUTFILE, "rb");
897    
898                      AVIFileInit();
899    
900                    if (avi_fp == NULL) {                    if (avi_fp == NULL) {
901                            fprintf(stderr, "Couldn't open file '%s'!\n", ARG_INPUTFILE);                            fprintf(stderr, "Couldn't open file '%s'!\n", ARG_INPUTFILE);
902                            return (-1);                            return (-1);
903                    }                    }
904                    fclose(avi_fp);                    fclose(avi_fp);
905    
906                    if (AVIFileOpen(&avi_file, ARG_INPUTFILE, OF_READ, NULL) != AVIERR_OK) {                    if (AVIFileOpen(&avi_in, ARG_INPUTFILE, OF_READ, NULL) != AVIERR_OK) {
907                            fprintf(stderr, "Can't open avi/avs file %s\n", ARG_INPUTFILE);                            fprintf(stderr, "Can't open avi/avs file %s\n", ARG_INPUTFILE);
908                            AVIFileExit();                            AVIFileExit();
909                            return(-1);                            return(-1);
910                    }                    }
911    
912                    if (AVIFileGetStream(avi_file, &avi_stream, streamtypeVIDEO, 0) != AVIERR_OK) {                    if (AVIFileGetStream(avi_in, &avi_in_stream, streamtypeVIDEO, 0) != AVIERR_OK) {
913                            fprintf(stderr, "Can't open stream from file '%s'!\n", ARG_INPUTFILE);                            fprintf(stderr, "Can't open stream from file '%s'!\n", ARG_INPUTFILE);
914                            AVIFileRelease(avi_file);                            AVIFileRelease(avi_in);
915                            AVIFileExit();                            AVIFileExit();
916                            return (-1);                            return (-1);
917                    }                    }
918    
919                    AVIFileRelease(avi_file);                    AVIFileRelease(avi_in);
920    
921                    if(AVIStreamInfo(avi_stream, &avi_info, sizeof(AVISTREAMINFO)) != AVIERR_OK) {                    if(AVIStreamInfo(avi_in_stream, &avi_info, sizeof(AVISTREAMINFO)) != AVIERR_OK) {
922                            fprintf(stderr, "Can't get stream info from file '%s'!\n", ARG_INPUTFILE);                            fprintf(stderr, "Can't get stream info from file '%s'!\n", ARG_INPUTFILE);
923                            AVIStreamRelease(avi_stream);                            AVIStreamRelease(avi_in_stream);
924                            AVIFileExit();                            AVIFileExit();
925                            return (-1);                            return (-1);
926                    }                    }
# Line 873  Line 928 
928                if (avi_info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2')) {                if (avi_info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2')) {
929                            LONG size;                            LONG size;
930                            fprintf(stderr, "Non YV12 input colorspace %c%c%c%c! Attempting conversion...\n",                            fprintf(stderr, "Non YV12 input colorspace %c%c%c%c! Attempting conversion...\n",
931                                    avi_info.fccHandler%256, (avi_info.fccHandler>>8)%256, (avi_info.fccHandler>>16)%256,                                    (char)avi_info.fccHandler%256, (char)(avi_info.fccHandler>>8)%256, (char)(avi_info.fccHandler>>16)%256,
932                                    (avi_info.fccHandler>>24)%256);                                    (char)(avi_info.fccHandler>>24)%256);
933                            size = sizeof(myBitmapInfoHeader);                            size = sizeof(myBitmapInfoHeader);
934                            AVIStreamReadFormat(avi_stream, 0, &myBitmapInfoHeader, &size);                            AVIStreamReadFormat(avi_in_stream, 0, &myBitmapInfoHeader, &size);
935                            if (size==0)                            if (size==0)
936                                    fprintf(stderr, "AVIStreamReadFormat read 0 bytes.\n");                                    fprintf(stderr, "AVIStreamReadFormat read 0 bytes.\n");
937                            else {                            else {
938                                    fprintf(stderr, "AVIStreamReadFormat read %d bytes.\n", size);                                    fprintf(stderr, "AVIStreamReadFormat read %d bytes.\n", (int)size);
939                                    fprintf(stderr, "width = %d, height = %d, planes = %d\n", myBitmapInfoHeader.biWidth,                                    fprintf(stderr, "width = %d, height = %d, planes = %d\n", (int)myBitmapInfoHeader.biWidth,
940                                            myBitmapInfoHeader.biHeight, myBitmapInfoHeader.biPlanes);                                            (int)myBitmapInfoHeader.biHeight, myBitmapInfoHeader.biPlanes);
941                                    fprintf(stderr, "Compression = %c%c%c%c, %d\n",                                    fprintf(stderr, "Compression = %c%c%c%c, %d\n",
942                                            myBitmapInfoHeader.biCompression%256, (myBitmapInfoHeader.biCompression>>8)%256,                                            (char)myBitmapInfoHeader.biCompression%256, (char)(myBitmapInfoHeader.biCompression>>8)%256,
943                                            (myBitmapInfoHeader.biCompression>>16)%256, (myBitmapInfoHeader.biCompression>>24)%256,                                            (char)(myBitmapInfoHeader.biCompression>>16)%256, (char)(myBitmapInfoHeader.biCompression>>24)%256,
944                                            myBitmapInfoHeader.biCompression);                                            (int)myBitmapInfoHeader.biCompression);
945                                    fprintf(stderr, "Bits Per Pixel = %d\n", myBitmapInfoHeader.biBitCount);                                    fprintf(stderr, "Bits Per Pixel = %d\n", myBitmapInfoHeader.biBitCount);
946                                    myBitmapInfoHeader.biCompression = MAKEFOURCC('Y', 'V', '1', '2');                                    myBitmapInfoHeader.biCompression = MAKEFOURCC('Y', 'V', '1', '2');
947                                    myBitmapInfoHeader.biBitCount = 12;                                    myBitmapInfoHeader.biBitCount = 12;
948                                    myBitmapInfoHeader.biSizeImage = (myBitmapInfoHeader.biWidth*myBitmapInfoHeader.biHeight)*3/2;                                    myBitmapInfoHeader.biSizeImage = (myBitmapInfoHeader.biWidth*myBitmapInfoHeader.biHeight)*3/2;
949                                    get_frame = AVIStreamGetFrameOpen(avi_stream, &myBitmapInfoHeader);                                    get_frame = AVIStreamGetFrameOpen(avi_in_stream, &myBitmapInfoHeader);
950                            }                            }
951                            if (get_frame == NULL) {                            if (get_frame == NULL) {
952                                  AVIStreamRelease(avi_stream);                                  AVIStreamRelease(avi_in_stream);
953                                  AVIFileExit();                                  AVIFileExit();
954                                  return (-1);                                  return (-1);
955                            }                            }
# Line 904  Line 959 
959                                  temp = (unsigned char*)AVIStreamGetFrame(get_frame, 0);                                  temp = (unsigned char*)AVIStreamGetFrame(get_frame, 0);
960                                  if (temp != NULL) {                                  if (temp != NULL) {
961                                          int i;                                          int i;
962                                          for (i = 0; i < ((DWORD*)temp)[0]; i++) {                                          for (i = 0; i < (int)((DWORD*)temp)[0]; i++) {
963                                                  fprintf(stderr, "%2d ", temp[i]);                                                  fprintf(stderr, "%2d ", temp[i]);
964                                          }                                          }
965                                          fprintf(stderr, "\n");                                          fprintf(stderr, "\n");
# Line 920  Line 975 
975            if (ARG_MAXFRAMENR<0)            if (ARG_MAXFRAMENR<0)
976                          ARG_MAXFRAMENR = avi_info.dwLength-ARG_STARTFRAMENR;                          ARG_MAXFRAMENR = avi_info.dwLength-ARG_STARTFRAMENR;
977                    else                    else
978                          ARG_MAXFRAMENR = min(ARG_MAXFRAMENR, avi_info.dwLength-ARG_STARTFRAMENR);                          ARG_MAXFRAMENR = min(ARG_MAXFRAMENR, (int) (avi_info.dwLength-ARG_STARTFRAMENR));
979    
980                    XDIM = avi_info.rcFrame.right - avi_info.rcFrame.left;                    XDIM = avi_info.rcFrame.right - avi_info.rcFrame.left;
981                    YDIM = avi_info.rcFrame.bottom - avi_info.rcFrame.top;                    YDIM = avi_info.rcFrame.bottom - avi_info.rcFrame.top;
# Line 931  Line 986 
986                    }                    }
987    
988                    ARG_INPUTTYPE = 2;                    ARG_INPUTTYPE = 2;
989    
990                      if (get_frame) AVIStreamGetFrameClose(get_frame);
991                      if (avi_in_stream) AVIStreamRelease(avi_in_stream);
992                      AVIFileExit();
993      }      }
994      else      else
995  #endif  #endif
996                  {                  {
997                          in_file = fopen(ARG_INPUTFILE, "rb");                          FILE *in_file = fopen(ARG_INPUTFILE, "rb");
998                          if (in_file == NULL) {                          if (in_file == NULL) {
999                                  fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);                                  fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
1000                                  return (-1);                                  return (-1);
1001                          }                          }
1002    #ifdef USE_APP_LEVEL_THREADING
1003                            {
1004                                    int pos;
1005                                    fseek(in_file, 0, SEEK_END); /* Determine input size */
1006                                    pos = ftell(in_file);
1007                                    ARG_MAXFRAMENR = pos / IMAGE_SIZE(XDIM, YDIM); /* PGM, header size ?? */
1008                  }                  }
1009          }  #endif
1010                            fclose(in_file);
         // This should be after the avi input opening stuff  
         if (ARG_TIMECODEFILE != NULL) {  
                 time_file = fopen(ARG_TIMECODEFILE, "r");  
                 if (time_file==NULL) {  
                         fprintf(stderr, "Couldn't open timecode file '%s'!\n", ARG_TIMECODEFILE);  
                         return(-1);  
                 }  
                 else {  
                         fscanf(time_file, "# timecode format v2\n");  
1011                  }                  }
1012          }          }
1013    
1014          if (ARG_FRAMERATE <= 0) {          if (ARG_FRAMERATE <= 0) {
1015                  fprintf(stderr, "Wrong Framerate %f\n", ARG_FRAMERATE);                  ARG_FRAMERATE = 25.00f; /* default value */
                 return (-1);  
1016          }          }
1017    
1018          if (ARG_TARGETSIZE) {          if (ARG_TARGETSIZE) {
# Line 968  Line 1023 
1023                                  fprintf(stderr, "Parameter conflict: Do not specify both -bitrate and -size\n");                                  fprintf(stderr, "Parameter conflict: Do not specify both -bitrate and -size\n");
1024                                  goto release_all;                                  goto release_all;
1025                  } else                  } else
1026                          ARG_BITRATE = ((ARG_TARGETSIZE * 8) / (ARG_MAXFRAMENR / ARG_FRAMERATE)) * 1024;                          ARG_BITRATE = (int) (((ARG_TARGETSIZE * 8) / (ARG_MAXFRAMENR / ARG_FRAMERATE)) * 1024);
1027          }          }
1028    
1029                  /* Set constant quant to default if no bitrate given for single pass */                  /* Set constant quant to default if no bitrate given for single pass */
1030          if (ARG_SINGLE && (!ARG_BITRATE) && (!ARG_CQ))          if (ARG_SINGLE && (!ARG_BITRATE) && (!ARG_CQ))
1031                          ARG_CQ = DEFAULT_QUANT;                          ARG_CQ = DEFAULT_QUANT;
1032    
1033                    /* Init xvidcore */
1034        enc_gbl(use_assembler);
1035    
1036    #ifdef USE_APP_LEVEL_THREADING
1037            if (ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0 ||
1038                ARG_NUM_APP_THREADS <= 1 || ARG_THREADS != 0 ||
1039                ARG_TIMECODEFILE != NULL || ARG_INPUTTYPE == 1)             /* TODO: PGM input */
1040    #endif /* Spawn just one encoder instance */
1041            {
1042                    enc_sequence_data_t enc_data;
1043                    memset(&enc_data, 0, sizeof(enc_sequence_data_t));
1044    
1045                    if (!ARG_THREADS) ARG_THREADS = ARG_NUM_APP_THREADS;
1046                    ARG_NUM_APP_THREADS = 1;
1047    
1048                    enc_data.outfilename = ARG_OUTPUTFILE;
1049                    enc_data.outavifilename = ARG_AVIOUTPUTFILE;
1050                    enc_data.outmkvfilename = ARG_MKVOUTPUTFILE;
1051                    enc_data.statsfilename1 = ARG_PASS1;
1052                    enc_data.start_num = ARG_STARTFRAMENR;
1053                    enc_data.stop_num = ARG_MAXFRAMENR;
1054    
1055                            /* Encode input */
1056                    encode_sequence(&enc_data);
1057    
1058                            /* Copy back stats */
1059                    input_num = enc_data.input_num;
1060                    totalsize = enc_data.totalsize;
1061                    totalenctime = enc_data.totalenctime;
1062                    for (i=0; i < 3; i++) totalPSNR[i] = enc_data.totalPSNR[i];
1063                    memcpy(framestats, enc_data.framestats, sizeof(framestats));
1064            }
1065    #ifdef USE_APP_LEVEL_THREADING
1066            else { /* Split input into sequences and create multiple encoder instances */
1067                    int k;
1068                    void *status;
1069                    FILE *f_out = NULL, *f_stats = NULL;
1070    
1071                    enc_sequence_data_t enc_data[MAX_ENC_INSTANCES];
1072                    char outfile[MAX_ENC_INSTANCES][256];
1073                    char outavifile[MAX_ENC_INSTANCES][256];
1074                    char outmkvfile[MAX_ENC_INSTANCES][256];
1075                    char statsfilename[MAX_ENC_INSTANCES][256];
1076    
1077                    for (k = 0; k < MAX_ENC_INSTANCES; k++)
1078                            memset(&enc_data[k], 0, sizeof(enc_sequence_data_t));
1079    
1080                            /* Overwrite internal encoder threading */
1081                    if (ARG_NUM_APP_THREADS > MAX_ENC_INSTANCES) {
1082                            ARG_THREADS = (int) (ARG_NUM_APP_THREADS / MAX_ENC_INSTANCES);
1083                            ARG_NUM_APP_THREADS = MAX_ENC_INSTANCES;
1084                    }
1085                    else
1086                            ARG_THREADS = -1;
1087    
1088                    enc_data[0].outfilename = ARG_OUTPUTFILE;
1089                    enc_data[0].outavifilename = ARG_AVIOUTPUTFILE;
1090                    enc_data[0].outmkvfilename = ARG_MKVOUTPUTFILE;
1091                    enc_data[0].statsfilename1 = ARG_PASS1;
1092                    enc_data[0].start_num = ARG_STARTFRAMENR;
1093                    enc_data[0].stop_num = (ARG_MAXFRAMENR-ARG_STARTFRAMENR)/ARG_NUM_APP_THREADS;
1094    
1095                    for (k = 1; k < ARG_NUM_APP_THREADS; k++) {
1096                            if (ARG_OUTPUTFILE) {
1097                                    sprintf(outfile[k], "%s.%03d", ARG_OUTPUTFILE, k);
1098                                    enc_data[k].outfilename = outfile[k];
1099                            }
1100                            else
1101                                    enc_data[k].outfilename = NULL;
1102    
1103                            if (ARG_AVIOUTPUTFILE) {
1104                                    sprintf(outavifile[k], "%.*s_%03d.avi", strlen(ARG_AVIOUTPUTFILE) - 4, ARG_AVIOUTPUTFILE, k);
1105                                    enc_data[k].outavifilename = outavifile[k];
1106                            }
1107                            else
1108                                    enc_data[k].outavifilename = NULL;
1109    
1110                            if (ARG_MKVOUTPUTFILE) {
1111                                    sprintf(outmkvfile[k], "%.*s_%03d.mkv", strlen(ARG_MKVOUTPUTFILE) - 4, ARG_MKVOUTPUTFILE, k);
1112                                    enc_data[k].outmkvfilename = outmkvfile[k];
1113                            }
1114                            else
1115                                    enc_data[k].outmkvfilename = NULL;
1116    
1117                            if (ARG_PASS1) {
1118                                    sprintf(statsfilename[k], "%s.%03d", ARG_PASS1, k);
1119                                    enc_data[k].statsfilename1 = statsfilename[k];
1120                            }
1121                            enc_data[k].start_num = (k*(ARG_MAXFRAMENR-ARG_STARTFRAMENR))/ARG_NUM_APP_THREADS;
1122                            enc_data[k].stop_num = ((k+1)*(ARG_MAXFRAMENR-ARG_STARTFRAMENR))/ARG_NUM_APP_THREADS;
1123                    }
1124    
1125                            /* Start multiple encoder threads in parallel */
1126                    for (k = 1; k < ARG_NUM_APP_THREADS; k++) {
1127                            pthread_create(&enc_data[k].handle, NULL, (void*)encode_sequence, (void*)&enc_data[k]);
1128                    }
1129    
1130                            /* Encode first sequence in this thread */
1131                    encode_sequence(&enc_data[0]);
1132    
1133                            /* Wait until encoder threads have finished */
1134                    for (k = 1; k < ARG_NUM_APP_THREADS; k++) {
1135                            pthread_join(enc_data[k].handle, &status);
1136                    }
1137    
1138                            /* Join encoder stats and encoder output files */
1139                    if (ARG_OUTPUTFILE)
1140                            f_out = fopen(enc_data[0].outfilename, "ab+");
1141                    if (ARG_PASS1)
1142                            f_stats = fopen(enc_data[0].statsfilename1, "ab+");
1143    
1144                    for (k = 0; k < ARG_NUM_APP_THREADS; k++) {
1145                                    /* Join stats */
1146                            input_num += enc_data[k].input_num;
1147                            totalsize += enc_data[k].totalsize;
1148                            totalenctime = MAX(totalenctime, enc_data[k].totalenctime);
1149    
1150                            for (i=0; i < 3; i++) totalPSNR[i] += enc_data[k].totalPSNR[i];
1151                            for (i=0; i < 7; i++) {
1152                                    int l;
1153                                    framestats[i].count += enc_data[k].framestats[i].count;
1154                                    framestats[i].size += enc_data[k].framestats[i].size;
1155                                    for (l=0; l < 32; l++)
1156                                            framestats[i].quants[l] += enc_data[k].framestats[i].quants[l];
1157                            }
1158                                    /* Join output files */
1159                            if ((k > 0) && (f_out != NULL)) {
1160                                    int ch;
1161                                    FILE *f = fopen(enc_data[k].outfilename, "rb");
1162                                    while((ch = fgetc(f)) != EOF) { fputc(ch, f_out); }
1163                                    fclose(f);
1164                                    remove(enc_data[k].outfilename);
1165                            }
1166                                    /* Join first pass stats files */
1167                            if ((k > 0) && (f_stats != NULL)) {
1168                                    char str[256];
1169                                    FILE *f = fopen(enc_data[k].statsfilename1, "r");
1170                                    while(fgets(str, sizeof(str), f) != NULL) {
1171                                            if (str[0] != '#' && strlen(str) > 3)
1172                                                    fputs(str, f_stats);
1173                                    }
1174                                    fclose(f);
1175                                    remove(enc_data[k].statsfilename1);
1176                            }
1177                    }
1178                    if (f_out) fclose(f_out);
1179                    if (f_stats) fclose(f_stats);
1180            }
1181    #endif
1182    
1183    /*****************************************************************************
1184     *         Calculate totals and averages for output, print results
1185     ****************************************************************************/
1186    
1187     printf("\n");
1188            printf("Tot: enctime(ms) =%7.2f,               length(bytes) = %7d\n",
1189                       totalenctime, (int) totalsize);
1190    
1191            if (input_num > 0) {
1192                    totalsize /= input_num;
1193                    totalenctime /= input_num;
1194                    totalPSNR[0] /= input_num;
1195                    totalPSNR[1] /= input_num;
1196                    totalPSNR[2] /= input_num;
1197            } else {
1198                    totalsize = -1;
1199                    totalenctime = -1;
1200            }
1201    
1202            printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d",
1203                       totalenctime, 1000 / totalenctime, (int) totalsize);
1204       if (ARG_STATS) {
1205           printf(", psnr y = %2.2f, psnr u = %2.2f, psnr v = %2.2f",
1206                      totalPSNR[0],totalPSNR[1],totalPSNR[2]);
1207            }
1208            printf("\n");
1209            if (framestats[XVID_TYPE_IVOP].count) {
1210                    printf("I frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \
1211                            framestats[XVID_TYPE_IVOP].count, framestats[XVID_TYPE_IVOP].size/framestats[XVID_TYPE_IVOP].count, \
1212                            framestats[XVID_TYPE_IVOP].size, minquant(framestats[XVID_TYPE_IVOP].quants), \
1213                            avgquant(framestats[XVID_TYPE_IVOP]), maxquant(framestats[XVID_TYPE_IVOP].quants));
1214            }
1215            if (framestats[XVID_TYPE_PVOP].count) {
1216                    printf("P frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \
1217                            framestats[XVID_TYPE_PVOP].count, framestats[XVID_TYPE_PVOP].size/framestats[XVID_TYPE_PVOP].count, \
1218                            framestats[XVID_TYPE_PVOP].size, minquant(framestats[XVID_TYPE_PVOP].quants), \
1219                            avgquant(framestats[XVID_TYPE_PVOP]), maxquant(framestats[XVID_TYPE_PVOP].quants));
1220            }
1221            if (framestats[XVID_TYPE_BVOP].count) {
1222                    printf("B frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \
1223                            framestats[XVID_TYPE_BVOP].count, framestats[XVID_TYPE_BVOP].size/framestats[XVID_TYPE_BVOP].count, \
1224                            framestats[XVID_TYPE_BVOP].size, minquant(framestats[XVID_TYPE_BVOP].quants), \
1225                            avgquant(framestats[XVID_TYPE_BVOP]), maxquant(framestats[XVID_TYPE_BVOP].quants));
1226            }
1227            if (framestats[XVID_TYPE_SVOP].count) {
1228                    printf("S frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \
1229                            framestats[XVID_TYPE_SVOP].count, framestats[XVID_TYPE_SVOP].size/framestats[XVID_TYPE_SVOP].count, \
1230                            framestats[XVID_TYPE_SVOP].size, minquant(framestats[XVID_TYPE_SVOP].quants), \
1231                            avgquant(framestats[XVID_TYPE_SVOP]), maxquant(framestats[XVID_TYPE_SVOP].quants));
1232            }
1233            if (framestats[5].count) {
1234                    printf("N frames: %6d frames, size = %7d/%7d\n", \
1235                            framestats[5].count, framestats[5].size/framestats[5].count, \
1236                            framestats[5].size);
1237            }
1238    
1239    
1240    /*****************************************************************************
1241     *                            Xvid PART  Stop
1242     ****************************************************************************/
1243    
1244      release_all:
1245    
1246            return (0);
1247    }
1248    
1249    /*****************************************************************************
1250     *               Encode a sequence
1251     ****************************************************************************/
1252    
1253    void encode_sequence(enc_sequence_data_t *h) {
1254    
1255            /* Internal structures (handles) for encoding */
1256            void *enc_handle = NULL;
1257    
1258            int start_num = h->start_num;
1259            int stop_num = h->stop_num;
1260            char *outfilename = h->outfilename;
1261            char *outavifilename = h->outavifilename;
1262            char *outmkvfilename = h->outmkvfilename;
1263            float *totalPSNR = h->totalPSNR;
1264    
1265            int input_num;
1266            int totalsize;
1267            double totalenctime = 0.;
1268    
1269            unsigned char *mp4_buffer = NULL;
1270            unsigned char *in_buffer = NULL;
1271            unsigned char *out_buffer = NULL;
1272    
1273            double enctime;
1274    
1275            int result;
1276            int output_num;
1277            int m4v_size;
1278            int key;
1279            int stats_type;
1280            int stats_quant;
1281            int stats_length;
1282            int fakenvop = 0;
1283    
1284            FILE *in_file = stdin;
1285            FILE *out_file = NULL;
1286            FILE *time_file = NULL;
1287    
1288            char filename[256];
1289    
1290    #ifdef XVID_MKV_OUTPUT
1291            PMKVFILE myMKVFile = NULL;
1292            PMKVSTREAM myMKVStream = NULL;
1293            MKVSTREAMINFO myMKVStreamInfo;
1294    #endif
1295    #if defined(XVID_AVI_INPUT)
1296            PAVIFILE avi_in = NULL;
1297            PAVISTREAM avi_in_stream = NULL;
1298            PGETFRAME get_frame = NULL;
1299    #else
1300    #define get_frame NULL
1301    #endif
1302    #if defined(XVID_AVI_OUTPUT)
1303            int avierr;
1304            PAVIFILE myAVIFile = NULL;
1305            PAVISTREAM myAVIStream = NULL;
1306            AVISTREAMINFO myAVIStreamInfo;
1307    #endif
1308    #if defined(XVID_AVI_INPUT) || defined(XVID_AVI_OUTPUT)
1309            BITMAPINFOHEADER myBitmapInfoHeader;
1310            if (ARG_NUM_APP_THREADS > 1)
1311                    CoInitializeEx(0, COINIT_MULTITHREADED);
1312            AVIFileInit();
1313    #endif
1314    
1315            if (ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
1316                    in_file = stdin;
1317            } else {
1318    #ifdef XVID_AVI_INPUT
1319          if (strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avs")==0 ||
1320              strcmp(ARG_INPUTFILE+(strlen(ARG_INPUTFILE)-3), "avi")==0 ||
1321                      ARG_INPUTTYPE==2)
1322          {
1323                      AVISTREAMINFO avi_info;
1324                      FILE *avi_fp = fopen(ARG_INPUTFILE, "rb");
1325    
1326                      if (avi_fp == NULL) {
1327                              fprintf(stderr, "Couldn't open file '%s'!\n", ARG_INPUTFILE);
1328                              return;
1329                      }
1330                      fclose(avi_fp);
1331    
1332                      if (AVIFileOpen(&avi_in, ARG_INPUTFILE, OF_READ, NULL) != AVIERR_OK) {
1333                              fprintf(stderr, "Can't open avi/avs file %s\n", ARG_INPUTFILE);
1334                              AVIFileExit();
1335                              return;
1336                      }
1337    
1338                      if (AVIFileGetStream(avi_in, &avi_in_stream, streamtypeVIDEO, 0) != AVIERR_OK) {
1339                              fprintf(stderr, "Can't open stream from file '%s'!\n", ARG_INPUTFILE);
1340                              AVIFileRelease(avi_in);
1341                              AVIFileExit();
1342                              return;
1343                      }
1344    
1345                      AVIFileRelease(avi_in);
1346    
1347                      if(AVIStreamInfo(avi_in_stream, &avi_info, sizeof(AVISTREAMINFO)) != AVIERR_OK) {
1348                              fprintf(stderr, "Can't get stream info from file '%s'!\n", ARG_INPUTFILE);
1349                              AVIStreamRelease(avi_in_stream);
1350                              AVIFileExit();
1351                              return;
1352                      }
1353    
1354                  if (avi_info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2')) {
1355                              LONG size;
1356                              fprintf(stderr, "Non YV12 input colorspace %c%c%c%c! Attempting conversion...\n",
1357                                      (char)avi_info.fccHandler%256, (char)(avi_info.fccHandler>>8)%256, (char)(avi_info.fccHandler>>16)%256,
1358                                      (char)(avi_info.fccHandler>>24)%256);
1359                              size = sizeof(myBitmapInfoHeader);
1360                              AVIStreamReadFormat(avi_in_stream, 0, &myBitmapInfoHeader, &size);
1361                              if (size==0)
1362                                      fprintf(stderr, "AVIStreamReadFormat read 0 bytes.\n");
1363                              else {
1364                                      fprintf(stderr, "AVIStreamReadFormat read %d bytes.\n", (int)size);
1365                                      fprintf(stderr, "width = %d, height = %d, planes = %d\n", (int)myBitmapInfoHeader.biWidth,
1366                                              (int)myBitmapInfoHeader.biHeight, myBitmapInfoHeader.biPlanes);
1367                                      fprintf(stderr, "Compression = %c%c%c%c, %d\n",
1368                                              (char)myBitmapInfoHeader.biCompression%256, (char)(myBitmapInfoHeader.biCompression>>8)%256,
1369                                              (char)(myBitmapInfoHeader.biCompression>>16)%256, (char)(myBitmapInfoHeader.biCompression>>24)%256,
1370                                              (int)myBitmapInfoHeader.biCompression);
1371                                      fprintf(stderr, "Bits Per Pixel = %d\n", myBitmapInfoHeader.biBitCount);
1372                                      myBitmapInfoHeader.biCompression = MAKEFOURCC('Y', 'V', '1', '2');
1373                                      myBitmapInfoHeader.biBitCount = 12;
1374                                      myBitmapInfoHeader.biSizeImage = (myBitmapInfoHeader.biWidth*myBitmapInfoHeader.biHeight)*3/2;
1375                                      get_frame = AVIStreamGetFrameOpen(avi_in_stream, &myBitmapInfoHeader);
1376                              }
1377                              if (get_frame == NULL) {
1378                                    AVIStreamRelease(avi_in_stream);
1379                                    AVIFileExit();
1380                                    return;
1381                              }
1382                              else {
1383                                    unsigned char *temp;
1384                                    fprintf(stderr, "AVIStreamGetFrameOpen successful.\n");
1385                                    temp = (unsigned char*)AVIStreamGetFrame(get_frame, 0);
1386                                    if (temp != NULL) {
1387                                            int i;
1388                                            for (i = 0; i < (int)((DWORD*)temp)[0]; i++) {
1389                                                    fprintf(stderr, "%2d ", temp[i]);
1390                                            }
1391                                            fprintf(stderr, "\n");
1392                                    }
1393                              }
1394                              if (avi_info.fccHandler == MAKEFOURCC('D', 'I', 'B', ' ')) {
1395                                      AVIStreamGetFrameClose(get_frame);
1396                                      get_frame = NULL;
1397                                      ARG_COLORSPACE = XVID_CSP_BGR | XVID_CSP_VFLIP;
1398                              }
1399                      }
1400        }
1401        else
1402    #endif
1403                    {
1404                            in_file = fopen(ARG_INPUTFILE, "rb");
1405                            if (in_file == NULL) {
1406                                    fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
1407                                    return;
1408                            }
1409                    }
1410            }
1411    
1412            // This should be after the avi input opening stuff
1413            if (ARG_TIMECODEFILE != NULL) {
1414                    time_file = fopen(ARG_TIMECODEFILE, "r");
1415                    if (time_file==NULL) {
1416                            fprintf(stderr, "Couldn't open timecode file '%s'!\n", ARG_TIMECODEFILE);
1417                            return;
1418                    }
1419                    else {
1420                            fscanf(time_file, "# timecode format v2\n");
1421                    }
1422            }
1423    
1424          if (ARG_INPUTTYPE==1) {          if (ARG_INPUTTYPE==1) {
1425  #ifndef READ_PNM  #ifndef READ_PNM
1426                  if (read_pgmheader(in_file)) {                  if (read_pgmheader(in_file)) {
# Line 983  Line 1429 
1429  #endif  #endif
1430                          fprintf(stderr,                          fprintf(stderr,
1431                                          "Wrong input format, I want YUV encapsulated in PGM\n");                                          "Wrong input format, I want YUV encapsulated in PGM\n");
1432                          return (-1);                          return;
1433                  }                  }
1434          }          }
1435    
1436          /* Jump to the starting frame */          /* Jump to the starting frame */
1437          if (ARG_INPUTTYPE == 0)          if (ARG_INPUTTYPE == 0) /* TODO: Other input formats ??? */
1438                  fseek(in_file, ARG_STARTFRAMENR*IMAGE_SIZE(XDIM, YDIM), SEEK_SET);                  fseek(in_file, start_num*IMAGE_SIZE(XDIM, YDIM), SEEK_SET);
1439    
1440    
1441          /* now we know the sizes, so allocate memory */          /* now we know the sizes, so allocate memory */
1442          if (get_frame == NULL)          if (get_frame == NULL)
# Line 1005  Line 1452 
1452                  goto free_all_memory;                  goto free_all_memory;
1453    
1454  /*****************************************************************************  /*****************************************************************************
1455   *                            XviD PART  Start   *                            Xvid PART  Start
1456   ****************************************************************************/   ****************************************************************************/
1457    
1458    
1459          result = enc_init(use_assembler);          result = enc_init(&enc_handle, h->statsfilename1, h->start_num);
1460          if (result) {          if (result) {
1461                  fprintf(stderr, "Encore INIT problem, return value %d\n", result);                  fprintf(stderr, "Encore INIT problem, return value %d\n", result);
1462                  goto release_all;                  goto release_all;
# Line 1021  Line 1468 
1468    
1469          if (ARG_SAVEMPEGSTREAM) {          if (ARG_SAVEMPEGSTREAM) {
1470    
1471                  if (ARG_OUTPUTFILE) {                  if (outfilename) {
1472                          if ((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {                          if ((out_file = fopen(outfilename, "w+b")) == NULL) {
1473                                  fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);                                  fprintf(stderr, "Error opening output file %s\n", outfilename);
1474                                  goto release_all;                                  goto release_all;
1475                          }                          }
1476                  }                  }
1477    
1478  #ifdef XVID_AVI_OUTPUT  #ifdef XVID_AVI_OUTPUT
1479                  if (ARG_AVIOUTPUTFILE != NULL ) {                  if (outavifilename != NULL ) {
1480                          {                          {
1481                                  /* Open the .avi output then close it */                                  /* Open the .avi output then close it */
1482                                  /* Resets the file size to 0, which AVIFile doesn't seem to do */                                  /* Resets the file size to 0, which AVIFile doesn't seem to do */
1483                                  FILE *scrub;                                  FILE *scrub;
1484                                  if ((scrub = fopen(ARG_AVIOUTPUTFILE, "w+b")) == NULL) {                                  if ((scrub = fopen(outavifilename, "w+b")) == NULL) {
1485                                          fprintf(stderr, "Error opening output file %s\n", ARG_AVIOUTPUTFILE);                                          fprintf(stderr, "Error opening output file %s\n", outavifilename);
1486                                          goto release_all;                                          goto release_all;
1487                                  }                                  }
1488                                  else                                  else
# Line 1046  Line 1493 
1493                          myAVIStreamInfo.fccHandler = MAKEFOURCC('x', 'v', 'i', 'd');                          myAVIStreamInfo.fccHandler = MAKEFOURCC('x', 'v', 'i', 'd');
1494                          myAVIStreamInfo.dwScale = ARG_DWSCALE;                          myAVIStreamInfo.dwScale = ARG_DWSCALE;
1495                          myAVIStreamInfo.dwRate = ARG_DWRATE;                          myAVIStreamInfo.dwRate = ARG_DWRATE;
1496                          myAVIStreamInfo.dwLength = ARG_MAXFRAMENR;                          myAVIStreamInfo.dwLength = (h->stop_num - h->start_num);
1497                          myAVIStreamInfo.dwQuality = 10000;                          myAVIStreamInfo.dwQuality = 10000;
1498                          SetRect(&myAVIStreamInfo.rcFrame, 0, 0, YDIM, XDIM);                          SetRect(&myAVIStreamInfo.rcFrame, 0, 0, XDIM, YDIM);
1499    
1500                          if (avierr=AVIFileOpen(&myAVIFile, ARG_AVIOUTPUTFILE, OF_CREATE|OF_WRITE, NULL)) {                          if ((avierr=AVIFileOpen(&myAVIFile, outavifilename, OF_CREATE|OF_WRITE, NULL))) {
1501                                  fprintf(stderr, "AVIFileOpen failed opening output file %s, error code %d\n", ARG_AVIOUTPUTFILE, avierr);                                  fprintf(stderr, "AVIFileOpen failed opening output file %s, error code %d\n", outavifilename, avierr);
1502                                  goto release_all;                                  goto release_all;
1503                          }                          }
1504    
1505                          if (avierr=AVIFileCreateStream(myAVIFile, &myAVIStream, &myAVIStreamInfo)) {                          if ((avierr=AVIFileCreateStream(myAVIFile, &myAVIStream, &myAVIStreamInfo))) {
1506                                  fprintf(stderr, "AVIFileCreateStream failed, error code %d\n", avierr);                                  fprintf(stderr, "AVIFileCreateStream failed, error code %d\n", avierr);
1507                                  goto release_all;                                  goto release_all;
1508                          }                          }
# Line 1068  Line 1515 
1515                          myBitmapInfoHeader.biCompression = MAKEFOURCC('X', 'V', 'I', 'D');                          myBitmapInfoHeader.biCompression = MAKEFOURCC('X', 'V', 'I', 'D');
1516                          myBitmapInfoHeader.biBitCount = 12;                          myBitmapInfoHeader.biBitCount = 12;
1517                          myBitmapInfoHeader.biSizeImage = 6*XDIM*YDIM;                          myBitmapInfoHeader.biSizeImage = 6*XDIM*YDIM;
1518                          if (avierr=AVIStreamSetFormat(myAVIStream, 0, &myBitmapInfoHeader, sizeof(BITMAPINFOHEADER))) {                          if ((avierr=AVIStreamSetFormat(myAVIStream, 0, &myBitmapInfoHeader, sizeof(BITMAPINFOHEADER)))) {
1519                                  fprintf(stderr, "AVIStreamSetFormat failed, error code %d\n", avierr);                                  fprintf(stderr, "AVIStreamSetFormat failed, error code %d\n", avierr);
1520                                  goto release_all;                                  goto release_all;
1521                          }                          }
1522                  }                  }
1523  #endif  #endif
1524  #ifdef XVID_MKV_OUTPUT  #ifdef XVID_MKV_OUTPUT
1525                  if (ARG_MKVOUTPUTFILE != NULL) {                  if (outmkvfilename != NULL) {
1526                          {                          {
1527                                  /* Open the .mkv output then close it */                                  /* Open the .mkv output then close it */
1528                                  /* Just to make sure we can write to it */                                  /* Just to make sure we can write to it */
1529                                  FILE *scrub;                                  FILE *scrub;
1530                                  if ((scrub = fopen(ARG_MKVOUTPUTFILE, "w+b")) == NULL) {                                  if ((scrub = fopen(outmkvfilename, "w+b")) == NULL) {
1531                                          fprintf(stderr, "Error opening output file %s\n", ARG_MKVOUTPUTFILE);                                          fprintf(stderr, "Error opening output file %s\n", outmkvfilename);
1532                                          goto release_all;                                          goto release_all;
1533                                  }                                  }
1534                                  else                                  else
1535                                          fclose(scrub);                                          fclose(scrub);
1536                          }                          }
1537    
1538                          MKVFileOpen(&myMKVFile, ARG_MKVOUTPUTFILE, OF_CREATE|OF_WRITE, NULL);                          MKVFileOpen(&myMKVFile, outmkvfilename, OF_CREATE|OF_WRITE, NULL);
1539                          if (ARG_PAR) {                          if (ARG_PAR) {
1540                                  myMKVStreamInfo.display_height = YDIM*height_ratios[ARG_PAR];                                  myMKVStreamInfo.display_height = YDIM*height_ratios[ARG_PAR];
1541                                  myMKVStreamInfo.display_width = XDIM*width_ratios[ARG_PAR];                                  myMKVStreamInfo.display_width = XDIM*width_ratios[ARG_PAR];
# Line 1101  Line 1548 
1548                          myMKVStreamInfo.width = XDIM;                          myMKVStreamInfo.width = XDIM;
1549                          myMKVStreamInfo.framerate = ARG_DWRATE;                          myMKVStreamInfo.framerate = ARG_DWRATE;
1550                          myMKVStreamInfo.framescale = ARG_DWSCALE;                          myMKVStreamInfo.framescale = ARG_DWSCALE;
1551                          myMKVStreamInfo.length = ARG_MAXFRAMENR;                          myMKVStreamInfo.length = (h->stop_num - h->start_num);
1552                          MKVFileCreateStream(myMKVFile, &myMKVStream, &myMKVStreamInfo);                          MKVFileCreateStream(myMKVFile, &myMKVStream, &myMKVStreamInfo);
1553                  }                  }
1554  #endif  #endif
# Line 1119  Line 1566 
1566          result = 0;          result = 0;
1567    
1568          input_num = 0;                          /* input frame counter */          input_num = 0;                          /* input frame counter */
1569          output_num = 0;                         /* output frame counter */          output_num = start_num;             /* output frame counter */
   
         nvop_counter = 0;  
1570    
1571          do {          do {
1572    
1573                  char *type;                  char *type;
1574                  int sse[3];                  int sse[3];
1575    
1576                  if (input_num >= ARG_MAXFRAMENR && ARG_MAXFRAMENR > 0) {                  if ((input_num+start_num) >= stop_num && stop_num > 0) {
1577                          result = 1;                          result = 1;
1578                  }                  }
1579    
# Line 1137  Line 1582 
1582                          if (ARG_INPUTTYPE==2) {                          if (ARG_INPUTTYPE==2) {
1583                                  /* read avs/avi data (YUV-format) */                                  /* read avs/avi data (YUV-format) */
1584                                  if (get_frame != NULL) {                                  if (get_frame != NULL) {
1585                                          in_buffer = (unsigned char*)AVIStreamGetFrame(get_frame, input_num+ARG_STARTFRAMENR);                                          in_buffer = (unsigned char*)AVIStreamGetFrame(get_frame, input_num+start_num);
1586                                          if (in_buffer == NULL)                                          if (in_buffer == NULL)
1587                                                  result = 1;                                                  result = 1;
1588                                          else                                          else
1589                                                  in_buffer += ((DWORD*)in_buffer)[0];                                                  in_buffer += ((DWORD*)in_buffer)[0];
1590                                  } else {                                  } else {
1591                                          if(AVIStreamRead(avi_stream, input_num+ARG_STARTFRAMENR, 1, in_buffer, 4*XDIM*YDIM, NULL, NULL ) != AVIERR_OK)                                          if (AVIStreamRead(avi_in_stream, input_num + start_num, 1, in_buffer, 4 * XDIM*YDIM, NULL, NULL) != AVIERR_OK)
1592                                                  result = 1;                                                  result = 1;
1593                                  }                                  }
1594                          } else                          } else
# Line 1165  Line 1610 
1610   *                       Encode and decode this frame   *                       Encode and decode this frame
1611   ****************************************************************************/   ****************************************************************************/
1612    
1613                  if (input_num >= (unsigned int)ARG_MAXFRAMENR-1 && ARG_MAXBFRAMES) {                  if ((unsigned int)(input_num+start_num) >= (unsigned int)(stop_num-1) && ARG_MAXBFRAMES) {
1614                          stats_type = XVID_TYPE_PVOP;                          stats_type = XVID_TYPE_PVOP;
1615                  }                  }
1616                  else                  else
# Line 1173  Line 1618 
1618    
1619                  enctime = msecond();                  enctime = msecond();
1620                  m4v_size =                  m4v_size =
1621                          enc_main(!result ? in_buffer : 0, mp4_buffer, &key, &stats_type,                          enc_main(enc_handle, !result ? in_buffer : 0, mp4_buffer, &key, &stats_type,
1622                                           &stats_quant, &stats_length, sse, input_num);                                           &stats_quant, &stats_length, sse, input_num);
1623                  enctime = msecond() - enctime;                  enctime = msecond() - enctime;
1624    
# Line 1201  Line 1646 
1646                          }                          }
1647    
1648                          if (stats_length > 8) {                          if (stats_length > 8) {
1649                                  framestats[stats_type].count++;                                  h->framestats[stats_type].count++;
1650                                  framestats[stats_type].quants[stats_quant]++;                                  h->framestats[stats_type].quants[stats_quant]++;
1651                                  framestats[stats_type].size += stats_length;                                  h->framestats[stats_type].size += stats_length;
1652                          }                          }
1653                          else {                          else {
1654                                  framestats[5].count++;                                  h->framestats[5].count++;
1655                                  framestats[5].quants[stats_quant]++;                                  h->framestats[5].quants[stats_quant]++;
1656                                  framestats[5].size += stats_length;                                  h->framestats[5].size += stats_length;
1657                          }                          }
1658    
1659  #define SSE2PSNR(sse, width, height) ((!(sse))?0.0f : 48.131f - 10*(float)log10((float)(sse)/((float)((width)*(height)))))  #define SSE2PSNR(sse, width, height) ((!(sse))?0.0f : 48.131f - 10*(float)log10((float)(sse)/((float)((width)*(height)))))
1660    
1661                          if (ARG_PROGRESS == 0) {                          if (ARG_PROGRESS == 0) {
1662                                  printf("%5d: key=%i, time= %6.0f, len= %7d", !result ? input_num : -1,                                  printf("%5d: key=%i, time= %6.0f, len= %7d", !result ? (input_num+start_num) : -1,
1663                                          key, (float) enctime, (int) m4v_size);                                          key, (float) enctime, (int) m4v_size);
1664                                  printf(" | type=%s, quant= %2d, len= %7d", type, stats_quant,                                  printf(" | type=%s, quant= %2d, len= %7d", type, stats_quant,
1665                                     stats_length);                                     stats_length);
# Line 1227  Line 1672 
1672                                  }                                  }
1673                                  printf("\n");                                  printf("\n");
1674                          } else {                          } else {
1675                                  if (input_num % ARG_PROGRESS == 1) {                                  if ((input_num) % ARG_PROGRESS == 1) {
1676                                          if (ARG_MAXFRAMENR > 0) {                                          if (stop_num > 0) {
1677                                                  fprintf(stderr, "\r%7d frames(%3d%%) encoded, %6.2f fps, Average Bitrate = %5.0fkbps", \                                                  fprintf(stderr, "\r%7d frames(%3d%%) encoded, %6.2f fps, Average Bitrate = %5.0fkbps", \
1678                                                          input_num, input_num*100/ARG_MAXFRAMENR, input_num*1000/totalenctime, \                                                          (ARG_NUM_APP_THREADS*input_num), (input_num)*100/(stop_num-start_num), (ARG_NUM_APP_THREADS*input_num)*1000/(totalenctime), \
1679                                                          (((totalsize/1000)*ARG_FRAMERATE)*8)/input_num);                                                          ((((totalsize)/1000)*ARG_FRAMERATE)*8)/(input_num));
1680                                          } else {                                          } else {
1681                                                  fprintf(stderr, "\r%7d frames encoded, %6.2f fps, Average Bitrate = %5.0fkbps", \                                                  fprintf(stderr, "\r%7d frames encoded, %6.2f fps, Average Bitrate = %5.0fkbps", \
1682                                                          input_num, input_num*1000/totalenctime, \                                                          (ARG_NUM_APP_THREADS*input_num), (ARG_NUM_APP_THREADS*input_num)*1000/(totalenctime), \
1683                                                          (((totalsize/1000)*ARG_FRAMERATE)*8)/input_num);                                                          ((((totalsize)/1000)*ARG_FRAMERATE)*8)/(input_num));
1684                                          }                                          }
1685                                  }                                  }
1686                          }                          }
# Line 1269  Line 1714 
1714                                  }                                  }
1715                          }                          }
1716                          else                          else
1717                                  sprintf(timecode, "%f", ((double)ARG_DWSCALE/ARG_DWRATE)*1000*output_num);                                  sprintf(timecode, "%f", ((double)ARG_DWSCALE/ARG_DWRATE)*1000*(output_num-start_num));
1718    
1719                          /* Save single files */                          /* Save single files */
1720                          if (ARG_SAVEINDIVIDUAL) {                          if (ARG_SAVEINDIVIDUAL) {
# Line 1280  Line 1725 
1725                                  fclose(out);                                  fclose(out);
1726                          }                          }
1727  #ifdef XVID_AVI_OUTPUT  #ifdef XVID_AVI_OUTPUT
1728                          if (ARG_AVIOUTPUTFILE && myAVIStream) {                          if (outavifilename && myAVIStream) {
1729                                  int output_frame;                                  int output_frame;
1730    
1731                                  if (time_file == NULL)                                  if (time_file == NULL)
1732                                          output_frame = output_num;                                          output_frame = (output_num-start_num);
1733                                  else {                                  else {
1734                                          output_frame = (int)(atof(timecode)/1000/((double)ARG_DWSCALE/ARG_DWRATE)+.5);                                          output_frame = (int)(atof(timecode)/1000/((double)ARG_DWSCALE/ARG_DWRATE)+.5);
1735                                  }                                  }
# Line 1299  Line 1744 
1744                                          removedivxp((char*)mp4_buffer, m4v_size);                                          removedivxp((char*)mp4_buffer, m4v_size);
1745    
1746                                  /* Save ES stream */                                  /* Save ES stream */
1747                                  if (ARG_OUTPUTFILE && out_file && !(fakenvop && m4v_size <= 8)) {                                  if (outfilename && out_file && !(fakenvop && m4v_size <= 8)) {
1748                                                  fwrite(mp4_buffer, 1, m4v_size, out_file);                                                  fwrite(mp4_buffer, 1, m4v_size, out_file);
1749                                  }                                  }
1750  #ifdef XVID_MKV_OUTPUT  #ifdef XVID_MKV_OUTPUT
1751                                  if (ARG_MKVOUTPUTFILE && myMKVStream) {                                  if (outmkvfilename && myMKVStream) {
1752                                          MKVStreamWrite(myMKVStream, atof(timecode), 1, (ARG_PACKED && fakenvop && (m4v_size <= 8)) ? NULL : mp4_buffer, m4v_size, key ? AVIIF_KEYFRAME : 0, NULL, NULL);                                          MKVStreamWrite(myMKVStream, atof(timecode), 1, (ARG_PACKED && fakenvop && (m4v_size <= 8)) ? NULL : mp4_buffer, m4v_size, key ? AVIIF_KEYFRAME : 0, NULL, NULL);
1753                                  }                                  }
1754  #endif  #endif
# Line 1313  Line 1758 
1758                                  fakenvop=0;                                  fakenvop=0;
1759                  }                  }
1760    
1761                  input_num++;                  if (!result)
1762                            (input_num)++;
1763    
1764                  /* Read the header if it's pgm stream */                  /* Read the header if it's pgm stream */
1765                  if (!result && (ARG_INPUTTYPE==1))                  if (!result && (ARG_INPUTTYPE==1))
# Line 1325  Line 1771 
1771          } while (1);          } while (1);
1772    
1773    
   
 /*****************************************************************************  
  *         Calculate totals and averages for output, print results  
  ****************************************************************************/  
   
  printf("\n");  
         printf("Tot: enctime(ms) =%7.2f,               length(bytes) = %7d\n",  
                    totalenctime, (int) totalsize);  
   
         if (input_num > 0) {  
                 totalsize /= input_num;  
                 totalenctime /= input_num;  
                 totalPSNR[0] /= input_num;  
                 totalPSNR[1] /= input_num;  
                 totalPSNR[2] /= input_num;  
         } else {  
                 totalsize = -1;  
                 totalenctime = -1;  
         }  
   
         printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d",  
                    totalenctime, 1000 / totalenctime, (int) totalsize);  
    if (ARG_STATS) {  
        printf(", psnr y = %2.2f, psnr u = %2.2f, psnr v = %2.2f",  
                   totalPSNR[0],totalPSNR[1],totalPSNR[2]);  
         }  
         printf("\n");  
         if (framestats[XVID_TYPE_IVOP].count) {  
                 printf("I frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \  
                         framestats[XVID_TYPE_IVOP].count, framestats[XVID_TYPE_IVOP].size/framestats[XVID_TYPE_IVOP].count, \  
                         framestats[XVID_TYPE_IVOP].size, minquant(framestats[XVID_TYPE_IVOP].quants), \  
                         avgquant(framestats[XVID_TYPE_IVOP]), maxquant(framestats[XVID_TYPE_IVOP].quants));  
         }  
         if (framestats[XVID_TYPE_PVOP].count) {  
                 printf("P frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \  
                         framestats[XVID_TYPE_PVOP].count, framestats[XVID_TYPE_PVOP].size/framestats[XVID_TYPE_PVOP].count, \  
                         framestats[XVID_TYPE_PVOP].size, minquant(framestats[XVID_TYPE_PVOP].quants), \  
                         avgquant(framestats[XVID_TYPE_PVOP]), maxquant(framestats[XVID_TYPE_PVOP].quants));  
         }  
         if (framestats[XVID_TYPE_BVOP].count) {  
                 printf("B frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \  
                         framestats[XVID_TYPE_BVOP].count, framestats[XVID_TYPE_BVOP].size/framestats[XVID_TYPE_BVOP].count, \  
                         framestats[XVID_TYPE_BVOP].size, minquant(framestats[XVID_TYPE_BVOP].quants), \  
                         avgquant(framestats[XVID_TYPE_BVOP]), maxquant(framestats[XVID_TYPE_BVOP].quants));  
         }  
         if (framestats[XVID_TYPE_SVOP].count) {  
                 printf("S frames: %6d frames, size = %7d/%7d, quants = %2d / %.2f / %2d\n", \  
                         framestats[XVID_TYPE_SVOP].count, framestats[XVID_TYPE_SVOP].size/framestats[XVID_TYPE_SVOP].count, \  
                         framestats[XVID_TYPE_SVOP].size, minquant(framestats[XVID_TYPE_SVOP].quants), \  
                         avgquant(framestats[XVID_TYPE_SVOP]), maxquant(framestats[XVID_TYPE_SVOP].quants));  
         }  
         if (framestats[5].count) {  
                 printf("N frames: %6d frames, size = %7d/%7d\n", \  
                         framestats[5].count, framestats[5].size/framestats[5].count, \  
                         framestats[5].size);  
         }  
   
   
 /*****************************************************************************  
  *                            XviD PART  Stop  
  ****************************************************************************/  
   
1774    release_all:    release_all:
1775    
1776      h->input_num = input_num;
1777      h->totalenctime = totalenctime;
1778      h->totalsize = totalsize;
1779    
1780  #ifdef XVID_AVI_INPUT  #ifdef XVID_AVI_INPUT
1781          if (get_frame) AVIStreamGetFrameClose(get_frame);          if (get_frame) AVIStreamGetFrameClose(get_frame);
1782          if (avi_stream) AVIStreamRelease(avi_stream);          if (avi_in_stream) AVIStreamRelease(avi_in_stream);
 #ifndef XVID_AVI_OUTPUT  
         AVIFileExit();  
 #endif  
1783  #endif  #endif
1784    
1785          if (enc_handle) {          if (enc_handle) {
1786                  result = enc_stop();                  result = enc_stop(enc_handle);
1787                  if (result)                  if (result)
1788                          fprintf(stderr, "Encore RELEASE problem return value %d\n",                          fprintf(stderr, "Encore RELEASE problem return value %d\n",
1789                                          result);                                          result);
# Line 1408  Line 1793 
1793                  fclose(in_file);                  fclose(in_file);
1794          if (out_file)          if (out_file)
1795                  fclose(out_file);                  fclose(out_file);
1796            if (time_file)
1797                    fclose(time_file);
1798    
1799  #ifdef XVID_AVI_OUTPUT  #ifdef XVID_AVI_OUTPUT
1800          if (myAVIStream) AVIStreamRelease(myAVIStream);          if (myAVIStream) AVIStreamRelease(myAVIStream);
1801          if (myAVIFile) AVIFileRelease(myAVIFile);          if (myAVIFile) AVIFileRelease(myAVIFile);
         AVIFileExit();  
1802  #endif  #endif
1803  #ifdef XVID_MKV_OUTPUT  #ifdef XVID_MKV_OUTPUT
1804          if (myMKVStream) MKVStreamRelease(myMKVStream);          if (myMKVStream) MKVStreamRelease(myMKVStream);
1805          if (myMKVFile) MKVFileRelease(myMKVFile);          if (myMKVFile) MKVFileRelease(myMKVFile);
1806  #endif  #endif
1807    #if defined(XVID_AVI_INPUT) || defined(XVID_AVI_OUTPUT)
1808            AVIFileExit();
1809    #endif
1810    
1811    free_all_memory:    free_all_memory:
1812            if (out_buffer)
1813          free(out_buffer);          free(out_buffer);
1814            if (mp4_buffer)
1815          free(mp4_buffer);          free(mp4_buffer);
1816            if ((in_buffer) && (get_frame == NULL))
1817          free(in_buffer);          free(in_buffer);
   
         return (0);  
   
1818  }  }
1819    
   
1820  /*****************************************************************************  /*****************************************************************************
1821   *                        "statistical" functions   *                        "statistical" functions
1822   *   *
1823   *  these are not needed for encoding or decoding, but for measuring   *  these are not needed for encoding or decoding, but for measuring
1824   *  time and quality, there in nothing specific to XviD in these   *  time and quality, there in nothing specific to Xvid in these
1825   *   *
1826   *****************************************************************************/   *****************************************************************************/
1827    
# Line 1513  Line 1901 
1901          fprintf(stderr, "Input options:\n");          fprintf(stderr, "Input options:\n");
1902          fprintf(stderr, " -i      string : input filename (stdin)\n");          fprintf(stderr, " -i      string : input filename (stdin)\n");
1903  #ifdef XVID_AVI_INPUT  #ifdef XVID_AVI_INPUT
1904          fprintf(stderr, " -type   integer: input data type (yuv=0, pgm=1, avi/avs=2)\n");          fprintf(stderr, " -type   integer : input data type (yuv=0, pgm=1, avi/avs=2) (");
1905  #else  #else
1906          fprintf(stderr, " -type   integer: input data type (yuv=0, pgm=1)\n");          fprintf(stderr, " -type   integer : input data type (yuv=0, pgm=1) (");
1907  #endif  #endif
1908          fprintf(stderr, " -w      integer: frame width ([1.2048])\n");          fprintf(stderr, "%d)\n", ARG_INPUTTYPE);
1909          fprintf(stderr, " -h      integer: frame height ([1.2048])\n");          fprintf(stderr, " -w      integer : frame width ([1.%d])\n", MAX_XDIM);
1910          fprintf(stderr, " -csp    string : colorspace of raw input file i420, yv12 (default)\n");          fprintf(stderr, " -h      integer : frame height ([1.%d])\n", MAX_YDIM);
1911          fprintf(stderr, " -frames integer: number of frames to encode\n");          fprintf(stderr, " -csp    string  : colorspace of raw input file i420%s, yv12%s\n", (ARG_COLORSPACE == XVID_CSP_I420)?" (default)":"", (ARG_COLORSPACE == XVID_CSP_YV12)?" (default)":"");
1912          fprintf(stderr, "\n");          fprintf(stderr, " -frames integer : number of frames to encode (");
1913            if (ARG_MAXFRAMENR==-1)
1914                    fprintf(stderr, "all)");
1915            else
1916                    fprintf(stderr, "%d)", ARG_MAXFRAMENR);
1917            fprintf(stderr, "\n\n");
1918          fprintf(stderr, "Output options:\n");          fprintf(stderr, "Output options:\n");
1919          fprintf(stderr, " -dump      : save decoder output\n");          fprintf(stderr, " -dump      : save decoder output\n");
1920          fprintf(stderr, " -save      : save an Elementary Stream file per frame\n");          fprintf(stderr, " -save      : save an Elementary Stream file per frame\n");
# Line 1529  Line 1922 
1922  #ifdef XVID_AVI_OUTPUT  #ifdef XVID_AVI_OUTPUT
1923          fprintf(stderr, " -avi string: save an AVI file for the complete sequence\n");          fprintf(stderr, " -avi string: save an AVI file for the complete sequence\n");
1924  #endif  #endif
1925    #ifdef XVID_MKV_OUTPUT
1926          fprintf(stderr, " -mkv string: save a MKV file for the complete sequence\n");          fprintf(stderr, " -mkv string: save a MKV file for the complete sequence\n");
1927          fprintf(stderr, "\n");  #endif
         fprintf(stderr, "BFrames options:\n");  
         fprintf(stderr, " -max_bframes   integer: max bframes (2)\n");  
         fprintf(stderr, " -bquant_ratio  integer: bframe quantizer ratio (150)\n");  
         fprintf(stderr, " -bquant_offset integer: bframe quantizer offset (100)\n");  
1928          fprintf(stderr, "\n");          fprintf(stderr, "\n");
1929          fprintf(stderr, "Rate control options:\n");          fprintf(stderr, "Rate control options:\n");
1930          fprintf(stderr, " -framerate float               : target framerate (25.0)\n");          fprintf(stderr, " -framerate        float      : target framerate (auto)\n");
1931          fprintf(stderr, " -bitrate   [integer]           : target bitrate in kbps (700)\n");          fprintf(stderr, " -bitrate          [integer]  : target bitrate in kbps (%d)\n", DEFAULT_BITRATE/1000);
1932          fprintf(stderr, " -size      integer                     : target size in kilobytes\n");          fprintf(stderr, " -size      integer                     : target size in kilobytes\n");
1933      fprintf(stderr,     " -single                        : single pass mode (default)\n");          fprintf(stderr, " -single                      : single pass mode%s\n", (ARG_SINGLE)?" (default)":"");
1934          fprintf(stderr, " -cq        float               : single pass constant quantizer\n");          fprintf(stderr, " -cq        float               : single pass constant quantizer\n");
1935          fprintf(stderr, " -pass1     [filename]          : twopass mode (first pass)\n");          fprintf(stderr, " -pass1     [filename]          : twopass mode (first pass)\n");
1936          fprintf(stderr, " -full1pass                     : perform full first pass\n");          fprintf(stderr, " -full1pass                   : perform full quality first pass (disabled)\n");
1937          fprintf(stderr, " -pass2     [filename]          : twopass mode (2nd pass)\n");          fprintf(stderr, " -pass2     [filename]          : twopass mode (2nd pass)\n");
1938            fprintf(stderr, " -max_key_interval integer    : maximum keyframe interval (%d)\n", ARG_MAXKEYINTERVAL);
1939            fprintf(stderr, " -zones            [zones]    : use `-help zones' for usage guidelines\n");
1940          fprintf(stderr, " -zq starting_frame float       : bitrate zone; quant\n");          fprintf(stderr, " -zq starting_frame float       : bitrate zone; quant\n");
1941          fprintf(stderr, " -zw starting_frame float       : bitrate zone; weight\n");          fprintf(stderr, " -zw starting_frame float       : bitrate zone; weight\n");
     fprintf(stderr, " -max_key_interval integer      : maximum keyframe interval (300)\n");  
1942      fprintf(stderr, "\n");      fprintf(stderr, "\n");
1943          fprintf(stderr, "Single Pass options:\n");          fprintf(stderr, "Single Pass options:\n");
1944          fprintf(stderr, "-reaction   integer             : reaction delay factor (16)\n");          fprintf(stderr, " -reaction         integer    : reaction delay factor (%d)\n", ARG_REACTION);
1945          fprintf(stderr, "-averaging  integer             : averaging period (100)\n");          fprintf(stderr, " -averaging        integer    : averaging period (%d)\n", ARG_AVERAGING);
1946          fprintf(stderr, "-smoother   integer             : smoothing buffer (100)\n");          fprintf(stderr, " -smoother         integer    : smoothing buffer (%d)\n", ARG_SMOOTHER);
1947          fprintf(stderr, "\n");          fprintf(stderr, "\n");
1948          fprintf(stderr, "Second Pass options:\n");          fprintf(stderr, "Second Pass options:\n");
1949          fprintf(stderr, "-kboost     integer             : I frame boost (10)\n");          fprintf(stderr, " -kboost           integer    : I frame boost (%d)\n", ARG_KBOOST);
1950          fprintf(stderr, "-kthresh    integer             : I frame reduction threshold (1)\n");          fprintf(stderr, " -kthresh          integer    : I frame reduction threshold (%d)\n", ARG_KTHRESH);
1951          fprintf(stderr, "-kreduction integer             : I frame reduction amount (20)\n");          fprintf(stderr, " -kreduction       integer    : I frame reduction amount (%d)\n", ARG_KREDUCTION);
1952          fprintf(stderr, "-ostrength  integer             : overflow control strength (5)\n");          fprintf(stderr, " -ostrength        integer    : overflow control strength (%d)\n", ARG_OVERSTRENGTH);
1953          fprintf(stderr, "-oimprove   integer             : max overflow improvement (5)\n");          fprintf(stderr, " -oimprove         integer    : max overflow improvement (%d)\n", ARG_OVERIMPROVE);
1954          fprintf(stderr, "-odegrade   integer             : max overflow degradation (5)\n");          fprintf(stderr, " -odegrade         integer    : max overflow degradation (%d)\n", ARG_OVERDEGRADE);
1955          fprintf(stderr, "-chigh      integer             : high bitrate scenes degradation (0)\n");          fprintf(stderr, " -chigh            integer    : high bitrate scenes degradation (%d)\n", ARG_CHIGH);
1956          fprintf(stderr, "-clow       integer             : low bitrate scenes improvement (0)\n");          fprintf(stderr, " -clow             integer    : low bitrate scenes improvement (%d)\n", ARG_CLOW);
1957          fprintf(stderr, "-overhead   integer             : container frame overhead (24)\n");          fprintf(stderr, " -overhead         integer    : container frame overhead (%d)\n", ARG_OVERHEAD);
1958          fprintf(stderr, "-vbvsize    integer             : use vbv buffer size\n");          fprintf(stderr, "-vbvsize    integer             : use vbv buffer size\n");
1959          fprintf(stderr, "-vbvmax     integer             : vbv max bitrate\n");          fprintf(stderr, "-vbvmax     integer             : vbv max bitrate\n");
1960          fprintf(stderr, "-vbvpeak    integer             : vbv peak bitrate over 1 second\n");          fprintf(stderr, "-vbvpeak    integer             : vbv peak bitrate over 1 second\n");
1961          fprintf(stderr, "\n");          fprintf(stderr, "\n");
1962            fprintf(stderr, "BFrames options:\n");
1963            fprintf(stderr, " -max_bframes      integer    : max bframes (%d)\n", ARG_MAXBFRAMES);
1964            fprintf(stderr, " -bquant_ratio     integer    : bframe quantizer ratio (%d)\n", ARG_BQRATIO);
1965            fprintf(stderr, " -bquant_offset    integer    : bframe quantizer offset (%d)\n", ARG_BQOFFSET);
1966            fprintf(stderr, "\n");
1967          fprintf(stderr, "Other options\n");          fprintf(stderr, "Other options\n");
1968          fprintf(stderr, " -noasm                         : do not use assembly optmized code\n");          if (ARG_USE_ASSEMBLER)
1969          fprintf(stderr, " -turbo                         : use turbo presets for higher encoding speed\n");                  fprintf(stderr, " -noasm                       : do not use assembly optimized code (use)\n");
1970          fprintf(stderr, " -quality integer               : quality ([0..%d]) (6)\n", ME_ELEMENTS - 1);          else
1971          fprintf(stderr, " -vhqmode integer               : level of R-D optimizations ([0..4]) (1)\n");                  fprintf(stderr, " -asm                         : use assembly optimized code (don't use)\n");
1972          fprintf(stderr, " -bvhq                          : use R-D optimizations for B-frames\n");          if (ARG_TURBO)
1973          fprintf(stderr, " -qpel                          : use quarter pixel ME\n");                  fprintf(stderr, " -noturbo                     : do not use turbo presets for higher encoding speed (use)\n");
1974          fprintf(stderr, " -gmc                           : use global motion compensation\n");          else
1975          fprintf(stderr, " -qtype   integer               : quantization type (H263:0, MPEG4:1) (0)\n");                  fprintf(stderr, " -turbo                       : use turbo presets for higher encoding speed (don't use)\n");
1976            fprintf(stderr, " -quality          integer    : quality ([0..%d]) (%d)\n", ME_ELEMENTS - 1, ARG_QUALITY);
1977            fprintf(stderr, " -vhqmode          integer    : level of R-D optimizations ([0..4]) (%d)\n", ARG_VHQMODE);
1978            if (ARG_BVHQ)
1979                    fprintf(stderr, " -nobvhq                      : do not use R-D optimizations for B-frames (use)\n");
1980            else
1981                    fprintf(stderr, " -bvhq                        : use R-D optimizations for B-frames (don't use)\n");
1982            fprintf(stderr, " -metric           integer    : distortion metric for R-D opt (PSNR:0, PSNRHVSM:1) (%d)\n", ARG_QMETRIC);
1983            if (ARG_QPEL)
1984                    fprintf(stderr, " -noqpel                      : do not use quarter pixel ME (use)\n");
1985            else
1986                    fprintf(stderr, " -qpel                        : use quarter pixel ME (don't use)\n");
1987            if (ARG_GMC)
1988                    fprintf(stderr, " -nogmc                       : do not use global motion compensation (use)\n");
1989            else
1990                    fprintf(stderr, " -gmc                         : use global motion compensation (don't use)\n");
1991            fprintf(stderr, " -qtype            integer    : quantization type (H263:0, MPEG4:1) (%d)\n", ARG_QTYPE);
1992          fprintf(stderr, " -qmatrix filename              : use custom MPEG4 quantization matrix\n");          fprintf(stderr, " -qmatrix filename              : use custom MPEG4 quantization matrix\n");
1993          fprintf(stderr, " -interlaced [integer]          : interlaced encoding (BFF:1, TFF:2) (1)\n");          fprintf(stderr, " -interlaced       [integer]  : interlaced encoding (BFF:1, TFF:2) (%d)\n", DEFAULT_INTERLACING);
1994          fprintf(stderr, " -nopacked                      : Disable packed mode\n");          if (ARG_PACKED)
1995          fprintf(stderr, " -noclosed_gop                  : Disable closed GOP mode\n");                  fprintf(stderr, " -nopacked                    : disable packed B-frames mode (enabled)\n");
1996          fprintf(stderr, " -lumimasking                   : use lumimasking algorithm\n");          else
1997          fprintf(stderr, " -stats                         : print stats about encoded frames\n");                  fprintf(stderr, " -packed                      : enable packed B-frames mode (disabled)\n");
1998          fprintf(stderr, " -ssim [integer]                : prints ssim for every frame (accurate: 0 fast: 4) (2)\n");          if (ARG_CLOSED_GOP)
1999          fprintf(stderr, " -ssim_file filename            : outputs the ssim stats into a file\n");                  fprintf(stderr, " -noclosed_gop                : disable closed GOP mode (enabled)\n");
2000          fprintf(stderr, " -debug                         : activates xvidcore internal debugging output\n");          else
2001          fprintf(stderr, " -vop_debug                     : print some info directly into encoded frames\n");                  fprintf(stderr, " -closed_gop                  : enable closed GOP mode (disabled)\n");
2002          fprintf(stderr, " -nochromame                    : Disable chroma motion estimation\n");          fprintf(stderr, " -masking          [integer]  : HVS masking mode (None:0, Lumi:1, Variance:2) (%d)\n", ARG_LUMIMASKING);
2003          fprintf(stderr, " -notrellis                     : Disable trellis quantization\n");          if (ARG_STATS)
2004          fprintf(stderr, " -imin    integer               : Minimum I Quantizer (1..31) (2)\n");                  fprintf(stderr, " -nostats                     : do not print stats about encoded frames (print)\n");
2005          fprintf(stderr, " -imax    integer               : Maximum I quantizer (1..31) (31)\n");          else
2006          fprintf(stderr, " -bmin    integer               : Minimum B Quantizer (1..31) (2)\n");                  fprintf(stderr, " -stats                       : print stats about encoded frames (don't print)\n");
2007          fprintf(stderr, " -bmax    integer               : Maximum B quantizer (1..31) (31)\n");          fprintf(stderr, " -ssim             [integer]  : print ssim for every frame (accurate: 0 fast: 4) (%d)\n", DEFAULT_SSIM);
2008          fprintf(stderr, " -pmin    integer               : Minimum P Quantizer (1..31) (2)\n");          fprintf(stderr, " -ssim_file        filename   : output the ssim stats into a file\n");
2009          fprintf(stderr, " -pmax    integer               : Maximum P quantizer (1..31) (31)\n");          if (ARG_PSNRHVSM)
2010          fprintf(stderr, " -drop    integer               : Frame Drop Ratio (0..100) (0)\n");                  fprintf(stderr, " -nopsnrhvsm                  : do not print PSNRHVSM metric for every frame (print)\n");
2011          fprintf(stderr, " -start   integer               : Starting frame number\n");          else
2012          fprintf(stderr, " -threads integer               : Number of threads\n");                  fprintf(stderr, " -psnrhvsm                    : print PSNRHVSM metric for every frame (don't print)\n");
2013          fprintf(stderr, " -progress [integer]            : Show progress updates every n frames (10)\n");          fprintf(stderr, " -debug            integer    : activate xvidcore internal debugging output (don't activate)\n");
2014          fprintf(stderr, " -par     integer[:integer]     : Set Pixel Aspect Ratio.\n");          if (ARG_VOPDEBUG)
2015                    fprintf(stderr, " -novop_debug                 : do not print debug info directly into encoded frames (print)\n");
2016            else
2017                    fprintf(stderr, " -vop_debug                   : print some info directly into encoded frames (don't print)\n");
2018            if (ARG_CHROMAME)
2019                    fprintf(stderr, " -nochromame                  : disable chroma motion estimation (enabled)\n");
2020            else
2021                    fprintf(stderr, " -chromame                    : enable chroma motion estimation (disabled)\n");
2022            if (ARG_TRELLIS)
2023                    fprintf(stderr, " -notrellis                   : disable trellis quantization (enabled)\n");
2024            else
2025                    fprintf(stderr, " -trellis                     : enable trellis quantization (disabled)\n");
2026            fprintf(stderr, " -imin             integer    : minimum I Quantizer (1..31) (%d)\n", ARG_QUANTS[0]);
2027            fprintf(stderr, " -imax             integer    : maximum I quantizer (1..31) (%d)\n", ARG_QUANTS[1]);
2028            fprintf(stderr, " -bmin             integer    : minimum B Quantizer (1..31) (%d)\n", ARG_QUANTS[4]);
2029            fprintf(stderr, " -bmax             integer    : maximum B quantizer (1..31) (%d)\n", ARG_QUANTS[5]);
2030            fprintf(stderr, " -pmin             integer    : minimum P Quantizer (1..31) (%d)\n", ARG_QUANTS[2]);
2031            fprintf(stderr, " -pmax             integer    : maximum P quantizer (1..31) (%d)\n", ARG_QUANTS[3]);
2032            fprintf(stderr, " -drop             integer    : frame Drop Ratio (0..100) (%d)\n", ARG_FRAMEDROP);
2033            fprintf(stderr, " -start            integer    : starting frame number (%d)\n", ARG_STARTFRAMENR);
2034            fprintf(stderr, " -threads          integer    : number of threads (auto)\n");
2035            fprintf(stderr, " -slices           integer    : number of slices (%d)\n", ARG_SLICES);
2036            fprintf(stderr, " -progress         [integer]  : show progress updates every n frames (%d)\n", DEFAULT_PROGRESS);
2037            fprintf(stderr, " -par       integer[:integer] : set Pixel Aspect Ratio (%d)\n", ARG_PAR);
2038          fprintf(stderr, "                                  1 = 1:1\n");          fprintf(stderr, "                                  1 = 1:1\n");
2039          fprintf(stderr, "                                  2 = 12:11 (4:3 PAL)\n");          fprintf(stderr, "                                  2 = 12:11 (4:3 PAL)\n");
2040          fprintf(stderr, "                                  3 = 10:11 (4:3 NTSC)\n");          fprintf(stderr, "                                  3 = 10:11 (4:3 NTSC)\n");
2041          fprintf(stderr, "                                  4 = 16:11 (16:9 PAL)\n");          fprintf(stderr, "                                  4 = 16:11 (16:9 PAL)\n");
2042          fprintf(stderr, "                                  5 = 40:33 (16:9 NTSC)\n");          fprintf(stderr, "                                  5 = 40:33 (16:9 NTSC)\n");
2043          fprintf(stderr, "                              other = custom (width:height)\n");          fprintf(stderr, "                              other = custom (width:height)\n");
2044          fprintf(stderr, " -help                          : prints this help message\n");          fprintf(stderr, " -help                        : print this help message\n");
2045          fprintf(stderr, "\n");          fprintf(stderr, "\n");
2046          fprintf(stderr, "NB: You can define %d zones repeating the -z[qw] option as needed.\n", MAX_ZONES);          fprintf(stderr, "NB: You can define up to %d zones via both the -zones and the -z[qw] options as needed.\n", MAX_ZONES);
2047  }  }
2048    
2049  /*****************************************************************************  /*****************************************************************************
2050   *                       Input and output functions   *                       Input and output functions
2051   *   *
2052   *      the are small and simple routines to read and write PGM and YUV   *      the are small and simple routines to read and write PGM and YUV
2053   *      image. It's just for convenience, again nothing specific to XviD   *      image. It's just for convenience, again nothing specific to Xvid
2054   *   *
2055   *****************************************************************************/   *****************************************************************************/
2056    
# Line 1626  Line 2061 
2061          int bytes, xsize, ysize, depth;          int bytes, xsize, ysize, depth;
2062          char dummy[2];          char dummy[2];
2063    
2064          bytes = fread(dummy, 1, 2, handle);          bytes = (int) fread(dummy, 1, 2, handle);
2065    
2066          if ((bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5'))          if ((bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5'))
2067                  return (1);                  return (1);
2068    
2069          fscanf(handle, "%d %d %d", &xsize, &ysize, &depth);          fscanf(handle, "%d %d %d", &xsize, &ysize, &depth);
2070            fread(&dummy, 1, 1, handle);
2071          if ((xsize > 4096) || (ysize > 4096*3/2) || (depth != 255)) {          if ((xsize > 4096) || (ysize > 4096*3/2) || (depth != 255)) {
2072                  fprintf(stderr, "%d %d %d\n", xsize, ysize, depth);                  fprintf(stderr, "%d %d %d\n", xsize, ysize, depth);
2073                  return (2);                  return (2);
# Line 1649  Line 2085 
2085                           unsigned char *image)                           unsigned char *image)
2086  {  {
2087          int i;          int i;
         char dummy;  
2088    
2089          unsigned char *y = image;          unsigned char *y = image;
2090          unsigned char *u = image + XDIM * YDIM;          unsigned char *u = image + XDIM * YDIM;
# Line 1670  Line 2105 
2105                  v += XDIM / 2;                  v += XDIM / 2;
2106          }          }
2107    
         /*  I don't know why, but this seems needed */  
         fread(&dummy, 1, 1, handle);  
   
2108          return (0);          return (0);
2109  }  }
2110  #else  #else
# Line 1734  Line 2166 
2166    
2167  /* sample plugin */  /* sample plugin */
2168    
2169    #if 0
2170  int  int
2171  rawenc_debug(void *handle,  rawenc_debug(void *handle,
2172                           int opt,                           int opt,
# Line 1773  Line 2206 
2206    
2207          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
2208  }  }
2209    #endif
2210    
2211  #define FRAMERATE_INCR 1001  #define FRAMERATE_INCR 1001
2212    
2213    /* Gobal encoder init, once per process */
2214  /* Initialize encoder for first use, pass all needed parameters to the codec */  void
2215  static int  enc_gbl(int use_assembler)
 enc_init(int use_assembler)  
2216  {  {
         int xerr;  
         //xvid_plugin_cbr_t cbr;  
     xvid_plugin_single_t single;  
         xvid_plugin_2pass1_t rc2pass1;  
         xvid_plugin_2pass2_t rc2pass2;  
         xvid_plugin_ssim_t ssim;  
         //xvid_plugin_fixed_t rcfixed;  
         xvid_enc_plugin_t plugins[8];  
2217          xvid_gbl_init_t xvid_gbl_init;          xvid_gbl_init_t xvid_gbl_init;
         xvid_enc_create_t xvid_enc_create;  
         int i;  
2218    
2219          /*------------------------------------------------------------------------          /*------------------------------------------------------------------------
2220           * XviD core initialization           * Xvid core initialization
2221           *----------------------------------------------------------------------*/           *----------------------------------------------------------------------*/
2222    
2223          /* Set version -- version checking will done by xvidcore */          /* Set version -- version checking will done by xvidcore */
# Line 1816  Line 2238 
2238                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
2239          }          }
2240    
2241          /* Initialize XviD core -- Should be done once per __process__ */          /* Initialize Xvid core -- Should be done once per __process__ */
2242          xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);          xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
2243        ARG_CPU_FLAGS = xvid_gbl_init.cpu_flags;
2244          enc_info();          enc_info();
2245    }
2246    
2247    /* Initialize encoder for first use, pass all needed parameters to the codec */
2248    static int
2249    enc_init(void **enc_handle, char *stats_pass1, int start_num)
2250    {
2251            int xerr;
2252            //xvid_plugin_cbr_t cbr;
2253        xvid_plugin_single_t single;
2254            xvid_plugin_2pass1_t rc2pass1;
2255            xvid_plugin_2pass2_t rc2pass2;
2256            xvid_plugin_ssim_t ssim;
2257        xvid_plugin_lumimasking_t masking;
2258            //xvid_plugin_fixed_t rcfixed;
2259            xvid_enc_plugin_t plugins[8];
2260            xvid_enc_create_t xvid_enc_create;
2261            int i;
2262    
2263          /*------------------------------------------------------------------------          /*------------------------------------------------------------------------
2264           * XviD encoder initialization           * Xvid encoder initialization
2265           *----------------------------------------------------------------------*/           *----------------------------------------------------------------------*/
2266    
2267          /* Version again */          /* Version again */
# Line 1876  Line 2316 
2316                  rc2pass2.vbv_size     =  ARG_VBVSIZE;                  rc2pass2.vbv_size     =  ARG_VBVSIZE;
2317                  rc2pass2.vbv_initial  =  (ARG_VBVSIZE*3)/4;                  rc2pass2.vbv_initial  =  (ARG_VBVSIZE*3)/4;
2318                  rc2pass2.vbv_maxrate  =  ARG_VBVMAXRATE;                  rc2pass2.vbv_maxrate  =  ARG_VBVMAXRATE;
2319                  rc2pass2.vbv_peakrate =  ARG_VBVPEAKRATE*3;                  rc2pass2.vbv_peakrate =  ARG_VBVPEAKRATE;
2320    
2321    
2322                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;
# Line 1884  Line 2324 
2324                  xvid_enc_create.num_plugins++;                  xvid_enc_create.num_plugins++;
2325          }          }
2326    
2327          if (ARG_PASS1) {          if (stats_pass1) {
2328                  memset(&rc2pass1, 0, sizeof(xvid_plugin_2pass1_t));                  memset(&rc2pass1, 0, sizeof(xvid_plugin_2pass1_t));
2329                  rc2pass1.version = XVID_VERSION;                  rc2pass1.version = XVID_VERSION;
2330                  rc2pass1.filename = ARG_PASS1;                  rc2pass1.filename = stats_pass1;
2331                  if (ARG_FULL1PASS)                  if (ARG_FULL1PASS)
2332                          prepare_full1pass_zones();                          prepare_full1pass_zones();
2333                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass1;                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass1;
# Line 1907  Line 2347 
2347    
2348    
2349          if (ARG_LUMIMASKING) {          if (ARG_LUMIMASKING) {
2350                    memset(&masking, 0, sizeof(xvid_plugin_lumimasking_t));
2351                    masking.method = (ARG_LUMIMASKING==2);
2352                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_lumimasking;
2353                  plugins[xvid_enc_create.num_plugins].param = NULL;                  plugins[xvid_enc_create.num_plugins].param = &masking;
2354                  xvid_enc_create.num_plugins++;                  xvid_enc_create.num_plugins++;
2355          }          }
2356    
# Line 1935  Line 2377 
2377                          ssim.stat_path = ARG_SSIM_PATH;                          ssim.stat_path = ARG_SSIM_PATH;
2378                  }                  }
2379    
2380          ssim.cpu_flags = xvid_gbl_init.cpu_flags;          ssim.cpu_flags = ARG_CPU_FLAGS;
2381                  ssim.b_visualize = 0;                  ssim.b_visualize = 0;
2382                  plugins[xvid_enc_create.num_plugins].param = &ssim;                  plugins[xvid_enc_create.num_plugins].param = &ssim;
2383                  xvid_enc_create.num_plugins++;                  xvid_enc_create.num_plugins++;
2384          }          }
2385    
2386            if (ARG_PSNRHVSM>0) {
2387            plugins[xvid_enc_create.num_plugins].func = xvid_plugin_psnrhvsm;
2388                    plugins[xvid_enc_create.num_plugins].param = NULL;
2389                    xvid_enc_create.num_plugins++;
2390            }
2391    
2392  #if 0  #if 0
2393          if (ARG_DEBUG) {          if (ARG_DEBUG) {
2394                  plugins[xvid_enc_create.num_plugins].func = rawenc_debug;                  plugins[xvid_enc_create.num_plugins].func = rawenc_debug;
# Line 1950  Line 2398 
2398  #endif  #endif
2399    
2400          xvid_enc_create.num_threads = ARG_THREADS;          xvid_enc_create.num_threads = ARG_THREADS;
2401            xvid_enc_create.num_slices  = ARG_SLICES;
2402    
2403          /* Frame rate  */          /* Frame rate  */
2404          xvid_enc_create.fincr = ARG_DWSCALE;          xvid_enc_create.fincr = ARG_DWSCALE;
# Line 1977  Line 2426 
2426          /* Frame drop ratio */          /* Frame drop ratio */
2427          xvid_enc_create.frame_drop_ratio = ARG_FRAMEDROP;          xvid_enc_create.frame_drop_ratio = ARG_FRAMEDROP;
2428    
2429            /* Start frame number */
2430            xvid_enc_create.start_frame_num = start_num;
2431    
2432          /* Global encoder options */          /* Global encoder options */
2433          xvid_enc_create.global = 0;          xvid_enc_create.global = 0;
2434    
# Line 1993  Line 2445 
2445          xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);          xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
2446    
2447          /* Retrieve the encoder instance from the structure */          /* Retrieve the encoder instance from the structure */
2448          enc_handle = xvid_enc_create.handle;          *enc_handle = xvid_enc_create.handle;
2449    
2450          free(xvid_enc_create.zones);          free(xvid_enc_create.zones);
2451    
# Line 2036  Line 2488 
2488                  fprintf(stderr, "TSC ");                  fprintf(stderr, "TSC ");
2489          fprintf(stderr, "\n");          fprintf(stderr, "\n");
2490          fprintf(stderr, "Detected %d cpus,", xvid_gbl_info.num_threads);          fprintf(stderr, "Detected %d cpus,", xvid_gbl_info.num_threads);
2491          if (!ARG_THREADS)          ARG_NUM_APP_THREADS = xvid_gbl_info.num_threads;
2492                  ARG_THREADS = xvid_gbl_info.num_threads;          fprintf(stderr, " using %d threads.\n", (!ARG_THREADS) ? ARG_NUM_APP_THREADS : ARG_THREADS);
         fprintf(stderr, " using %d threads.\n", ARG_THREADS);  
2493          return ret;          return ret;
2494  }  }
2495    
2496  static int  static int
2497  enc_stop()  enc_stop(void *enc_handle)
2498  {  {
2499          int xerr;          int xerr;
2500    
# Line 2054  Line 2505 
2505  }  }
2506    
2507  static int  static int
2508  enc_main(unsigned char *image,  enc_main(void *enc_handle,
2509                     unsigned char *image,
2510                   unsigned char *bitstream,                   unsigned char *bitstream,
2511                   int *key,                   int *key,
2512                   int *stats_type,                   int *stats_type,
# Line 2169  Line 2621 
2621          if (ARG_BVHQ)          if (ARG_BVHQ)
2622                  xvid_enc_frame.vop_flags |= XVID_VOP_RD_BVOP;                  xvid_enc_frame.vop_flags |= XVID_VOP_RD_BVOP;
2623    
2624            if (ARG_QMETRIC == 1)
2625                    xvid_enc_frame.vop_flags |= XVID_VOP_RD_PSNRHVSM;
2626    
2627          switch (ARG_VHQMODE) /* this is the same code as for vfw */          switch (ARG_VHQMODE) /* this is the same code as for vfw */
2628          {          {
2629          case 1: /* VHQ_MODE_DECISION */          case 1: /* VHQ_MODE_DECISION */
# Line 2264  Line 2719 
2719    
2720                  ZONES[NUM_ZONES].frame = 0;                  ZONES[NUM_ZONES].frame = 0;
2721                  ZONES[NUM_ZONES].mode = XVID_ZONE_QUANT;                  ZONES[NUM_ZONES].mode = XVID_ZONE_QUANT;
2722                  ZONES[NUM_ZONES].modifier = ARG_CQ;                  ZONES[NUM_ZONES].modifier = (int) ARG_CQ;
2723                  ZONES[NUM_ZONES].type = XVID_TYPE_AUTO;                  ZONES[NUM_ZONES].type = XVID_TYPE_AUTO;
2724                  ZONES[NUM_ZONES].greyscale = 0;                  ZONES[NUM_ZONES].greyscale = 0;
2725                  ZONES[NUM_ZONES].chroma_opt = 0;                  ZONES[NUM_ZONES].chroma_opt = 0;
# Line 2280  Line 2735 
2735          for(i = 0; i < NUM_ZONES; i++)          for(i = 0; i < NUM_ZONES; i++)
2736                  if (ZONES[i].mode == XVID_ZONE_WEIGHT) {                  if (ZONES[i].mode == XVID_ZONE_WEIGHT) {
2737                          ZONES[i].mode = XVID_ZONE_QUANT;                          ZONES[i].mode = XVID_ZONE_QUANT;
2738                          ZONES[i].modifier = (100*ARG_CQ) / ZONES[i].modifier;                          ZONES[i].modifier = (int) ((100*ARG_CQ) / ZONES[i].modifier);
2739                  }                  }
2740  }  }
2741    
# Line 2349  Line 2804 
2804          int i;          int i;
2805          char* userdata;          char* userdata;
2806    
2807          for (i=0; i <= (bufsize-sizeof(userdata_start_code)); i++) {          for (i=0; i <= (int)(bufsize-sizeof(userdata_start_code)); i++) {
2808                  if (memcmp((void*)userdata_start_code, (void*)(buf+i), strlen(userdata_start_code))==0) {                  if (memcmp((void*)userdata_start_code, (void*)(buf+i), strlen(userdata_start_code))==0) {
2809                          if ((userdata = strstr(buf+i+4, "DivX"))!=NULL) {                          if ((userdata = strstr(buf+i+4, "DivX"))!=NULL) {
2810                                  userdata[strlen(userdata)-1] = '\0';                                  userdata[strlen(userdata)-1] = '\0';

Legend:
Removed from v.1812  
changed lines
  Added in v.2129

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