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

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

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

revision 902, Mon Mar 3 11:18:53 2003 UTC revision 1426, Tue Apr 13 21:20:45 2004 UTC
# Line 4  Line 4 
4   *  - Console based decoding test application  -   *  - Console based decoding test application  -
5   *   *
6   *  Copyright(C) 2002-2003 Christoph Lampert   *  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 19  Line 20 
20   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   * $Id: xvid_decraw.c,v 1.9 2003-03-03 11:18:53 chl Exp $   * $Id: xvid_decraw.c,v 1.13 2004-04-13 21:20:45 suxen_drol Exp $
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
# Line 31  Line 32 
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.
36   *   *
37   *   gcc xvid_decraw.c -lxvidcore -lm -o xvid_decraw   *  Use ./xvid_decraw -help for a list of options
  *  
  *  You have to specify the image dimensions (until the add the feature  
  *  to read this from the bitstream)  
  *  
  * Usage : xvid_decraw <-w width> <-h height> [OPTIONS]  
  * Options :  
  *  -asm           : use assembly optimizations (default=disabled)  
  *  -w integer     : frame width ([1.2048])  
  *  -h integer     : frame height ([1.2048])  
  *  -i string      : input filename (default=stdin)  
  *  -t integer     : input data type (raw=0, mp4u=1)  
  *  -d boolean     : save decoder output (0 False*, !=0 True)  
  *  -m boolean     : save mpeg4 raw stream to single files (0 False*, !=0 True)  
  *  -help          : This help message  
  * (* means default)  
38   *   *
39   ****************************************************************************/   ****************************************************************************/
40    
# Line 71  Line 57 
57  /* max number of frames */  /* max number of frames */
58  #define ABS_MAXFRAMENR 9999  #define ABS_MAXFRAMENR 9999
59    
60    #define USE_PNM 0
61    #define USE_TGA 1
62    
63  static int XDIM = 0;  static int XDIM = 0;
64  static int YDIM = 0;  static int YDIM = 0;
65  static int ARG_SAVEDECOUTPUT = 0;  static int ARG_SAVEDECOUTPUT = 0;
66  static int ARG_SAVEMPEGSTREAM = 0;  static int ARG_SAVEMPEGSTREAM = 0;
67  static char *ARG_INPUTFILE = NULL;  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] = "./";  static char filepath[256] = "./";
73  static void *dec_handle = NULL;  static void *dec_handle = NULL;
74    
75  # define BUFFER_SIZE 10*XDIM*YDIM  #define BUFFER_SIZE (2*1024*1024)
76    
77  /*****************************************************************************  /*****************************************************************************
78   *               Local prototypes   *               Local prototypes
79   ****************************************************************************/   ****************************************************************************/
80    
81  static double msecond();  static double msecond();
82  static int write_pgm(char *filename,  static int dec_init(int use_assembler, int debug_level);
                      unsigned char *image);  
 static int dec_init(int use_assembler);  
83  static int dec_main(unsigned char *istream,  static int dec_main(unsigned char *istream,
84                                          unsigned char *ostream,                                          unsigned char *ostream,
85                                          int istream_size,                                          int istream_size,
86                                          int *ostream_size,                                          xvid_dec_stats_t *xvid_dec_stats);
                                         int *isframe);  
