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

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

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