[svn] / trunk / xvidcore / examples / xvid_decraw.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/examples/xvid_decraw.c

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

revision 376, Sat Aug 17 20:03:36 2002 UTC revision 1547, Sat Sep 4 14:16:24 2004 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *      XVID MPEG-4 VIDEO CODEC - Example for encoding and decoding   *  XVID MPEG-4 VIDEO CODEC
4     *  - Console based decoding test application  -
5     *
6     *  Copyright(C) 2002-2003 Christoph Lampert
7     *               2002-2003 Edouard Gomez <ed.gomez@free.fr>
8   *   *
9   *      This program is free software; you can redistribute it and/or modify   *      This program is free software; you can redistribute it and/or modify
10   *      it under the terms of the GNU General Public License as published by   *      it under the terms of the GNU General Public License as published by
# Line 14  Line 18 
18   *   *
19   *      You should have received a copy of the GNU General Public License   *      You should have received a copy of the GNU General Public License
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., 675 Mass Ave, Cambridge, MA 02139, USA.   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22     *
23     * $Id: xvid_decraw.c,v 1.19 2004-09-04 14:16:24 edgomez Exp $
24   *   *
25   *************************************************************************/   ****************************************************************************/
26    
27  /************************************************************************  /*****************************************************************************
28   *   *
29   *  Test routine for XviD decoding   *  Application notes :
  *  (C) Christoph Lampert, 2002/08/17  
30   *   *
31   *  An MPEG-4 bitstream is read from stdin and decoded,   *  An MPEG-4 bitstream is read from an input file (or stdin) and decoded,
32   *  the speed for this is measured   *  the speed for this is measured.
33   *   *
34   *  The program is plain C and needs no libraries except for libxvidcore,   *  The program is plain C and needs no libraries except for libxvidcore,
35   *  and maths-lib, so with UN*X you simply compile by   *  and maths-lib.
  *  
  *   gcc xvid_decraw.c -lxvidcore -lm -o xvid_decraw  
36   *   *
37   *  You have to specify the image dimensions (until the add the feature   *  Use ./xvid_decraw -help for a list of options
  *  to read this from the bitstream)  
38   *   *
39   *  Parameters are: xvid_stat XDIM YDIM   ****************************************************************************/
  *  
  *  output and indivual m4v-files are saved, if corresponding flags are set  
  *  
  ************************************************************************/  