87  static int dec_stop();  static int dec_stop();
88  static void usage();  static void usage();
89    static int write_image(char *prefix, unsigned char *image);
90    static int write_tga(char *filename, unsigned char *image);
91    static int write_pnm(char *filename, unsigned char *image);
92    
93    
94    const char * type2str(int type)
95    {
96        if (type==XVID_TYPE_IVOP)
97            return "I";
98        if (type==XVID_TYPE_PVOP)
99            return "P";
100        if (type==XVID_TYPE_BVOP)
101            return "B";
102        return "S";
103    }
104    
105  /*****************************************************************************  /*****************************************************************************
106   *        Main program   *        Main program
# Line 108  Line 111 
111          unsigned char *mp4_buffer = NULL;          unsigned char *mp4_buffer = NULL;
112          unsigned char *mp4_ptr    = NULL;          unsigned char *mp4_ptr    = NULL;
113          unsigned char *out_buffer = NULL;          unsigned char *out_buffer = NULL;
114          int bigendian = 0;          int useful_bytes;
115          int still_left_in_buffer;          xvid_dec_stats_t xvid_dec_stats;
         int delayed_frames;  
116    
117          double totaldectime;          double totaldectime;
118    
# Line 118  Line 120 
120          int status;          int status;
121    
122          int use_assembler = 0;          int use_assembler = 0;
123            int debug_level = 0;
124    
125          char filename[256];          char filename[256];
126    
# Line 136  Line 139 
139    
140                  if (strcmp("-asm", argv[i]) == 0 ) {                  if (strcmp("-asm", argv[i]) == 0 ) {
141                          use_assembler = 1;                          use_assembler = 1;
142                  }                  } else if (strcmp("-debug", argv[i]) == 0 && i < argc - 1 ) {
                 else if (strcmp("-w", argv[i]) == 0 && i < argc - 1 ) {  
                         i++;  
                         XDIM = atoi(argv[i]);  
                 }  
                 else if (strcmp("-h", argv[i]) == 0 && i < argc - 1 ) {  
143                          i++;                          i++;
144                          YDIM = atoi(argv[i]);                          if (sscanf(argv[i], "0x%x", &debug_level) != 1) {
145                                    debug_level = atoi(argv[i]);
146                  }                  }
147                  else if (strcmp("-d", argv[i]) == 0 && i < argc - 1 ) {                  } else if (strcmp("-d", argv[i]) == 0) {
148                          i++;                          ARG_SAVEDECOUTPUT = 1;
149                          ARG_SAVEDECOUTPUT = atoi(argv[i]);                  } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
                 }  
                 else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {  
150                          i++;                          i++;
151                          ARG_INPUTFILE = argv[i];                          ARG_INPUTFILE = argv[i];
152                    } else if (strcmp("-m", argv[i]) == 0) {
153                            ARG_SAVEMPEGSTREAM = 1;
154                    } else if (strcmp("-c", argv[i]) == 0  && i < argc - 1 ) {
155                            i++;
156                            if (strcmp(argv[i], "rgb16") == 0) {
157                                    CSP = XVID_CSP_RGB555;
158                                    BPP = 2;
159                            } else if (strcmp(argv[i], "rgb24") == 0) {
160                                    CSP = XVID_CSP_BGR;
161                                    BPP = 3;
162                            } else if (strcmp(argv[i], "rgb32") == 0) {
163                                    CSP = XVID_CSP_BGRA;
164                                    BPP = 4;
165                            } else if (strcmp(argv[i], "yv12") == 0) {
166                                    CSP = XVID_CSP_YV12;
167                                    BPP = 1;
168                            } else {
169                                    CSP = XVID_CSP_I420;
170                                    BPP = 1;
171                  }                  }
172                  else if (strcmp("-m", argv[i]) == 0 && i < argc - 1 ) {                  } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
173                          i++;                          i++;
174                          ARG_SAVEMPEGSTREAM = atoi(argv[i]);                          if (strcmp(argv[i], "tga") == 0) {
175                                    FORMAT = USE_TGA;
176                            } else {
177                                    FORMAT = USE_PNM;
178                  }                  }
179                  else if (strcmp("-help", argv[i])) {                  } else if (strcmp("-help", argv[i]) == 0) {
180                          usage();                          usage();
181                          return(0);                          return(0);
182                  }                  } else {
                 else {  
183                          usage();                          usage();
184                          exit(-1);                          exit(-1);
185                  }                  }
186            }
187    
188    #if defined(_MSC_VER)
189            if (ARG_INPUTFILE==NULL) {
190                    fprintf(stderr, "Warning: MSVC build does not read correctly from stdin. Use the -i switch.\n\n");
191          }          }
192    #endif
193    
194  /*****************************************************************************  /*****************************************************************************
195   * Values checking   * Values checking
196   ****************************************************************************/   ****************************************************************************/
197    
         if(XDIM <= 0 || XDIM > 2048 || YDIM <= 0 || YDIM > 2048) {  
                 usage();  
                 return -1;  
         }  
   
