[cvs] / xvidcore / examples / xvid_encraw.c Repository:
ViewVC logotype

Diff of /xvidcore/examples/xvid_encraw.c

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

revision 1.11.2.28, Wed Jun 25 23:23:21 2003 UTC revision 1.16, Fri Nov 19 09:41:06 2004 UTC
# Line 55  Line 55 
55  /*****************************************************************************  /*****************************************************************************
56   *                            Quality presets   *                            Quality presets
57   ****************************************************************************/   ****************************************************************************/
58  static xvid_motion_t const motion_presets[] = {  
59    static const int motion_presets[] = {
60          /* quality 0 */          /* quality 0 */
61          0,          0,
62    
# Line 72  Line 73 
73          /* quality 4 */          /* quality 4 */
74          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 |          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 |
75          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 |          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 |
76          XVID_ME_CHROMA16 | XVID_ME_CHROMA8,          XVID_ME_CHROMA_PVOP | XVID_ME_CHROMA_BVOP,
77    
78          /* quality 5 */          /* quality 5 */
79          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 |          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 |
80          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 |          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 |
81          XVID_ME_CHROMA16 | XVID_ME_CHROMA8,          XVID_ME_CHROMA_PVOP | XVID_ME_CHROMA_BVOP,
82    
83          /* quality 6 */          /* quality 6 */
84          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 | XVID_ME_EXTSEARCH16 |          XVID_ME_ADVANCEDDIAMOND16 | XVID_ME_HALFPELREFINE16 | XVID_ME_EXTSEARCH16 |
85          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 | XVID_ME_EXTSEARCH8 |          XVID_ME_ADVANCEDDIAMOND8 | XVID_ME_HALFPELREFINE8 | XVID_ME_EXTSEARCH8 |
86          XVID_ME_CHROMA16 | XVID_ME_CHROMA8 ,          XVID_ME_CHROMA_PVOP | XVID_ME_CHROMA_BVOP,
87    
88  };  };
89  #define ME_ELEMENTS (sizeof(motion_presets)/sizeof(motion_presets[0]))  #define ME_ELEMENTS (sizeof(motion_presets)/sizeof(motion_presets[0]))
90    
91  static xvid_vop_t const vop_presets[] = {  static const int vop_presets[] = {
92          /* quality 0 */          /* quality 0 */
93          0,          0,
94    
# Line 140  Line 141 
141  static char *ARG_INPUTFILE = NULL;  static char *ARG_INPUTFILE = NULL;
142  static int ARG_INPUTTYPE = 0;  static int ARG_INPUTTYPE = 0;
143  static int ARG_SAVEMPEGSTREAM = 0;  static int ARG_SAVEMPEGSTREAM = 0;
144    static int ARG_SAVEINDIVIDUAL = 0;
145  static char *ARG_OUTPUTFILE = NULL;  static char *ARG_OUTPUTFILE = NULL;
146  static int XDIM = 0;  static int XDIM = 0;
147  static int YDIM = 0;  static int YDIM = 0;
# Line 149  Line 151 
151  static int ARG_PACKED = 0;  static int ARG_PACKED = 0;
152  static int ARG_DEBUG = 0;  static int ARG_DEBUG = 0;
153  static int ARG_VOPDEBUG = 0;  static int ARG_VOPDEBUG = 0;
154    static int ARG_GMC = 0;
155    static int ARG_INTERLACING = 0;
156    static int ARG_QPEL = 0;
157    static int ARG_CLOSED_GOP = 0;
158    
159  #ifndef READ_PNM  #ifndef READ_PNM
160  #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)  #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
# Line 323  Line 329 
329                  } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {
330                          i++;                          i++;
331                          ARG_INPUTTYPE = atoi(argv[i]);                          ARG_INPUTTYPE = atoi(argv[i]);
332                  } else if (strcmp("-nframes", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-frames", argv[i]) == 0 && i < argc - 1) {
333                          i++;                          i++;
334                          ARG_MAXFRAMENR = atoi(argv[i]);                          ARG_MAXFRAMENR = atoi(argv[i]);
335                  } else if (strcmp("-save", argv[i]) == 0) {                  } else if (strcmp("-save", argv[i]) == 0) {
336                          ARG_SAVEMPEGSTREAM = 1;                          ARG_SAVEMPEGSTREAM = 1;
337                            ARG_SAVEINDIVIDUAL = 1;
338                  } else if (strcmp("-debug", argv[i]) == 0) {                  } else if (strcmp("-debug", argv[i]) == 0) {
339                          i++;                          i++;
340              if (sscanf(argv[i],"0x%x", &ARG_DEBUG) || sscanf(argv[i],"%d", &ARG_DEBUG)) ;              if (sscanf(argv[i],"0x%x", &ARG_DEBUG) || sscanf(argv[i],"%d", &ARG_DEBUG)) ;
341                  } else if (strcmp("-o", argv[i]) == 0 && i < argc - 1) {                  } else if (strcmp("-o", argv[i]) == 0 && i < argc - 1) {
342                            ARG_SAVEMPEGSTREAM = 1;
343                          i++;                          i++;
344                          ARG_OUTPUTFILE = argv[i];                          ARG_OUTPUTFILE = argv[i];
345                  } else if (strcmp("-vop_debug", argv[i]) == 0) {                  } else if (strcmp("-vop_debug", argv[i]) == 0) {
346                          ARG_VOPDEBUG = 1;                          ARG_VOPDEBUG = 1;
347                    } else if (strcmp("-qpel", argv[i]) == 0) {
348                            ARG_QPEL = 1;
349                    } else if (strcmp("-gmc", argv[i]) == 0) {
350                            ARG_GMC = 1;
351                    } else if (strcmp("-interlaced", argv[i]) == 0) {
352                            ARG_INTERLACING = 1;
353                    } else if (strcmp("-closed_gop", argv[i]) == 0) {
354                            ARG_CLOSED_GOP = 1;
355                  } else if (strcmp("-help", argv[i])) {                  } else if (strcmp("-help", argv[i])) {
356                          usage();                          usage();
357                          return (0);                          return (0);
# Line 350  Line 366 
366   *                            Arguments checking   *                            Arguments checking
367   ****************************************************************************/   ****************************************************************************/
368    
369          if (XDIM <= 0 || XDIM >= 2048 || YDIM <= 0 || YDIM >= 2048) {          if (XDIM <= 0 || XDIM >= 4096 || YDIM <= 0 || YDIM >= 4096) {
370                  fprintf(stderr,                  fprintf(stderr,
371                                  "Trying to retreive width and height from PGM header\n");                                  "Trying to retreive width and height from PGM header\n");
372                  ARG_INPUTTYPE = 1;              /* pgm */                  ARG_INPUTTYPE = 1;              /* pgm */
# Line 534  Line 550 
550   ****************************************************************************/   ****************************************************************************/
551    
552                  if (m4v_size > 0 && ARG_SAVEMPEGSTREAM) {                  if (m4v_size > 0 && ARG_SAVEMPEGSTREAM) {
553    
554                          /* Save single files */                          /* Save single files */
555                          if (out_file == NULL) {                          if (ARG_SAVEINDIVIDUAL) {
556                                    FILE *out;
557                                  sprintf(filename, "%sframe%05d.m4v", filepath, output_num);                                  sprintf(filename, "%sframe%05d.m4v", filepath, output_num);
558                                  out_file = fopen(filename, "wb");                                  out = fopen(filename, "w+b");
559                                  fwrite(mp4_buffer, m4v_size, 1, out_file);                                  fwrite(mp4_buffer, m4v_size, 1, out);
560                                  fclose(out_file);                                  fclose(out);
                                 out_file = NULL;  
561                                  output_num++;                                  output_num++;
562                          } else {                          }
563    
564                                  /* Write mp4 data */                          /* Save ES stream */
565                            if (ARG_OUTPUTFILE && out_file)
566                                  fwrite(mp4_buffer, 1, m4v_size, out_file);                                  fwrite(mp4_buffer, 1, m4v_size, out_file);
   
                         }  
567                  }                  }
568    
569                  input_num++;                  input_num++;
# Line 656  Line 672 
672          fprintf(stderr, " -type    integer: input data type (yuv=0, pgm=1)\n");          fprintf(stderr, " -type    integer: input data type (yuv=0, pgm=1)\n");
673          fprintf(stderr, " -w       integer: frame width ([1.2048])\n");          fprintf(stderr, " -w       integer: frame width ([1.2048])\n");
674          fprintf(stderr, " -h       integer: frame height ([1.2048])\n");          fprintf(stderr, " -h       integer: frame height ([1.2048])\n");
675          fprintf(stderr, " -nframes integer: number of frames to encode\n");          fprintf(stderr, " -frames integer: number of frames to encode\n");
676          fprintf(stderr, "\n");          fprintf(stderr, "\n");
677          fprintf(stderr, "Output options:\n");          fprintf(stderr, "Output options:\n");
678          fprintf(stderr, " -dump    : save decoder output\n");          fprintf(stderr, " -dump    : save decoder output\n");
679          fprintf(stderr, " -save    : save mpeg4 raw stream\n");          fprintf(stderr, " -save    : save an Elementary Stream file per frame\n");
680          fprintf(stderr, " -o string: output filename\n");          fprintf(stderr, " -o string: save an Elementary Stream for the complete sequence\n");
681          fprintf(stderr, "\n");          fprintf(stderr, "\n");
682          fprintf(stderr, "BFrames options:\n");          fprintf(stderr, "BFrames options:\n");
683          fprintf(stderr, " -max_bframes   integer: max bframes (default=0)\n");          fprintf(stderr, " -max_bframes   integer: max bframes (default=0)\n");
# Line 681  Line 697 
697          fprintf(stderr, "Other options\n");          fprintf(stderr, "Other options\n");
698          fprintf(stderr, " -asm            : use assembly optmized code\n");          fprintf(stderr, " -asm            : use assembly optmized code\n");
699          fprintf(stderr, " -quality integer: quality ([0..%d])\n", ME_ELEMENTS - 1);          fprintf(stderr, " -quality integer: quality ([0..%d])\n", ME_ELEMENTS - 1);
700            fprintf(stderr, " -qpel           : use quarter pixel ME\n");
701            fprintf(stderr, " -gmc            : use global motion compensation\n");
702            fprintf(stderr, " -interlaced     : use interlaced encoding (this is NOT a deinterlacer!)\n");
703          fprintf(stderr, " -packed         : packed mode\n");          fprintf(stderr, " -packed         : packed mode\n");
704            fprintf(stderr, " -closed_gop     : closed GOP mode\n");
705          fprintf(stderr, " -lumimasking    : use lumimasking algorithm\n");          fprintf(stderr, " -lumimasking    : use lumimasking algorithm\n");
706          fprintf(stderr, " -stats          : print stats about encoded frames\n");          fprintf(stderr, " -stats          : print stats about encoded frames\n");
707          fprintf(stderr, " -debug          : activates xvidcore internal debugging output\n");          fprintf(stderr, " -debug          : activates xvidcore internal debugging output\n");
# Line 713  Line 733 
733                  return (1);                  return (1);
734    
735          fscanf(handle, "%d %d %d", &xsize, &ysize, &depth);          fscanf(handle, "%d %d %d", &xsize, &ysize, &depth);
736          if ((xsize > 1440) || (ysize > 2880) || (depth != 255)) {          if ((xsize > 4096) || (ysize > 4096*3/2) || (depth != 255)) {
737                  fprintf(stderr, "%d %d %d\n", xsize, ysize, depth);                  fprintf(stderr, "%d %d %d\n", xsize, ysize, depth);
738                  return (2);                  return (2);
739          }          }
# Line 887  Line 907 
907          if (use_assembler) {          if (use_assembler) {
908    
909  #ifdef ARCH_IS_IA64  #ifdef ARCH_IS_IA64
910                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_ASM;
911  #else  #else
912                  xvid_gbl_init.cpu_flags = 0;                  xvid_gbl_init.cpu_flags = 0;
913  #endif  #endif
# Line 909  Line 929 
929          /* Width and Height of input frames */          /* Width and Height of input frames */
930          xvid_enc_create.width = XDIM;          xvid_enc_create.width = XDIM;
931          xvid_enc_create.height = YDIM;          xvid_enc_create.height = YDIM;
932            xvid_enc_create.profile = XVID_PROFILE_AS_L4;
933    
934          /* init plugins  */          /* init plugins  */
935      xvid_enc_create.zones = ZONES;      xvid_enc_create.zones = ZONES;
# Line 933  Line 954 
954                  rc2pass2.filename = ARG_PASS2;                  rc2pass2.filename = ARG_PASS2;
955                  rc2pass2.bitrate = ARG_BITRATE;                  rc2pass2.bitrate = ARG_BITRATE;
956    
957    /*              An example of activating VBV could look like this
958                    rc2pass2.vbv_size     =  3145728;
959                    rc2pass2.vbv_initial  =  2359296;
960                    rc2pass2.vbv_maxrate  =  4000000;
961                    rc2pass2.vbv_peakrate = 10000000;
962    */
963    
964                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;                  plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;
965                  plugins[xvid_enc_create.num_plugins].param = &rc2pass2;                  plugins[xvid_enc_create.num_plugins].param = &rc2pass2;
966                  xvid_enc_create.num_plugins++;                  xvid_enc_create.num_plugins++;
# Line 1001  Line 1029 
1029          if (ARG_PACKED)          if (ARG_PACKED)
1030                  xvid_enc_create.global |=XVID_GLOBAL_PACKED;                  xvid_enc_create.global |=XVID_GLOBAL_PACKED;
1031    
1032            if (ARG_CLOSED_GOP)
1033                    xvid_enc_create.global |= XVID_GLOBAL_CLOSED_GOP;
1034    
1035          if (ARG_STATS)          if (ARG_STATS)
1036                  xvid_enc_create.global |=XVID_GLOBAL_EXTRASTATS_ENABLE;                  xvid_enc_create.global |=XVID_GLOBAL_EXTRASTATS_ENABLE;
1037    
# Line 1067  Line 1098 
1098          xvid_enc_frame.vol_flags = 0;          xvid_enc_frame.vol_flags = 0;
1099          if (ARG_STATS)          if (ARG_STATS)
1100                  xvid_enc_frame.vol_flags |= XVID_VOL_EXTRASTATS;                  xvid_enc_frame.vol_flags |= XVID_VOL_EXTRASTATS;
1101            if (ARG_QPEL)
1102                    xvid_enc_frame.vol_flags |= XVID_VOL_QUARTERPEL;
1103            if (ARG_GMC)
1104                    xvid_enc_frame.vol_flags |= XVID_VOL_GMC;
1105            if (ARG_INTERLACING)
1106                    xvid_enc_frame.vol_flags |= XVID_VOL_INTERLACING;
1107    
1108          /* Set up core's general features */          /* Set up core's general features */
1109          xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];          xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];
1110    
1111      if (ARG_VOPDEBUG) {      if (ARG_VOPDEBUG) {
1112          xvid_enc_frame.vop_flags |= XVID_VOP_DEBUG;          xvid_enc_frame.vop_flags |= XVID_VOP_DEBUG;
1113      }      }
# Line 1083  Line 1121 
1121          /* Set up motion estimation flags */          /* Set up motion estimation flags */
1122          xvid_enc_frame.motion = motion_presets[ARG_QUALITY];          xvid_enc_frame.motion = motion_presets[ARG_QUALITY];
1123    
1124            if (ARG_GMC)
1125                    xvid_enc_frame.motion |= XVID_ME_GME_REFINE;
1126    
1127            if (ARG_QPEL)
1128                    xvid_enc_frame.motion |= XVID_ME_QUARTERPELREFINE16;
1129            if (ARG_QPEL && (xvid_enc_frame.vop_flags & XVID_VOP_INTER4V))
1130                    xvid_enc_frame.motion |= XVID_ME_QUARTERPELREFINE8;
1131    
1132          /* We don't use special matrices */          /* We don't use special matrices */
1133          xvid_enc_frame.quant_intra_matrix = NULL;          xvid_enc_frame.quant_intra_matrix = NULL;
1134          xvid_enc_frame.quant_inter_matrix = NULL;          xvid_enc_frame.quant_inter_matrix = NULL;
1135    
1136          /* Encode the frame */          /* Encode the frame */
1137          ret =          ret = xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame,
                 xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame,  
1138                                          &xvid_enc_stats);                                          &xvid_enc_stats);
1139    
1140          *key = (xvid_enc_frame.out_flags & XVID_KEYFRAME);          *key = (xvid_enc_frame.out_flags & XVID_KEYFRAME);

Legend:
Removed from v.1.11.2.28  
changed lines
  Added in v.1.16

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