40    
41  #include <stdio.h>  #include <stdio.h>
42  #include <stdlib.h>  #include <stdlib.h>
43  #include <math.h>               // needed for log10  #include <string.h>
44  #include <sys/time.h>           // only needed for gettimeofday  #include <math.h>
45    #ifndef WIN32
46    #include <sys/time.h>
47    #else
48    #include <time.h>
49    #endif
50    
51  #include "../src/xvid.h"                /* comes with XviD */  #include "xvid.h"
52    
53  #define ABS_MAXFRAMENR 9999               // max number of frames  /*****************************************************************************
54     *               Global vars in module and constants
55     ****************************************************************************/
56    
57    #define USE_PNM 0
58    #define USE_TGA 1
59    
60    static int XDIM = 0;
61    static int YDIM = 0;
62    static int ARG_SAVEDECOUTPUT = 0;
63    static int ARG_SAVEMPEGSTREAM = 0;
64    static char *ARG_INPUTFILE = NULL;
65    static int CSP = XVID_CSP_I420;
66    static int BPP = 1;
67    static int FORMAT = USE_PNM;
68    
69    static char filepath[256] = "./";
70    static void *dec_handle = NULL;
71    
72    #define BUFFER_SIZE (2*1024*1024)
73    
74    static const int display_buffer_bytes = 0;
75    
76    /*****************************************************************************
77     *               Local prototypes
78     ****************************************************************************/
79    
80    static double msecond();
81    static int dec_init(int use_assembler, int debug_level);
82    static int dec_main(unsigned char *istream,
83                                            unsigned char *ostream,
84                                            int istream_size,
85                                            xvid_dec_stats_t *xvid_dec_stats);
86    static int dec_stop();
87    static void usage();
88    static int write_image(char *prefix, unsigned char *image);
89    static int write_pnm(char *filename, unsigned char *image);
90    static int write_tga(char *filename, unsigned char *image);
91    
92    const char * type2str(int type)
93    {
94        if (type==XVID_TYPE_IVOP)
95            return "I";
96        if (type==XVID_TYPE_PVOP)
97            return "P";
98        if (type==XVID_TYPE_BVOP)
99            return "B";
100        return "S";
101    }
102    
103    /*****************************************************************************
104     *        Main program
105     ****************************************************************************/
106    
107  int XDIM=720;  int main(int argc, char *argv[])
108  int YDIM=576;  {
109  int i,filenr = 0;          unsigned char *mp4_buffer = NULL;
110            unsigned char *mp4_ptr    = NULL;
111            unsigned char *out_buffer = NULL;
112            int useful_bytes;
113            int chunk;
114            xvid_dec_stats_t xvid_dec_stats;
115    
116  int save_dec_flag = 1;          // save decompressed bytestream?          double totaldectime;
 int save_m4v_flag = 0;          // save bytestream itself?  
117    
118  char filepath[256] = "./";      // the path where to save output          long totalsize;
119            int status;
120    
121  void *dec_handle = NULL;                // handle for decoding          int use_assembler = 0;
122            int debug_level = 0;
123    
124  /*********************************************************************/          char filename[256];
 /*                     "statistical" functions                               */  
 /*                                                                   */  
 /*  these are not needed for decoding itself, but for measuring      */  
 /*  time (and maybe later quality), there in nothing specific to     */  
 /*  XviD in these                                                    */  
 /*                                                                   */  
 /*********************************************************************/  
125    
126  double msecond()          FILE *in_file;
127  /* return the current time in seconds(!)  */          int filenr;
128  {          int i;
129          struct timeval  tv;  
130          gettimeofday(&tv, 0);          printf("xvid_decraw - raw mpeg4 bitstream decoder ");
131          return tv.tv_sec + tv.tv_usec * 1.0e-6;          printf("written by Christoph Lampert 2002-2003\n\n");
132    
133    /*****************************************************************************
134     * Command line parsing
135     ****************************************************************************/
136    
137            for (i=1; i< argc; i++) {
138    
139                    if (strcmp("-asm", argv[i]) == 0 ) {
140                            use_assembler = 1;
141                    } else if (strcmp("-debug", argv[i]) == 0 && i < argc - 1 ) {
142                            i++;
143                            if (sscanf(argv[i], "0x%x", &debug_level) != 1) {
144                                    debug_level = atoi(argv[i]);
145                            }
146                    } else if (strcmp("-d", argv[i]) == 0) {
147                            ARG_SAVEDECOUTPUT = 1;
148                    } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
149                            i++;
150                            ARG_INPUTFILE = argv[i];
151                    } else if (strcmp("-m", argv[i]) == 0) {
152                            ARG_SAVEMPEGSTREAM = 1;
153                    } else if (strcmp("-c", argv[i]) == 0  && i < argc - 1 ) {
154                            i++;
155                            if (strcmp(argv[i], "rgb16") == 0) {
156                                    CSP = XVID_CSP_RGB555;
157                                    BPP = 2;
158                            } else if (strcmp(argv[i], "rgb24") == 0) {
159                                    CSP = XVID_CSP_BGR;
160                                    BPP = 3;
161                            } else if (strcmp(argv[i], "rgb32") == 0) {
162                                    CSP = XVID_CSP_BGRA;
163                                    BPP = 4;
164                            } else if (strcmp(argv[i], "yv12") == 0) {
165                                    CSP = XVID_CSP_YV12;
166                                    BPP = 1;
167                            } else {
168                                    CSP = XVID_CSP_I420;
169                                    BPP = 1;
170                            }
171                    } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
172                            i++;
173                            if (strcmp(argv[i], "tga") == 0) {
174                                    FORMAT = USE_TGA;
175                            } else {
176                                    FORMAT = USE_PNM;
177                            }
178                    } else if (strcmp("-help", argv[i]) == 0) {
179                            usage();
180                            return(0);
181                    } else {
182                            usage();
183                            exit(-1);
184                    }
185            }
186    
187    #if defined(_MSC_VER)
188            if (ARG_INPUTFILE==NULL) {
189                    fprintf(stderr, "Warning: MSVC build does not read EOF correctly from stdin. Use the -i switch.\n\n");
190  }  }
191    #endif
192    
193    /*****************************************************************************
194     * Values checking
195     ****************************************************************************/
196    
197  /*********************************************************************/          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
198  /*                    input and output functions                         */                  in_file = stdin;
199  /*                                                                   */          }
200  /* the are small and simple routines for writing image               */          else {
 /* image. It's just for convenience, again nothing specific to XviD  */  
 /*                                                                   */  
 /*********************************************************************/  
   
 int write_pgm(char *filename, unsigned char *image)  
 {  
         FILE *filehandle;  
         filehandle=fopen(filename,"wb");  
         if (filehandle)  
         {  
                 fprintf(filehandle,"P5\n\n");           //  
                 fprintf(filehandle,"%d %d 255\n",XDIM,YDIM*3/2);  
                 fwrite(image,XDIM,YDIM*3/2,filehandle);  
201    
202                  fclose(filehandle);                  in_file = fopen(ARG_INPUTFILE, "rb");
203                  return 0;                  if (in_file == NULL) {
204                            fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
205                            return(-1);
206          }          }
         else  
                 return 1;  
207  }  }
208    
209            /* PNM/PGM format can't handle 16/32 bit data */
210            if (BPP != 1 && BPP != 3 && FORMAT == USE_PNM) {
211                    FORMAT = USE_TGA;
212            }
213    
214  int write_ppm(char *filename, unsigned char *image)  /*****************************************************************************
215  {   *        Memory allocation
216          FILE *filehandle;   ****************************************************************************/
         filehandle=fopen(filename,"wb");  
         if (filehandle)  
         {  
                 fprintf(filehandle,"P6\n\n");           //  
                 fprintf(filehandle,"%d %d 255\n",XDIM,YDIM);  
                 fwrite(image,XDIM,YDIM*3,filehandle);  
217    
218                  fclose(filehandle);          /* Memory for encoded mp4 stream */
219                  return 0;          mp4_buffer = (unsigned char *) malloc(BUFFER_SIZE);
220          }          mp4_ptr = mp4_buffer;
221          else          if (!mp4_buffer)
222                  return 1;                  goto free_all_memory;
223    
224    /*****************************************************************************
225     *        XviD PART  Start
226     ****************************************************************************/
227    
228            status = dec_init(use_assembler, debug_level);
229            if (status) {
230                    fprintf(stderr,
231                                    "Decore INIT problem, return value %d\n", status);
232                    goto release_all;
233  }  }
234    
 /*********************************************************************/  
 /* Routines for decoding: init encoder, frame step, release encoder  */  
 /*********************************************************************/  