198          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
199                  in_file = stdin;                  in_file = stdin;
200          }          }
# Line 185  Line 203 
203                  in_file = fopen(ARG_INPUTFILE, "rb");                  in_file = fopen(ARG_INPUTFILE, "rb");
204                  if (in_file == NULL) {                  if (in_file == NULL) {
205                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
206                          return -1;                          return(-1);
207                  }                  }
208          }          }
209    
210            /* PNM/PGM format can't handle 16/32 bit data */
211            if (BPP != 1 && BPP != 3 && FORMAT == USE_PNM) {
212                    FORMAT = USE_TGA;
213            }
214    
215  /*****************************************************************************  /*****************************************************************************
216   *        Memory allocation   *        Memory allocation
217   ****************************************************************************/   ****************************************************************************/
# Line 199  Line 222 
222          if (!mp4_buffer)          if (!mp4_buffer)
223                  goto free_all_memory;                  goto free_all_memory;
224    
         /* Memory for frame output */  
         out_buffer = (unsigned char *) malloc(XDIM*YDIM*4);  
         if (!out_buffer)  
                 goto free_all_memory;  
   
   
225  /*****************************************************************************  /*****************************************************************************
226   *        XviD PART  Start   *        XviD PART  Start
227   ****************************************************************************/   ****************************************************************************/
228    
229          status = dec_init(use_assembler);          status = dec_init(use_assembler, debug_level);
230          if (status) {          if (status) {
231                  fprintf(stderr,                  fprintf(stderr,
232                          "Decore INIT problem, return value %d\n", status);                          "Decore INIT problem, return value %d\n", status);
# Line 222  Line 239 
239   ****************************************************************************/   ****************************************************************************/
240    
241          /* Fill the buffer */          /* Fill the buffer */
242          still_left_in_buffer = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);          useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);
243    
244          totaldectime = 0;          totaldectime = 0;
245          totalsize = 0;          totalsize = 0;
246          filenr = 0;          filenr = 0;
         delayed_frames = 0;  
247          mp4_ptr = mp4_buffer;          mp4_ptr = mp4_buffer;
248    
249          do {          do {
   
                 int mp4_size = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
250                  int used_bytes = 0;                  int used_bytes = 0;
251                  double dectime;                  double dectime;
                 int notification;  
252    
253                  /*                  /*
254                   * If the buffer is half empty or there are no more bytes in it                   * If the buffer is half empty or there are no more bytes in it
255                   * then fill it.                   * then fill it.
256                   */                   */
257                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2 ||                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) {
258                          still_left_in_buffer <= 0) {                          int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr);
                         int rest = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
259    
260                          /* Move data if needed */                          /* Move data if needed */
261                          if (rest)                          if (already_in_buffer > 0)
262                                  memcpy(mp4_buffer, mp4_ptr, rest);                                  memcpy(mp4_buffer, mp4_ptr, already_in_buffer);
263    
264                          /* Update mp4_ptr */                          /* Update mp4_ptr */
265                          mp4_ptr = mp4_buffer;                          mp4_ptr = mp4_buffer;
# Line 256  Line 268 
268                          if(feof(in_file))                          if(feof(in_file))
269                                  break;                                  break;
270    
271                          still_left_in_buffer = rest + fread(mp4_buffer + rest,                          useful_bytes += fread(mp4_buffer + already_in_buffer,
272                                                                                   1,                                                                    1, BUFFER_SIZE - already_in_buffer,
                                                                                  BUFFER_SIZE - rest,  
273                                                                                   in_file);                                                                                   in_file);
274    
275                  }                  }
276    
277    
278                  /* This loop flushes N_VOPS (with vop_coded bit set to 0) */                  /* This loop is needed to handle VOL/NVOP reading */
279                  do {                  do {
280    
281                          /* Decode frame */                          /* Decode frame */
282                          dectime = msecond();                          dectime = msecond();
283                          status = dec_main(mp4_ptr, out_buffer, mp4_size, &used_bytes, &notification);                          used_bytes = dec_main(mp4_ptr, out_buffer, useful_bytes, &xvid_dec_stats);
284                          dectime = msecond() - dectime;                          dectime = msecond() - dectime;
285    
286                          if (status) {                          /* Resize image buffer if needed */
287                                  break;                          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                                            fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);
305                                    }
306                          }                          }
307    
308                          /* Update buffer pointers */                          /* Update buffer pointers */
309                            if(used_bytes > 0) {
310                          mp4_ptr += used_bytes;                          mp4_ptr += used_bytes;
311                          still_left_in_buffer -= used_bytes;                                  useful_bytes -= used_bytes;
312    
313                          /* Total size */                          /* Total size */
314                          totalsize += used_bytes;                          totalsize += used_bytes;
315                            }
316    
317                  }while(used_bytes <= 7 && still_left_in_buffer > 0); /* <= 7 bytes is a NVOPS */                  }while(xvid_dec_stats.type <= 0 && useful_bytes > 0);
   
                 /* Negative buffer would mean we went too far */  
                 if(still_left_in_buffer < 0) break;  
