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

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

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

trunk/xvidcore/examples/xvid_decraw.c revision 860, Sun Feb 16 05:11:39 2003 UTC branches/release-1_0-branch/xvidcore/examples/xvid_decraw.c revision 1433, Thu Apr 15 22:39:30 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.7 2003-02-16 05:11:39 suxen_drol Exp $   * $Id: xvid_decraw.c,v 1.10.2.4 2004-04-15 22:39:30 edgomez 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();
 static int write_pgm(char *filename,  
                      unsigned char *image);  
82  static int dec_init(int use_assembler);  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_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   *        Main program
# Line 108  Line 110 
110          unsigned char *mp4_buffer = NULL;          unsigned char *mp4_buffer = NULL;
111          unsigned char *mp4_ptr    = NULL;          unsigned char *mp4_ptr    = NULL;
112          unsigned char *out_buffer = NULL;          unsigned char *out_buffer = NULL;
113          int bigendian = 0;          int useful_bytes;
114          int still_left_in_buffer;          xvid_dec_stats_t xvid_dec_stats;
         int delayed_frames;  
115    
116          double totaldectime;          double totaldectime;
117    
# Line 136  Line 137 
137    
138                  if (strcmp("-asm", argv[i]) == 0 ) {                  if (strcmp("-asm", argv[i]) == 0 ) {
139                          use_assembler = 1;                          use_assembler = 1;
140                  }                  } else if (strcmp("-d", argv[i]) == 0) {
141                  else if (strcmp("-w", argv[i]) == 0 && i < argc - 1 ) {                          ARG_SAVEDECOUTPUT = 1;
142                          i++;                  } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
                         XDIM = atoi(argv[i]);  
                 }  
                 else if (strcmp("-h", argv[i]) == 0 && i < argc - 1 ) {  
                         i++;  
                         YDIM = atoi(argv[i]);  
                 }  
                 else if (strcmp("-d", argv[i]) == 0 && i < argc - 1 ) {  
                         i++;  
                         ARG_SAVEDECOUTPUT = atoi(argv[i]);  
                 }  
                 else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {  
143                          i++;                          i++;
144                          ARG_INPUTFILE = argv[i];                          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("-m", argv[i]) == 0 && i < argc - 1 ) {                  } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
166                          i++;                          i++;
167                          ARG_SAVEMPEGSTREAM = atoi(argv[i]);                          if (strcmp(argv[i], "tga") == 0) {
168                                    FORMAT = USE_TGA;
169                            } else {
170                                    FORMAT = USE_PNM;
171                  }                  }
172                  else if (strcmp("-help", argv[i])) {                  } else if (strcmp("-help", argv[i]) == 0) {
173                          usage();                          usage();
174                          return(0);                          return(0);
175                  }                  } else {
                 else {  
176                          usage();                          usage();
177                          exit(-1);                          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   * Values checking   * Values checking
189   ****************************************************************************/   ****************************************************************************/
190    
         if(XDIM <= 0 || XDIM > 2048 || YDIM <= 0 || YDIM > 2048) {  
                 usage();  
                 return -1;  
         }  
   
191          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {          if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
192                  in_file = stdin;                  in_file = stdin;
193          }          }
# Line 185  Line 196 
196                  in_file = fopen(ARG_INPUTFILE, "rb");                  in_file = fopen(ARG_INPUTFILE, "rb");
197                  if (in_file == NULL) {                  if (in_file == NULL) {
198                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);                          fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
199                          return -1;                          return(-1);
200                  }                  }
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  /*****************************************************************************  /*****************************************************************************
209   *        Memory allocation   *        Memory allocation
210   ****************************************************************************/   ****************************************************************************/
# Line 199  Line 215 
215          if (!mp4_buffer)          if (!mp4_buffer)
216                  goto free_all_memory;                  goto free_all_memory;
217    
         /* Memory for frame output */  
         out_buffer = (unsigned char *) malloc(XDIM*YDIM*4);  
         if (!out_buffer)  
                 goto free_all_memory;  
   
   
218  /*****************************************************************************  /*****************************************************************************
219   *        XviD PART  Start   *        XviD PART  Start
220   ****************************************************************************/   ****************************************************************************/
# Line 222  Line 232 
232   ****************************************************************************/   ****************************************************************************/
233    
234          /* Fill the buffer */          /* Fill the buffer */
235          still_left_in_buffer = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);          useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);
236    
237          totaldectime = 0;          totaldectime = 0;
238          totalsize = 0;          totalsize = 0;
239          filenr = 0;          filenr = 0;
         delayed_frames = 0;  