235    
236  int dec_init(int use_assembler) /* init decoder before first run */  /*****************************************************************************
237  {   *                               Main loop
238          int xerr;   ****************************************************************************/
239    
240            /* Fill the buffer */
241            useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);
242    
243            totaldectime = 0;
244            totalsize = 0;
245            filenr = 0;
246            mp4_ptr = mp4_buffer;
247            chunk = 0;
248    
249          XVID_INIT_PARAM xinit;          do {
250          XVID_DEC_PARAM xparam;                  int used_bytes = 0;
251                    double dectime;
252    
253                  if(use_assembler)                  /*
254  #ifdef ARCH_IA64                   * If the buffer is half empty or there are no more bytes in it
255                          xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;                   * then fill it.
256  #else                   */
257                          xinit.cpu_flags = 0;                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) {
258  #endif                          int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr);
259                  else  
260                          xinit.cpu_flags = XVID_CPU_FORCE;                          /* Move data if needed */
261                            if (already_in_buffer > 0)
262                                    memcpy(mp4_buffer, mp4_ptr, already_in_buffer);
263    
264          xvid_init(NULL, 0, &xinit, NULL);                          /* Update mp4_ptr */
265          xparam.width = XDIM;                          mp4_ptr = mp4_buffer;
         xparam.height = YDIM;  
266    
267          xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);                          /* read new data */
268          dec_handle = xparam.handle;              if(feof(in_file))
269                                    break;
270    
271                            useful_bytes += fread(mp4_buffer + already_in_buffer,
272                                                                      1, BUFFER_SIZE - already_in_buffer,
273                                                                      in_file);
274    
         return xerr;  
