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

Diff of /branches/release-1_0-branch/xvidcore/examples/xvid_decraw.c

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

revision 1414, Wed Apr 7 22:02:56 2004 UTC revision 1430, Thu Apr 15 10:04:55 2004 UTC
# Line 20  Line 20 
20   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   * $Id: xvid_decraw.c,v 1.10.2.1 2004-04-07 22:02:56 edgomez Exp $   * $Id: xvid_decraw.c,v 1.10.2.3 2004-04-15 10:04:55 suxen_drol Exp $
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
# Line 57  Line 57 
57  /* max number of frames */  /* max number of frames */
58  #define ABS_MAXFRAMENR 9999  #define ABS_MAXFRAMENR 9999
59    
60    #define USE_PNM 0
61    #define USE_TGA 1
62    
63  static int XDIM = 0;  static int XDIM = 0;
64  static int YDIM = 0;  static int YDIM = 0;
65  static int ARG_SAVEDECOUTPUT = 0;  static int ARG_SAVEDECOUTPUT = 0;
# Line 64  Line 67 
67  static char *ARG_INPUTFILE = NULL;  static char *ARG_INPUTFILE = NULL;
68  static int CSP = XVID_CSP_I420;  static int CSP = XVID_CSP_I420;
69  static int BPP = 1;  static int BPP = 1;
70    static int FORMAT = USE_PNM;
71    
72  static char filepath[256] = "./";  static char filepath[256] = "./";
73  static void *dec_handle = NULL;  static void *dec_handle = NULL;
# Line 84  Line 88 
88                                          xvid_dec_stats_t *xvid_dec_stats);                                          xvid_dec_stats_t *xvid_dec_stats);
89  static int dec_stop();  static int dec_stop();
90  static void usage();  static void usage();
91    int write_image(char *prefix, unsigned char *image);
92    int write_pnm(char *filename, unsigned char *image);
93    int write_tga(char *filename, unsigned char *image);
94    
95  const char * type2str(int type)  const char * type2str(int type)
96  {  {
# Line 158  Line 164 
164                                  CSP = XVID_CSP_I420;                                  CSP = XVID_CSP_I420;
165                                  BPP = 1;                                  BPP = 1;
166                          }                          }
167                    } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
168                            i++;
169                            if (strcmp(argv[i], "tga") == 0) {
170                                    FORMAT = USE_TGA;
171                            } else {
172                                    FORMAT = USE_PNM;
173                            }
174                  } else if (strcmp("-help", argv[i]) == 0) {                  } else if (strcmp("-help", argv[i]) == 0) {
175                          usage();                          usage();
176                          return(0);                          return(0);
# Line 167  Line 180 
180                  }                  }
181          }          }
182    
183    #if defined(_MSC_VER)
184            if (ARG_INPUTFILE==NULL) {
185                    fprintf(stderr, "Warning: MSVC build does not read EOF correctly from stdin. Use the -i switch.\n\n");
186            }
187    #endif
188    
189  /*****************************************************************************  /*****************************************************************************
190   * Values checking   * Values checking
191   ****************************************************************************/   ****************************************************************************/
# Line 183  Line 202 
202                  }                  }
203          }          }
204    
205            /* PNM/PGM format can't handle 16/32 bit data */
206            if (BPP != 1 && BPP != 3 && FORMAT == USE_PNM) {
207                    FORMAT = USE_TGA;
208            }
209    
210  /*****************************************************************************  /*****************************************************************************
211   *        Memory allocation   *        Memory allocation
212   ****************************************************************************/   ****************************************************************************/
# Line 318  Line 342 
342    
343                  /* Save output frame if required */                  /* Save output frame if required */
344                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
345                          sprintf(filename, "%sdec%05d.tga", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
346                          if(write_tga(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
347                                  fprintf(stderr,                                  fprintf(stderr,
348                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded PGM frame %s\n",
349                                                  filename);                                                  filename);
# Line 359  Line 383 
383    
384                  /* Save output frame if required */                  /* Save output frame if required */
385                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
386                          sprintf(filename, "%sdec%05d.tga", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
387                          if(write_tga(filename, out_buffer)) {                          if(write_image(filename, out_buffer)) {
388                                  fprintf(stderr,                                  fprintf(stderr,
389                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
390                                                  filename);                                                  filename);
391                          }                          }
392                  }                  }
# Line 375  Line 399 
399   *     Calculate totals and averages for output, print results   *     Calculate totals and averages for output, print results
400   ****************************************************************************/   ****************************************************************************/
401    
402            if (filenr>0) {
403          totalsize    /= filenr;          totalsize    /= filenr;
404          totaldectime /= filenr;          totaldectime /= filenr;
   
405          printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",          printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",
406                     totaldectime, 1000/totaldectime, (int)totalsize);                     totaldectime, 1000/totaldectime, (int)totalsize);
407            }else{
408                    printf("Nothing was decoded!\n");
409            }
410    
411  /*****************************************************************************  /*****************************************************************************
412   *      XviD PART  Stop   *      XviD PART  Stop
# Line 411  Line 438 
438          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
439          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
440          fprintf(stderr, " -d             : save decoder output\n");          fprintf(stderr, " -d             : save decoder output\n");
441          fprintf(stderr, " -c csp         : choose colorspace output (csp can be one of rgb16, rgb24, rgb32, yv12, i420)\n");          fprintf(stderr, " -c csp         : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n");
442            fprintf(stderr, " -f format      : choose output file format (tga, pnm, pgm)\n");
443          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");
444          fprintf(stderr, " -help          : This help message\n");          fprintf(stderr, " -help          : This help message\n");
445          fprintf(stderr, " (* means default)\n");          fprintf(stderr, " (* means default)\n");
# Line 441  Line 469 
469   *              output functions   *              output functions
470   ****************************************************************************/   ****************************************************************************/
471    
472    int write_image(char *prefix, unsigned char *image)
473    {
474            char filename[1024];
475            char *ext;
476            int ret;
477    
478            if (FORMAT == USE_PNM && BPP == 1) {
479                    ext = "pgm";
480            } else if (FORMAT == USE_PNM && BPP == 3) {
481                    ext = "pnm";
482            } else if (FORMAT == USE_TGA) {
483                    ext = "tga";
484            } else {
485                    fprintf(stderr, "Bug: should not reach this path code -- please report to xvid-devel@xvid.org with command line options used");
486                    exit(-1);
487            }
488    
489            sprintf(filename, "%s.%s", prefix, ext);
490    
491            if (FORMAT == USE_PNM) {
492                    ret = write_pnm(filename, image);
493            } else {
494                    ret = write_tga(filename, image);
495            }
496    
497            return(ret);
498    }
499    
500  int write_tga(char *filename, unsigned char *image)  int write_tga(char *filename, unsigned char *image)
501  {  {
502          FILE * f;          FILE * f;
# Line 510  Line 566 
566    
567                  /* Write the two chrominance planes */                  /* Write the two chrominance planes */
568                  for (i=0; i<YDIM/2; i++) {                  for (i=0; i<YDIM/2; i++) {
569                          fwrite(image+XDIM*YDIM+XDIM/2*i, 1, XDIM/2, f);                          fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
570                          fwrite(image+5*XDIM*YDIM/4 + XDIM/2*i, 1, XDIM/2, f);                          fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
571                  }                  }
572          }          }
573    
# Line 522  Line 578 
578          return(0);          return(0);
579  }  }
580    
581    int write_pnm(char *filename, unsigned char *image)
582    {
583            FILE * f;
584    
585            f = fopen(filename, "wb");
586            if ( f == NULL) {
587                    return -1;
588            }
589    
590            if (BPP == 1) {
591                    int i;
592                    fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2);
593    
594                    fwrite(image, 1, XDIM*YDIM, f);
595    
596                    for (i=0; i<YDIM/2;i++) {
597                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
598                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
599                    }
600            } else if (BPP == 3) {
601                    int i;
602                    fprintf(f, "P6\n#xvid\n%i %i\n255\n", XDIM, YDIM);
603                    for (i=0; i<XDIM*YDIM*3; i+=3) {
604    #ifdef ARCH_IS_LITTLE_ENDIAN
605                            fputc(image[i+2], f);
606                            fputc(image[i+1], f);
607                            fputc(image[i+0], f);
608    #else
609                            fputc(image[i+0], f);
610                            fputc(image[i+1], f);
611                            fputc(image[i+2], f);
612    #endif
613                    }
614            }
615    
616            fclose(f);
617    
618            return 0;
619    }
620  /*****************************************************************************  /*****************************************************************************
621   * Routines for decoding: init decoder, use, and stop decoder   * Routines for decoding: init decoder, use, and stop decoder
622   ****************************************************************************/   ****************************************************************************/

Legend:
Removed from v.1414  
changed lines
  Added in v.1430

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