318    
319                  /* Skip when decoder is buffering images or decoding VOL information */                  /* Check if there is a negative number of useful bytes left in buffer
320                  if(notification != XVID_DEC_VOP) {                   * This means we went too far */
321                          /* It's a delay only if it notifies NOTHING */          if(useful_bytes < 0)
322                          if(notification == XVID_DEC_NOTHING)              break;
                                 delayed_frames++;  
                         continue;  
                 }  
323    
324                  /* Updated data - Count only usefull decode time */                  /* Updated data - Count only usefull decode time */
325                  totaldectime += dectime;                  totaldectime += dectime;
326    
327                  /* Prints some decoding stats */  
328                  printf("Frame %5d: dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
329                             filenr, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
330    
331                  /* Save individual mpeg4 stream if required */                  /* Save individual mpeg4 stream if required */
332                  if (ARG_SAVEMPEGSTREAM) {                  if (ARG_SAVEMPEGSTREAM) {
# Line 315  Line 340 
340                                                  filename);                                                  filename);
341                          }                          }
342                          else {                          else {
343                                  fwrite(mp4_buffer, 1, used_bytes, filehandle);                                  fwrite(mp4_ptr-used_bytes, 1, used_bytes, filehandle);
344                                  fclose(filehandle);                                  fclose(filehandle);
345                          }                          }
346                  }                  }
347    
348                  /* Save output frame if required */                  /* Save output frame if required */
349                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
350                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
351                          if(write_pgm(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
352                                  fprintf(stderr,                                  fprintf(stderr,
353                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
354                                                  filename);                                                  filename);
355                          }                          }
356                  }                  }
# Line 337  Line 362 
362  /*****************************************************************************  /*****************************************************************************
363   *     Flush decoder buffers   *     Flush decoder buffers
364   ****************************************************************************/   ****************************************************************************/
365          while(delayed_frames--) {  
366            do {
367    
368                  /* Fake vars */                  /* Fake vars */
369                  int used_bytes, isframe;                  int used_bytes;
370                  double dectime;                  double dectime;
371    
372                  /* Decode frame */          do {
373                  dectime = msecond();                  dectime = msecond();
374                  status = dec_main(NULL, out_buffer, -1, &used_bytes, &isframe);                      used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
375                  dectime = msecond() - dectime;                  dectime = msecond() - dectime;
376            }while(used_bytes>=0 && xvid_dec_stats.type <= 0);
377    
378                  if (status) {          if (used_bytes < 0) {   /* XVID_ERR_END */
379                          break;                          break;
380                  }                  }
381    
# Line 356  Line 383 
383                  totaldectime += dectime;                  totaldectime += dectime;
384    
385                  /* Prints some decoding stats */                  /* Prints some decoding stats */
386                  printf("Frame %5d: dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
387                             filenr, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
388    
389                  /* Save output frame if required */                  /* Save output frame if required */
390                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
391                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
392                          if(write_pgm(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
393                                  fprintf(stderr,                                  fprintf(stderr,
394                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
395                                                  filename);                                                  filename);
396                          }                          }
397                  }                  }
398    
399                  filenr++;                  filenr++;
400    
401          }          }while(1);
402    
403  /*****************************************************************************  /*****************************************************************************
404   *     Calculate totals and averages for output, print results   *     Calculate totals and averages for output, print results
405   ****************************************************************************/   ****************************************************************************/
406    
407            if (filenr>0) {
408          totalsize    /= filenr;          totalsize    /= filenr;
409          totaldectime /= filenr;          totaldectime /= filenr;
   
410          printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",          printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",
411                  totaldectime, 1000/totaldectime, (int)totalsize);                  totaldectime, 1000/totaldectime, (int)totalsize);
412            }else{
413                    printf("Nothing was decoded!\n");
414            }
415    
416    
417  /*****************************************************************************  /*****************************************************************************
418   *      XviD PART  Stop   *      XviD PART  Stop
# Line 398  Line 429 
429          free(out_buffer);          free(out_buffer);
430          free(mp4_buffer);          free(mp4_buffer);
431    
432          return 0;          return(0);
433  }  }
434    
435  /*****************************************************************************  /*****************************************************************************
# Line 408  Line 439 
439  static void usage()  static void usage()
440  {  {
441    
442          fprintf(stderr, "Usage : xvid_decraw <-w width> <-h height> [OPTIONS]\n");          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
443          fprintf(stderr, "Options :\n");          fprintf(stderr, "Options :\n");
444          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
445          fprintf(stderr, " -w integer     : frame width ([1.2048])\n");          fprintf(stderr, " -debug         : debug level (debug=0)\n");
         fprintf(stderr, " -h integer     : frame height ([1.2048])\n");  
446          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
447          fprintf(stderr, " -t integer     : input data type (raw=0, mp4u=1)\n");          fprintf(stderr, " -d             : save decoder output\n");
448          fprintf(stderr, " -d boolean     : save decoder output (0 False*, !=0 True)\n");          fprintf(stderr, " -c csp         : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n");
449          fprintf(stderr, " -m boolean     : save mpeg4 raw stream to individual files (0 False*, !=0 True)\n");          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");          fprintf(stderr, " -help          : This help message\n");
452          fprintf(stderr, " (* means default)\n");          fprintf(stderr, " (* means default)\n");
453    
# Line 433  Line 464 
464  #ifndef WIN32  #ifndef WIN32
465          struct timeval  tv;          struct timeval  tv;
466          gettimeofday(&tv, 0);          gettimeofday(&tv, 0);
467          return (double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3;          return((double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3);
468  #else  #else
469          clock_t clk;          clock_t clk;
470          clk = clock();          clk = clock();
471          return clk * 1000 / CLOCKS_PER_SEC;          return(clk * 1000 / CLOCKS_PER_SEC);
472  #endif  #endif
473  }  }
474    
# Line 445  Line 476 
476   *              output functions   *              output functions
477   ****************************************************************************/   ****************************************************************************/
478    
479  static int  static int write_image(char *prefix, unsigned char *image)
 write_pgm(char *filename,  
           unsigned char *image)  