275  }  }
276    
 int dec_main(unsigned char *m4v_buffer, unsigned char *out_buffer,int *m4v_size)  
 {       /* decode one frame  */  
277    
278          int xerr;                  /* This loop is needed to handle VOL/NVOP reading */
279          XVID_DEC_FRAME xframe;                  do {
280    
281                            /* Decode frame */
282                            dectime = msecond();
283                            used_bytes = dec_main(mp4_ptr, out_buffer, useful_bytes, &xvid_dec_stats);
284                            dectime = msecond() - dectime;
285    
286                            /* Resize image buffer if needed */
287                            if(xvid_dec_stats.type == XVID_TYPE_VOL) {
288    
289                                    /* Check if old buffer is smaller */
290                                    if(XDIM*YDIM < xvid_dec_stats.data.vol.width*xvid_dec_stats.data.vol.height) {
291    
292                                            /* Copy new witdh and new height from the vol structure */
293                                            XDIM = xvid_dec_stats.data.vol.width;
294                                            YDIM = xvid_dec_stats.data.vol.height;
295    
296                                            /* Free old output buffer*/
297                                            if(out_buffer) free(out_buffer);
298    
299                                            /* Allocate the new buffer */
300                                            out_buffer = (unsigned char*)malloc(XDIM*YDIM*4);
301                                            if(out_buffer == NULL)
302                                                    goto free_all_memory;
303    
304          xframe.bitstream = m4v_buffer;                                          fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);
305          xframe.length = 9999;                                  }
             xframe.image = out_buffer;  
         xframe.stride = XDIM;  
             xframe.colorspace = XVID_CSP_YV12;  
306    
307                  do {                                  /* Save individual mpeg4 stream if required */
308                  xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, NULL);                                  if(ARG_SAVEMPEGSTREAM) {
309                                            FILE *filehandle = NULL;
310    
311                          *m4v_size = xframe.length;                                          sprintf(filename, "%svolhdr.m4v", filepath);
312                  xframe.bitstream += *m4v_size;                                          filehandle = fopen(filename, "wb");
313                                            if(!filehandle) {
314                                                    fprintf(stderr,
315                                                                    "Error writing vol header mpeg4 stream to file %s\n",
316                                                                    filename);
317                                            } else {
318                                                    fwrite(mp4_ptr, 1, used_bytes, filehandle);
319                                                    fclose(filehandle);
320                                            }
321                                    }
322                            }
323    
324                  } while (*m4v_size<7);  /* this skips N-VOPs */                          /* Update buffer pointers */
325                            if(used_bytes > 0) {
326                                    mp4_ptr += used_bytes;
327                                    useful_bytes -= used_bytes;
328    
329          return xerr;                                  /* Total size */
330                                    totalsize += used_bytes;
331  }  }
332    
333  int dec_stop()  /* close decoder to release resources */                          if (display_buffer_bytes) {
334  {                                  printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes);
335          int xerr;                          }
336          xerr = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);                  } while (xvid_dec_stats.type <= 0 && useful_bytes > 0);
337    
338                    /* Check if there is a negative number of useful bytes left in buffer
339                     * This means we went too far */
340            if(useful_bytes < 0)
341                break;
342    
343            /* Updated data - Count only usefull decode time */
344                    totaldectime += dectime;
345    
346    
347          return xerr;                  if (!display_buffer_bytes) {
348                            printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
349                                            filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
350  }  }
351    
352                    /* Save individual mpeg4 stream if required */
353                    if(ARG_SAVEMPEGSTREAM) {
354                            FILE *filehandle = NULL;
355    
356                            sprintf(filename, "%sframe%05d.m4v", filepath, filenr);
357                            filehandle = fopen(filename, "wb");
358                            if(!filehandle) {
359                                    fprintf(stderr,
360                                                    "Error writing single mpeg4 stream to file %s\n",
361                                                    filename);
362                            }
363                            else {
364                                    fwrite(mp4_ptr-used_bytes, 1, used_bytes, filehandle);
365                                    fclose(filehandle);
366                            }
367                    }
368    
369  /*********************************************************************/                  /* Save output frame if required */
370  /*                          Main program                             */                  if (ARG_SAVEDECOUTPUT) {
371  /*********************************************************************/                          sprintf(filename, "%sdec%05d", filepath, filenr);
372                            if(write_image(filename, out_buffer)) {
373                                    fprintf(stderr,
374                                                    "Error writing decoded frame %s\n",
375                                                    filename);
376                            }
377                    }
378    
379  int main(int argc, char *argv[])                  filenr++;
 {  
   unsigned char *divx_buffer = NULL;  
   unsigned char *divx_ptr = NULL;  
   unsigned char *out_buffer = NULL;  
380    
381    double dectime;          } while (useful_bytes>0 || !feof(in_file));
   double totaldectime=0.;  