240          mp4_ptr = mp4_buffer;          mp4_ptr = mp4_buffer;
241    
242          do {          do {
   
                 int mp4_size = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
243                  int used_bytes = 0;                  int used_bytes = 0;
244                  double dectime;                  double dectime;
                 int notification;  
245    
246                  /*                  /*
247                   * 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
248                   * then fill it.                   * then fill it.
249                   */                   */
250                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2 ||                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) {
251                          still_left_in_buffer <= 0) {                          int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr);
                         int rest = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
252    
253                          /* Move data if needed */                          /* Move data if needed */
254                          if (rest)                          if (already_in_buffer > 0)
255                                  memcpy(mp4_buffer, mp4_ptr, rest);                                  memcpy(mp4_buffer, mp4_ptr, already_in_buffer);
256    
257                          /* Update mp4_ptr */                          /* Update mp4_ptr */
258                          mp4_ptr = mp4_buffer;                          mp4_ptr = mp4_buffer;
# Line 256  Line 261 
261                          if(feof(in_file))                          if(feof(in_file))
262                                  break;                                  break;
263    
264                          still_left_in_buffer = fread(mp4_buffer + rest,                          useful_bytes += fread(mp4_buffer + already_in_buffer,
265                                                                                   1,                                                                    1, BUFFER_SIZE - already_in_buffer,
                                                                                  BUFFER_SIZE - rest,  
266                                                                                   in_file);                                                                                   in_file);
267    
268                  }                  }
269    
270    
271                  /* This loop flushes N_VOPS (with vop_coded bit set to 0) */                  /* This loop is needed to handle VOL/NVOP reading */
272                  do {                  do {
273    
274                          /* Decode frame */                          /* Decode frame */
275                          dectime = msecond();                          dectime = msecond();
276                          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);
277                          dectime = msecond() - dectime;                          dectime = msecond() - dectime;
278    
279                          if (status) {                          /* Resize image buffer if needed */
280                                  break;                          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                          /* Update buffer pointers */                          /* Update buffer pointers */
302                            if(used_bytes > 0) {
303                          mp4_ptr += used_bytes;                          mp4_ptr += used_bytes;
304                          still_left_in_buffer -= used_bytes;                                  useful_bytes -= used_bytes;
305    
306                          /* Total size */                          /* Total size */
307                          totalsize += used_bytes;                          totalsize += used_bytes;
308                            }
309    
310                  }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;  
311    
312                  /* Skip when decoder is buffering images or decoding VOL information */                  /* Check if there is a negative number of useful bytes left in buffer
313                  if(notification != XVID_DEC_VOP) {                   * This means we went too far */
314                          /* It's a delay only if it notifies NOTHING */          if(useful_bytes < 0)
315                          if(notification == XVID_DEC_NOTHING)              break;
                                 delayed_frames++;  
                         continue;  
                 }  