480  {  {
481          int loop;          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          unsigned char *y = image;          sprintf(filename, "%s.%s", prefix, ext);
         unsigned char *u = image + XDIM*YDIM;  
         unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;  
   
         FILE *filehandle;  
         filehandle=fopen(filename,"w+b");  
         if (filehandle) {  
497    
498                  /* Write header */          if (FORMAT == USE_PNM) {
499                  fprintf(filehandle,"P5\n\n%d %d 255\n", XDIM,YDIM*3/2);                  ret = write_pnm(filename, image);
500            } else {
501                    ret = write_tga(filename, image);
502            }
503    
504                  /* Write Y data */          return(ret);
505                  fwrite(y, 1, XDIM*YDIM, filehandle);  }
506    
507                  for(loop=0; loop<YDIM/2; loop++)  static int write_tga(char *filename, unsigned char *image)
508                  {                  {
509                          /* Write U scanline */          FILE * f;
510                          fwrite(u, 1, XDIM/2, filehandle);          char hdr[18];
511    
512                          /* Write V scanline */          f = fopen(filename, "wb");
513                          fwrite(v, 1, XDIM/2, filehandle);          if ( f == NULL) {
514                    return -1;
515            }
516    
517                          /* Update pointers */          hdr[0]  = 0; /* ID length */
518                          u += XDIM/2;          hdr[1]  = 0; /* Color map type */
519                          v += XDIM/2;          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                  /* Close file */          /* Write Y and V planes for YUV formats */
571                  fclose(filehandle);          if (BPP == 1) {
572                    int i;
573    
574                  return 0;                  /* Write the two chrominance planes */
575                    for (i=0; i<YDIM/2; i++) {
576                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
577                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
578          }          }
         else  
                 return 1;  
579  }  }
580    
581    
582            /* Close the file */
583            fclose(f);
584    
585            return(0);
586    }
587    
588    int write_pnm(char *filename, unsigned char *image)
589    {
590            FILE * f;
591    
592            f = fopen(filename, "wb");
593            if ( f == NULL) {
594                    return -1;
595            }
596    
597            if (BPP == 1) {
598                    int i;
599                    fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2);
600    
601                    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    }
627  /*****************************************************************************  /*****************************************************************************
628   * Routines for decoding: init decoder, use, and stop decoder   * Routines for decoding: init decoder, use, and stop decoder
629   ****************************************************************************/   ****************************************************************************/
630    
631  /* init decoder before first run */  /* init decoder before first run */
632  static int  static int
633  dec_init(int use_assembler)  dec_init(int use_assembler, int debug_level)
634  {  {
635          int xerr;          int ret;
636    
637            xvid_gbl_init_t   xvid_gbl_init;
638            xvid_dec_create_t xvid_dec_create;
639    
640          XVID_INIT_PARAM xinit;          /*------------------------------------------------------------------------
641          XVID_DEC_PARAM xparam;           * XviD core initialization
642             *----------------------------------------------------------------------*/
643    
644            /* Version */
645            xvid_gbl_init.version = XVID_VERSION;
646    
647            /* Assembly setting */
648                  if(use_assembler)                  if(use_assembler)
649  #ifdef ARCH_IS_IA64  #ifdef ARCH_IS_IA64
650                          xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
651  #else  #else
652                          xinit.cpu_flags = 0;          xvid_gbl_init.cpu_flags = 0;
653  #endif  #endif
654                  else                  else
655                          xinit.cpu_flags = XVID_CPU_FORCE;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
656    
657            xvid_gbl_init.debug = debug_level;
658    
659          xvid_init(NULL, 0, &xinit, NULL);          xvid_global(NULL, 0, &xvid_gbl_init, NULL);
         xparam.width = XDIM;  
         xparam.height = YDIM;  
660    
661          xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);          /*------------------------------------------------------------------------
662             * XviD encoder initialization
663             *----------------------------------------------------------------------*/
664    
665          dec_handle = xparam.handle;          /* Version */
666            xvid_dec_create.version = XVID_VERSION;
667    
668          return xerr;          /*
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  */  /* decode one frame  */
# Line 526  Line 684 
684  dec_main(unsigned char *istream,  dec_main(unsigned char *istream,
685                   unsigned char *ostream,                   unsigned char *ostream,
686                   int istream_size,                   int istream_size,
687                   int *ostream_size,                   xvid_dec_stats_t *xvid_dec_stats)
                  int *notification)  
688  {  {
689    
690          int xerr;          int ret;
691          XVID_DEC_FRAME xframe;  
692                  XVID_DEC_STATS xstats;          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          xframe.general    = 0;          /* No general flags to set */
699                  xframe.bitstream  = istream;          xvid_dec_frame.general          = 0;
         xframe.length     = istream_size;  
                 xframe.image      = ostream;  
         xframe.stride     = XDIM;  
                 xframe.colorspace = XVID_CSP_I420;  
700    
701                  xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, &xstats);          /* Input stream */
702            xvid_dec_frame.bitstream        = istream;
703            xvid_dec_frame.length           = istream_size;
704    
705                  *ostream_size = xframe.length;          /* 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                  *notification = xstats.notify;          ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);
711    
712          return xerr;          return(ret);
713  }  }
714    
715  /* close decoder to release resources */  /* close decoder to release resources */
716  static int  static int
717  dec_stop()  dec_stop()
718  {  {
719          int xerr;          int ret;
720    
721          xerr = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);          ret = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);
722    
723          return xerr;          return(ret);
724  }  }

Legend:
Removed from v.902  
changed lines
  Added in v.1426

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