382    
383    long totalsize=0;          useful_bytes = 0; /* Empty buffer */
   int status;  
384    
385    int m4v_size;  /*****************************************************************************
386    int frame_type[ABS_MAXFRAMENR];   *     Flush decoder buffers
387    int use_assembler=1;   ****************************************************************************/
388    
389    char filename[256];          do {
390    
391    FILE *filehandle;                  /* Fake vars */
392                    int used_bytes;
393                    double dectime;
394    
395          if (argc>=3)          do {
396          {       XDIM = atoi(argv[1]);                      dectime = msecond();
397                  YDIM = atoi(argv[2]);                      used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
398                  if ( (XDIM <= 0) || (XDIM >= 2048) || (YDIM <=0) || (YDIM >= 2048) )                      dectime = msecond() - dectime;
399                  {       fprintf(stderr,"Wrong frames size %d %d, trying PGM \n",XDIM, YDIM);                          if (display_buffer_bytes) {
400                                    printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes);
401                  }                  }
402            } while(used_bytes>=0 && xvid_dec_stats.type <= 0);
403    
404            if (used_bytes < 0) {   /* XVID_ERR_END */
405                break;
406          }          }
         if (argc>=4 && !strcmp(argv[3],"noasm"))  
           use_assembler = 0;  
407    
408                    /* Updated data - Count only usefull decode time */
409                    totaldectime += dectime;
410    
411  /* allocate memory */                  /* Prints some decoding stats */
412                    if (!display_buffer_bytes) {
413                            printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
414                                            filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
415                    }
416    
417    divx_buffer = (unsigned char *) malloc(10*XDIM*YDIM);                  /* Save output frame if required */
418    // this should really be enough memory!                  if (ARG_SAVEDECOUTPUT) {
419    if (!divx_buffer)                          sprintf(filename, "%sdec%05d", filepath, filenr);
420      goto free_all_memory;                          if(write_image(filename, out_buffer)) {
421    divx_ptr = divx_buffer+10*XDIM*YDIM;                                  fprintf(stderr,
422                                                    "Error writing decoded frame %s\n",
423                                                    filename);
424                            }
425                    }
426    
427    out_buffer = (unsigned char *) malloc(4*XDIM*YDIM);   /* YUV needs less */                  filenr++;
   if (!out_buffer)  
     goto free_all_memory;  