316    
317                  /* Updated data - Count only usefull decode time */                  /* Updated data - Count only usefull decode time */
318                  totaldectime += dectime;                  totaldectime += dectime;
319    
320                  /* Prints some decoding stats */  
321                  printf("Frame %5d: dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
322                             filenr, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
323    
324                  /* Save individual mpeg4 stream if required */                  /* Save individual mpeg4 stream if required */
325                  if (ARG_SAVEMPEGSTREAM) {                  if (ARG_SAVEMPEGSTREAM) {
# Line 315  Line 333 
333                                                  filename);                                                  filename);
334                          }                          }
335                          else {                          else {
336                                  fwrite(mp4_buffer, 1, used_bytes, filehandle);                                  fwrite(mp4_ptr-used_bytes, 1, used_bytes, filehandle);
337                                  fclose(filehandle);                                  fclose(filehandle);
338                          }                          }
339                  }                  }
340    
341                  /* Save output frame if required */                  /* Save output frame if required */
342                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
343                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
344                          if(write_pgm(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
345                                  fprintf(stderr,                                  fprintf(stderr,
346                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
347                                                  filename);                                                  filename);
348                          }                          }
349                  }                  }
# Line 337  Line 355 
355  /*****************************************************************************  /*****************************************************************************
356   *     Flush decoder buffers   *     Flush decoder buffers
357   ****************************************************************************/   ****************************************************************************/
358          while(delayed_frames--) {  
359            do {
360    
361                  /* Fake vars */                  /* Fake vars */
362                  int used_bytes, isframe;                  int used_bytes;
363                  double dectime;                  double dectime;
364    
365                  /* Decode frame */          do {
366                  dectime = msecond();                  dectime = msecond();
367                  status = dec_main(NULL, out_buffer, -1, &used_bytes, &isframe);                      used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
368                  dectime = msecond() - dectime;                  dectime = msecond() - dectime;
369            }while(used_bytes>=0 && xvid_dec_stats.type <= 0);
370    
371                  if (status) {          if (used_bytes < 0) {   /* XVID_ERR_END */
372                          break;                          break;
373                  }                  }
374    
# Line 356  Line 376 
376                  totaldectime += dectime;                  totaldectime += dectime;
377    
378                  /* Prints some decoding stats */                  /* Prints some decoding stats */
379                  printf("Frame %5d: dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
380                             filenr, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
381    
382                  /* Save output frame if required */                  /* Save output frame if required */
383                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
384                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
385                          if(write_pgm(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
386                                  fprintf(stderr,                                  fprintf(stderr,
387                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
388                                                  filename);                                                  filename);
389                          }                          }
390                  }                  }
391    
392                  filenr++;                  filenr++;
393    
394          }          }while(1);
395    
396  /*****************************************************************************  /*****************************************************************************
397   *     Calculate totals and averages for output, print results   *     Calculate totals and averages for output, print results
398   ****************************************************************************/   ****************************************************************************/
399    
400            if (filenr>0) {
401          totalsize    /= filenr;          totalsize    /= filenr;
402          totaldectime /= filenr;          totaldectime /= filenr;
   
403          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",
404                  totaldectime, 1000/totaldectime, (int)totalsize);                  totaldectime, 1000/totaldectime, (int)totalsize);
405            }else{
406                    printf("Nothing was decoded!\n");
407            }
408    
409  /*****************************************************************************  /*****************************************************************************
410   *      XviD PART  Stop   *      XviD PART  Stop
# Line 398  Line 421 
421          free(out_buffer);          free(out_buffer);
422          free(mp4_buffer);          free(mp4_buffer);
423    
424          return 0;          return(0);
425  }  }
426    
427  /*****************************************************************************  /*****************************************************************************
# Line 408  Line 431 
431  static void usage()  static void usage()
432  {  {
433    
434          fprintf(stderr, "Usage : xvid_decraw <-w width> <-h height> [OPTIONS]\n");          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
435          fprintf(stderr, "Options :\n");          fprintf(stderr, "Options :\n");
436          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
         fprintf(stderr, " -w integer     : frame width ([1.2048])\n");  
         fprintf(stderr, " -h integer     : frame height ([1.2048])\n");  
437          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
438          fprintf(stderr, " -t integer     : input data type (raw=0, mp4u=1)\n");          fprintf(stderr, " -d             : save decoder output\n");
439          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");
440          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");
441            fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");
442          fprintf(stderr, " -help          : This help message\n");          fprintf(stderr, " -help          : This help message\n");
443          fprintf(stderr, " (* means default)\n");          fprintf(stderr, " (* means default)\n");
444    
# Line 433  Line 455 
455  #ifndef WIN32  #ifndef WIN32
456          struct timeval  tv;          struct timeval  tv;
457          gettimeofday(&tv, 0);          gettimeofday(&tv, 0);
458          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);
459  #else  #else
460          clock_t clk;          clock_t clk;
461          clk = clock();          clk = clock();
462          return clk * 1000 / CLOCKS_PER_SEC;          return(clk * 1000 / CLOCKS_PER_SEC);
463  #endif  #endif
464  }  }
465    
# Line 445  Line 467 
467   *              output functions   *              output functions
468   ****************************************************************************/   ****************************************************************************/
469    
470  static int  static int write_image(char *prefix, unsigned char *image)
471  write_pgm(char *filename,  {
472            unsigned char *image)          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          int loop;          FILE * f;
501            char hdr[18];
502    
503          unsigned char *y = image;          f = fopen(filename, "wb");
504          unsigned char *u = image + XDIM*YDIM;          if ( f == NULL) {
505          unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;                  return -1;
506            }
507          FILE *filehandle;  
508          filehandle=fopen(filename,"w+b");          hdr[0]  = 0; /* ID length */
509          if (filehandle) {          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 */                  /* Write header */
533                  fprintf(filehandle,"P5\n\n%d %d 255\n", XDIM,YDIM*3/2);          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            /* Write Y and V planes for YUV formats */
562            if (BPP == 1) {
563                    int i;
564    
565                    /* Write the two chrominance planes */
566                    for (i=0; i<YDIM/2; i++) {
567                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
568                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
569                    }
570            }
571    
                 /* Write Y data */  
                 fwrite(y, 1, XDIM*YDIM, filehandle);  
572    
573                  for(loop=0; loop<YDIM/2; loop++)          /* Close the file */
574            fclose(f);
575    
576            return(0);
577    }
578    
579    static int write_pnm(char *filename, unsigned char *image)
580                  {                  {
581                          /* Write U scanline */          FILE * f;
582                          fwrite(u, 1, XDIM/2, filehandle);  
583            f = fopen(filename, "wb");
584            if ( f == NULL) {
585                    return -1;
586            }
587    
588                          /* Write V scanline */          if (BPP == 1) {
589                          fwrite(v, 1, XDIM/2, filehandle);                  int i;
590                    fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2);
591    
592                          /* Update pointers */                  fwrite(image, 1, XDIM*YDIM, f);
                         u += XDIM/2;  
                         v += XDIM/2;  
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                  /* Close file */          fclose(f);
                 fclose(filehandle);  
615    
616                  return 0;                  return 0;
617          }          }
         else  
                 return 1;  
 }  
