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

Diff of /xvidcore/examples/xvid_decraw.c

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

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

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.10.2.6

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