428    
429            }while(1);
430    
431  /*********************************************************************/  /*****************************************************************************
432  /*                         XviD PART  Start                          */   *     Calculate totals and averages for output, print results
433  /*********************************************************************/   ****************************************************************************/
434    
435          status = dec_init(use_assembler);          if (filenr>0) {
436                    totalsize    /= filenr;
437                    totaldectime /= filenr;
438                    printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",
439                               totaldectime, 1000/totaldectime, (int)totalsize);
440            }else{
441                    printf("Nothing was decoded!\n");
442            }
443    
444    /*****************************************************************************
445     *      XviD PART  Stop
446     ****************************************************************************/
447    
448     release_all:
449            if (dec_handle) {
450                    status = dec_stop();
451          if (status)          if (status)
452          {                          fprintf(stderr, "decore RELEASE problem return value %d\n", status);
                 printf("Decore INIT problem, return value %d\n", status);  
                 goto release_all;  
453          }          }
454    
455     free_all_memory:
456            free(out_buffer);
457            free(mp4_buffer);
458    
459            return(0);
460    }
461    
462  /*********************************************************************/  /*****************************************************************************
463  /*                               Main loop                           */   *               Usage function
464  /*********************************************************************/   ****************************************************************************/
465    
466    do  static void usage()
467      {      {
468    
469          if (divx_ptr > divx_buffer+5*XDIM*YDIM) /* buffer more than half empty */          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
470          {       int rest=(divx_buffer+10*XDIM*YDIM-divx_ptr);          fprintf(stderr, "Options :\n");
471                  if (rest)          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
472                          memcpy(divx_buffer, divx_ptr, rest);          fprintf(stderr, " -debug         : debug level (debug=0)\n");
473                  divx_ptr = divx_buffer;          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
474                  fread(divx_buffer+rest, 1, 5*XDIM*YDIM, stdin); /* read new data */          fprintf(stderr, " -d             : save decoder output\n");
475            fprintf(stderr, " -c csp         : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n");
476            fprintf(stderr, " -f format      : choose output file format (tga, pnm, pgm)\n");
477            fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");
478            fprintf(stderr, " -help          : This help message\n");
479            fprintf(stderr, " (* means default)\n");
480    
481          }          }
482    
483          dectime = -msecond();  /*****************************************************************************
484          status = dec_main(divx_ptr, out_buffer, &m4v_size);   *               "helper" functions
485     ****************************************************************************/
486    
487          if (status)  /* return the current time in milli seconds */
488    static double
489    msecond()
490          {          {
491                  break;  #ifndef WIN32
492            struct timeval  tv;
493            gettimeofday(&tv, 0);
494            return((double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3);
495    #else
496            clock_t clk;
497            clk = clock();
498            return(clk * 1000 / CLOCKS_PER_SEC);
499    #endif
500          }          }
         dectime += msecond();  
         divx_ptr += m4v_size;  
501    
502          totalsize += m4v_size;  /*****************************************************************************
503     *              output functions
504     ****************************************************************************/
505    
506    static int write_image(char *prefix, unsigned char *image)
507    {
508            char filename[1024];
509            char *ext;
510            int ret;
511    
512            if (FORMAT == USE_PNM && BPP == 1) {
513                    ext = "pgm";
514            } else if (FORMAT == USE_PNM && BPP == 3) {
515                    ext = "pnm";
516            } else if (FORMAT == USE_TGA) {
517                    ext = "tga";
518            } else {
519                    fprintf(stderr, "Bug: should not reach this path code -- please report to xvid-devel@xvid.org with command line options used");
520                    exit(-1);
521            }
522    
523            sprintf(filename, "%s.%s", prefix, ext);
524    
525            if (FORMAT == USE_PNM) {
526                    ret = write_pnm(filename, image);
527            } else {
528                    ret = write_tga(filename, image);
529            }
530    
531            return(ret);
532    }
533    
534    static int write_tga(char *filename, unsigned char *image)
535    {
536            FILE * f;
537            char hdr[18];
538    
539            f = fopen(filename, "wb");
540            if ( f == NULL) {
541                    return -1;
542            }
543    
544            hdr[0]  = 0; /* ID length */
545            hdr[1]  = 0; /* Color map type */
546            hdr[2]  = (BPP>1)?2:3; /* Uncompressed true color (2) or greymap (3) */
547            hdr[3]  = 0; /* Color map specification (not used) */
548            hdr[4]  = 0; /* Color map specification (not used) */
549            hdr[5]  = 0; /* Color map specification (not used) */
550            hdr[6]  = 0; /* Color map specification (not used) */
551            hdr[7]  = 0; /* Color map specification (not used) */
552            hdr[8]  = 0; /* LSB X origin */
553            hdr[9]  = 0; /* MSB X origin */
554            hdr[10] = 0; /* LSB Y origin */
555            hdr[11] = 0; /* MSB Y origin */
556            hdr[12] = (XDIM>>0)&0xff; /* LSB Width */
557            hdr[13] = (XDIM>>8)&0xff; /* MSB Width */
558            if (BPP > 1) {
559                    hdr[14] = (YDIM>>0)&0xff; /* LSB Height */
560                    hdr[15] = (YDIM>>8)&0xff; /* MSB Height */
561            } else {
562                    hdr[14] = ((YDIM*3)>>1)&0xff; /* LSB Height */
563                    hdr[15] = ((YDIM*3)>>9)&0xff; /* MSB Height */
564            }
565            hdr[16] = BPP*8;
566            hdr[17] = 0x00 | (1<<5) /* Up to down */ | (0<<4); /* Image descriptor */
567    
568            /* Write header */
569            fwrite(hdr, 1, sizeof(hdr), f);
570    
571    #ifdef ARCH_IS_LITTLE_ENDIAN
572            /* write first plane */
573            fwrite(image, 1, XDIM*YDIM*BPP, f);
574    #else
575            {
576                    int i;
577                    for (i=0; i<width*height*BPP;i+=BPP) {
578                            if (BPP == 1) {
579                                    fputc(image+i, f);
580                            } else if (BPP == 2) {
581                                    fputc(image+i+1, f);
582                                    fputc(image+i+0, f);
583                            } else if (BPP == 3) {
584                                    fputc(image+i+2, f);
585                                    fputc(image+i+1, f);
586                                    fputc(image+i+0, f);
587                            } else if (BPP == 4) {
588                                    fputc(image+i+3, f);
589                                    fputc(image+i+2, f);
590                                    fputc(image+i+1, f);
591                                    fputc(image+i+0, f);
592                            }
593                    }
594            }
595    #endif
596    
597          printf("Frame %5d: dectime =%6.1f ms length=%7d bytes \n",          /* Write Y and V planes for YUV formats */
598                          filenr, dectime*1000, m4v_size);          if (BPP == 1) {
599                    int i;
600    
601          if (save_m4v_flag)                  /* Write the two chrominance planes */
602          {                  for (i=0; i<YDIM/2; i++) {
603                  sprintf(filename, "%sframe%05d.m4v", filepath, filenr);                          fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
604                  filehandle = fopen(filename, "wb");                          fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
                 fwrite(divx_buffer, m4v_size, 1, filehandle);  
                 fclose(filehandle);  
605          }          }
606          totaldectime += dectime;          }
607    
608    
609            /* Close the file */
610            fclose(f);
611    
612  /*********************************************************************/          return(0);
613  /*        analyse the decoded frame and compare to original          */  }
 /*********************************************************************/  
614    
615          if (save_dec_flag)  static int write_pnm(char *filename, unsigned char *image)
616          {          {
617                  sprintf(filename, "%sdec%05d.pgm", filepath, filenr);          FILE * f;
618                  write_pgm(filename,out_buffer);  
619            f = fopen(filename, "wb");
620            if ( f == NULL) {
621                    return -1;
622          }          }
623    
624          filenr++;          if (BPP == 1) {
625                    int i;
626                    fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2);
627    
628                    fwrite(image, 1, XDIM*YDIM, f);
629    
630                    for (i=0; i<YDIM/2;i++) {
631                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
632                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
633                    }
634            } else if (BPP == 3) {
635                    int i;
636                    fprintf(f, "P6\n#xvid\n%i %i\n255\n", XDIM, YDIM);
637                    for (i=0; i<XDIM*YDIM*3; i+=3) {
638    #ifdef ARCH_IS_LITTLE_ENDIAN
639                            fputc(image[i+2], f);
640                            fputc(image[i+1], f);
641                            fputc(image[i+0], f);
642    #else
643                            fputc(image[i+0], f);
644                            fputc(image[i+1], f);
645                            fputc(image[i+2], f);
646    #endif
647                    }
648            }
649    
650     } while ( (status>=0) && (filenr<ABS_MAXFRAMENR) );          fclose(f);
651    
652            return 0;
653    }
654    
655  /*********************************************************************/  /*****************************************************************************
656  /*     calculate totals and averages for output, print results       */   * Routines for decoding: init decoder, use, and stop decoder
657  /*********************************************************************/   ****************************************************************************/
658    
659          totalsize    /= filenr;  /* init decoder before first run */
660          totaldectime /= filenr;  static int
661    dec_init(int use_assembler, int debug_level)
662    {
663            int ret;
664    
665          fprintf(stderr,"Avg: dectime %5.2f ms, %5.2f fps, filesize =%d\n",          xvid_gbl_init_t   xvid_gbl_init;
666                  1000*totaldectime, 1./totaldectime, totalsize);          xvid_dec_create_t xvid_dec_create;
667    
668  /*********************************************************************/          /* Reset the structure with zeros */
669  /*                         XviD PART  Stop                           */          memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init_t));
670  /*********************************************************************/          memset(&xvid_dec_create, 0, sizeof(xvid_dec_create_t));
671    
672  release_all:          /*------------------------------------------------------------------------
673             * XviD core initialization
674             *----------------------------------------------------------------------*/
675    
676            /* Version */
677            xvid_gbl_init.version = XVID_VERSION;
678    
679            /* Assembly setting */
680            if(use_assembler)
681    #ifdef ARCH_IS_IA64
682                    xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
683    #else
684            xvid_gbl_init.cpu_flags = 0;
685    #endif
686            else
687                    xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
688    
689            xvid_gbl_init.debug = debug_level;
690    
691            xvid_global(NULL, 0, &xvid_gbl_init, NULL);
692    
693            /*------------------------------------------------------------------------
694             * XviD encoder initialization
695             *----------------------------------------------------------------------*/
696    
697            /* Version */
698            xvid_dec_create.version = XVID_VERSION;
699    
700          if (dec_handle)          /*
701             * Image dimensions -- set to 0, xvidcore will resize when ever it is
702             * needed
703             */
704            xvid_dec_create.width = 0;
705            xvid_dec_create.height = 0;
706    
707            ret = xvid_decore(NULL, XVID_DEC_CREATE, &xvid_dec_create, NULL);
708    
709            dec_handle = xvid_dec_create.handle;
710    
711            return(ret);
712    }
713    
714    /* decode one frame  */
715    static int
716    dec_main(unsigned char *istream,
717                     unsigned char *ostream,
718                     int istream_size,
719                     xvid_dec_stats_t *xvid_dec_stats)
720          {          {
721                  status = dec_stop();  
722                  if (status)          int ret;
723                          printf("Decore RELEASE problem return value %d\n", status);  
724            xvid_dec_frame_t xvid_dec_frame;
725    
726            /* Reset all structures */
727            memset(&xvid_dec_frame, 0, sizeof(xvid_dec_frame_t));
728            memset(xvid_dec_stats, 0, sizeof(xvid_dec_stats_t));
729    
730            /* Set version */
731            xvid_dec_frame.version = XVID_VERSION;
732            xvid_dec_stats->version = XVID_VERSION;
733    
734            /* No general flags to set */
735            xvid_dec_frame.general          = 0;
736    
737            /* Input stream */
738            xvid_dec_frame.bitstream        = istream;
739            xvid_dec_frame.length           = istream_size;
740    
741            /* Output frame structure */
742            xvid_dec_frame.output.plane[0]  = ostream;
743            xvid_dec_frame.output.stride[0] = XDIM*BPP;
744            xvid_dec_frame.output.csp = CSP;
745    
746            ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);
747    
748            return(ret);
749          }          }
750    
751  free_all_memory:  /* close decoder to release resources */
752          free(out_buffer);  static int
753          free(divx_buffer);  dec_stop()
754    {
755            int ret;
756    
757    return 0;          ret = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);
758    
759            return(ret);
760  }  }

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

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