618    
619  /*****************************************************************************  /*****************************************************************************
620   * Routines for decoding: init decoder, use, and stop decoder   * Routines for decoding: init decoder, use, and stop decoder
# Line 496  Line 624 
624  static int  static int
625  dec_init(int use_assembler)  dec_init(int use_assembler)
626  {  {
627          int xerr;          int ret;
628    
629          XVID_INIT_PARAM xinit;          xvid_gbl_init_t   xvid_gbl_init;
630          XVID_DEC_PARAM xparam;          xvid_dec_create_t xvid_dec_create;
631    
632            /*------------------------------------------------------------------------
633             * XviD core initialization
634             *----------------------------------------------------------------------*/
635    
636            /* Version */
637            xvid_gbl_init.version = XVID_VERSION;
638    
639            /* Assembly setting */
640                  if(use_assembler)                  if(use_assembler)
641  #ifdef ARCH_IS_IA64  #ifdef ARCH_IS_IA64
642                          xinit.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
643  #else  #else
644                          xinit.cpu_flags = 0;          xvid_gbl_init.cpu_flags = 0;
645  #endif  #endif
646                  else                  else
647                          xinit.cpu_flags = XVID_CPU_FORCE;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
648    
649          xvid_init(NULL, 0, &xinit, NULL);          xvid_global(NULL, 0, &xvid_gbl_init, NULL);
         xparam.width = XDIM;  
         xparam.height = YDIM;  
650    
651          xerr = xvid_decore(NULL, XVID_DEC_CREATE, &xparam, NULL);          /*------------------------------------------------------------------------
652             * XviD encoder initialization
653             *----------------------------------------------------------------------*/
654    
655          dec_handle = xparam.handle;          /* Version */
656            xvid_dec_create.version = XVID_VERSION;
657    
658          return xerr;          /*
659             * Image dimensions -- set to 0, xvidcore will resize when ever it is
660             * needed
661             */
662            xvid_dec_create.width = 0;
663            xvid_dec_create.height = 0;
664    
665            ret = xvid_decore(NULL, XVID_DEC_CREATE, &xvid_dec_create, NULL);
666    
667            dec_handle = xvid_dec_create.handle;
668    
669            return(ret);
670  }  }
671    
672  /* decode one frame  */  /* decode one frame  */
# Line 526  Line 674 
674  dec_main(unsigned char *istream,  dec_main(unsigned char *istream,
675                   unsigned char *ostream,                   unsigned char *ostream,
676                   int istream_size,                   int istream_size,
677                   int *ostream_size,                   xvid_dec_stats_t *xvid_dec_stats)
                  int *notification)  
678  {  {
679    
680          int xerr;          int ret;
681          XVID_DEC_FRAME xframe;  
682                  XVID_DEC_STATS xstats;          xvid_dec_frame_t xvid_dec_frame;
683    
684            /* Set version */
685            xvid_dec_frame.version = XVID_VERSION;
686            xvid_dec_stats->version = XVID_VERSION;
687    
688          xframe.general    = 0;          /* No general flags to set */
689                  xframe.bitstream  = istream;          xvid_dec_frame.general          = 0;
         xframe.length     = istream_size;  
                 xframe.image      = ostream;  
         xframe.stride     = XDIM;  
                 xframe.colorspace = XVID_CSP_YV12;  
690    
691                  xerr = xvid_decore(dec_handle, XVID_DEC_DECODE, &xframe, &xstats);          /* Input stream */
692            xvid_dec_frame.bitstream        = istream;
693            xvid_dec_frame.length           = istream_size;
694    
695                  *ostream_size = xframe.length;          /* Output frame structure */
696            xvid_dec_frame.output.plane[0]  = ostream;
697            xvid_dec_frame.output.stride[0] = XDIM*BPP;
698            xvid_dec_frame.output.csp = CSP;
699    
700                  *notification = xstats.notify;          ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);
701    
702          return xerr;          return(ret);
703  }  }
704    
705  /* close decoder to release resources */  /* close decoder to release resources */
706  static int  static int
707  dec_stop()  dec_stop()
708  {  {
709          int xerr;          int ret;
710    
711          xerr = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);          ret = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);
712    
713          return xerr;          return(ret);
714  }  }

Legend:
Removed from v.860  
changed lines
  Added in v.1433

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