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

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

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

revision 1382, Mon Mar 22 22:36:25 2004 UTC revision 1678, Wed Feb 15 19:16:39 2006 UTC
# Line 20  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.10 2004-03-22 22:36:23 edgomez Exp $   * $Id: xvid_decraw.c,v 1.24 2006-02-15 19:16:39 Isibaar Exp $
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
# Line 54  Line 54 
54   *               Global vars in module and constants   *               Global vars in module and constants
55   ****************************************************************************/   ****************************************************************************/
56    
57  /* max number of frames */  #define USE_PNM 0
58  #define ABS_MAXFRAMENR 9999  #define USE_TGA 1
59    
60  static int XDIM = 0;  static int XDIM = 0;
61  static int YDIM = 0;  static int YDIM = 0;
62  static int ARG_SAVEDECOUTPUT = 0;  static int ARG_SAVEDECOUTPUT = 0;
63  static int ARG_SAVEMPEGSTREAM = 0;  static int ARG_SAVEMPEGSTREAM = 0;
64  static char *ARG_INPUTFILE = NULL;  static char *ARG_INPUTFILE = NULL;
65    static int CSP = XVID_CSP_I420;
66    static int BPP = 1;
67    static int FORMAT = USE_PNM;
68    
69  static char filepath[256] = "./";  static char filepath[256] = "./";
70  static void *dec_handle = NULL;  static void *dec_handle = NULL;
71    
72  #define BUFFER_SIZE (2*1024*1024)  #define BUFFER_SIZE (2*1024*1024)
73    
74    static const int display_buffer_bytes = 0;
75    
76    #define MIN_USEFUL_BYTES 1
77    
78  /*****************************************************************************  /*****************************************************************************
79   *               Local prototypes   *               Local prototypes
80   ****************************************************************************/   ****************************************************************************/
81    
82  static double msecond();  static double msecond();
83  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);  
84  static int dec_main(unsigned char *istream,  static int dec_main(unsigned char *istream,
85                                          unsigned char *ostream,                                          unsigned char *ostream,
86                                          int istream_size,                                          int istream_size,
87                                          xvid_dec_stats_t *xvid_dec_stats);                                          xvid_dec_stats_t *xvid_dec_stats);
88  static int dec_stop();  static int dec_stop();
89  static void usage();  static void usage();
90    static int write_image(char *prefix, unsigned char *image);
91    static int write_pnm(char *filename, unsigned char *image);
92    static int write_tga(char *filename, unsigned char *image);
93    
94  const char * type2str(int type)  const char * type2str(int type)
95  {  {
# Line 106  Line 112 
112          unsigned char *mp4_ptr    = NULL;          unsigned char *mp4_ptr    = NULL;
113          unsigned char *out_buffer = NULL;          unsigned char *out_buffer = NULL;
114          int useful_bytes;          int useful_bytes;
115            int chunk;
116          xvid_dec_stats_t xvid_dec_stats;          xvid_dec_stats_t xvid_dec_stats;
117    
118          double totaldectime;          double totaldectime;
# Line 114  Line 121 
121          int status;          int status;
122    
123          int use_assembler = 0;          int use_assembler = 0;
124            int debug_level = 0;
125    
126          char filename[256];          char filename[256];
127    
# Line 132  Line 140 
140    
141                  if (strcmp("-asm", argv[i]) == 0 ) {                  if (strcmp("-asm", argv[i]) == 0 ) {
142                          use_assembler = 1;                          use_assembler = 1;
143                    } else if (strcmp("-debug", argv[i]) == 0 && i < argc - 1 ) {
144                            i++;
145                            if (sscanf(argv[i], "0x%x", &debug_level) != 1) {
146                                    debug_level = atoi(argv[i]);
147                            }
148                  } else if (strcmp("-d", argv[i]) == 0) {                  } else if (strcmp("-d", argv[i]) == 0) {
149                          ARG_SAVEDECOUTPUT = 1;                          ARG_SAVEDECOUTPUT = 1;
150                  } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {                  } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
# Line 139  Line 152 
152                          ARG_INPUTFILE = argv[i];                          ARG_INPUTFILE = argv[i];
153                  } else if (strcmp("-m", argv[i]) == 0) {                  } else if (strcmp("-m", argv[i]) == 0) {
154                          ARG_SAVEMPEGSTREAM = 1;                          ARG_SAVEMPEGSTREAM = 1;
155                    } else if (strcmp("-c", argv[i]) == 0  && i < argc - 1 ) {
156                            i++;
157                            if (strcmp(argv[i], "rgb16") == 0) {
158                                    CSP = XVID_CSP_RGB555;
159                                    BPP = 2;
160                            } else if (strcmp(argv[i], "rgb24") == 0) {
161                                    CSP = XVID_CSP_BGR;
162                                    BPP = 3;
163                            } else if (strcmp(argv[i], "rgb32") == 0) {
164                                    CSP = XVID_CSP_BGRA;
165                                    BPP = 4;
166                            } else if (strcmp(argv[i], "yv12") == 0) {
167                                    CSP = XVID_CSP_YV12;
168                                    BPP = 1;
169                            } else {
170                                    CSP = XVID_CSP_I420;
171                                    BPP = 1;
172                            }
173                    } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
174                            i++;
175                            if (strcmp(argv[i], "tga") == 0) {
176                                    FORMAT = USE_TGA;
177                            } else {
178                                    FORMAT = USE_PNM;
179                            }
180                  } else if (strcmp("-help", argv[i]) == 0) {                  } else if (strcmp("-help", argv[i]) == 0) {
181                          usage();                          usage();
182                          return(0);                          return(0);
# Line 148  Line 186 
186                  }                  }
187          }          }
188    
189    #if defined(_MSC_VER)
190            if (ARG_INPUTFILE==NULL) {
191                    fprintf(stderr, "Warning: MSVC build does not read EOF correctly from stdin. Use the -i switch.\n\n");
192            }
193    #endif
194    
195  /*****************************************************************************  /*****************************************************************************
196   * Values checking   * Values checking
197   ****************************************************************************/   ****************************************************************************/
# Line 164  Line 208 
208                  }                  }
209          }          }
210    
211            /* PNM/PGM format can't handle 16/32 bit data */
212            if (BPP != 1 && BPP != 3 && FORMAT == USE_PNM) {
213                    FORMAT = USE_TGA;
214            }
215    
216  /*****************************************************************************  /*****************************************************************************
217   *        Memory allocation   *        Memory allocation
218   ****************************************************************************/   ****************************************************************************/
# Line 178  Line 227 
227   *        XviD PART  Start   *        XviD PART  Start
228   ****************************************************************************/   ****************************************************************************/
229    
230          status = dec_init(use_assembler);          status = dec_init(use_assembler, debug_level);
231          if (status) {          if (status) {
232                  fprintf(stderr,                  fprintf(stderr,
233                                  "Decore INIT problem, return value %d\n", status);                                  "Decore INIT problem, return value %d\n", status);
# Line 197  Line 246 
246          totalsize = 0;          totalsize = 0;
247          filenr = 0;          filenr = 0;
248          mp4_ptr = mp4_buffer;          mp4_ptr = mp4_buffer;
249            chunk = 0;
250    
251          do {          do {
252                  int used_bytes = 0;                  int used_bytes = 0;
# Line 217  Line 267 
267                          mp4_ptr = mp4_buffer;                          mp4_ptr = mp4_buffer;
268    
269                          /* read new data */                          /* read new data */
270              if(feof(in_file))              if(!feof(in_file)) {
                                 break;  
   
271                          useful_bytes += fread(mp4_buffer + already_in_buffer,                          useful_bytes += fread(mp4_buffer + already_in_buffer,
272                                                                    1, BUFFER_SIZE - already_in_buffer,                                                                    1, BUFFER_SIZE - already_in_buffer,
273                                                                    in_file);                                                                    in_file);
274                            }
275                  }                  }
276    
277    
# Line 255  Line 303 
303    
304                                          fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);                                          fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);
305                                  }                                  }
306    
307                                    /* Save individual mpeg4 stream if required */
308                                    if(ARG_SAVEMPEGSTREAM) {
309                                            FILE *filehandle = NULL;
310    
311                                            sprintf(filename, "%svolhdr.m4v", filepath);
312                                            filehandle = fopen(filename, "wb");
313                                            if(!filehandle) {
314                                                    fprintf(stderr,
315                                                                    "Error writing vol header mpeg4 stream to file %s\n",
316                                                                    filename);
317                                            } else {
318                                                    fwrite(mp4_ptr, 1, used_bytes, filehandle);
319                                                    fclose(filehandle);
320                                            }
321                                    }
322                          }                          }
323    
324                          /* Update buffer pointers */                          /* Update buffer pointers */
# Line 266  Line 330 
330                                  totalsize += used_bytes;                                  totalsize += used_bytes;
331                          }                          }
332    
333                  }while(xvid_dec_stats.type <= 0 && useful_bytes > 0);                          if (display_buffer_bytes) {
334                                    printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes);
335                            }
336                    } while (xvid_dec_stats.type <= 0 && useful_bytes > MIN_USEFUL_BYTES);
337    
338                  /* Check if there is a negative number of useful bytes left in buffer                  /* Check if there is a negative number of useful bytes left in buffer
339                   * This means we went too far */                   * This means we went too far */
# Line 277  Line 344 
344                  totaldectime += dectime;                  totaldectime += dectime;
345    
346    
347                    if (!display_buffer_bytes) {
348          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
349                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
350                    }
351    
352                  /* Save individual mpeg4 stream if required */                  /* Save individual mpeg4 stream if required */
353                  if(ARG_SAVEMPEGSTREAM) {                  if(ARG_SAVEMPEGSTREAM) {
# Line 299  Line 368 
368    
369                  /* Save output frame if required */                  /* Save output frame if required */
370                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
371                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
372                          if(write_pgm(filename,out_buffer)) {                          if(write_image(filename, out_buffer)) {
373                                  fprintf(stderr,                                  fprintf(stderr,
374                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
375                                                  filename);                                                  filename);
376                          }                          }
377                  }                  }
378    
379                  filenr++;                  filenr++;
380    
381          } while ( (status>=0) && (filenr<ABS_MAXFRAMENR));          } while (useful_bytes>MIN_USEFUL_BYTES || !feof(in_file));
382    
383            useful_bytes = 0; /* Empty buffer */
384    
385  /*****************************************************************************  /*****************************************************************************
386   *     Flush decoder buffers   *     Flush decoder buffers
# Line 325  Line 396 
396                      dectime = msecond();                      dectime = msecond();
397                      used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);                      used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
398                      dectime = msecond() - dectime;                      dectime = msecond() - dectime;
399                            if (display_buffer_bytes) {
400                                    printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes);
401                            }
402          }while(used_bytes>=0 && xvid_dec_stats.type <= 0);          }while(used_bytes>=0 && xvid_dec_stats.type <= 0);
403    
404          if (used_bytes < 0) {   /* XVID_ERR_END */          if (used_bytes < 0) {   /* XVID_ERR_END */
# Line 335  Line 409 
409                  totaldectime += dectime;                  totaldectime += dectime;
410    
411                  /* Prints some decoding stats */                  /* Prints some decoding stats */
412                    if (!display_buffer_bytes) {
413          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
414                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
415                    }
416    
417                  /* Save output frame if required */                  /* Save output frame if required */
418                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
419                          sprintf(filename, "%sdec%05d.pgm", filepath, filenr);                          sprintf(filename, "%sdec%05d", filepath, filenr);
420                          if(write_pgm(filename, out_buffer)) {                          if(write_image(filename, out_buffer)) {
421                                  fprintf(stderr,                                  fprintf(stderr,
422                                                  "Error writing decoded PGM frame %s\n",                                                  "Error writing decoded frame %s\n",
423                                                  filename);                                                  filename);
424                          }                          }
425                  }                  }
# Line 356  Line 432 
432   *     Calculate totals and averages for output, print results   *     Calculate totals and averages for output, print results
433   ****************************************************************************/   ****************************************************************************/
434    
435            if (filenr>0) {
436          totalsize    /= filenr;          totalsize    /= filenr;
437          totaldectime /= filenr;          totaldectime /= filenr;
   
438          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",
439                     totaldectime, 1000/totaldectime, (int)totalsize);                     totaldectime, 1000/totaldectime, (int)totalsize);
440            }else{
441                    printf("Nothing was decoded!\n");
442            }
443    
444  /*****************************************************************************  /*****************************************************************************
445   *      XviD PART  Stop   *      XviD PART  Stop
# Line 390  Line 469 
469          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
470          fprintf(stderr, "Options :\n");          fprintf(stderr, "Options :\n");
471          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
472            fprintf(stderr, " -debug         : debug level (debug=0)\n");
473          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
474          fprintf(stderr, " -d             : save decoder output\n");          fprintf(stderr, " -d             : save decoder output\n");
475            fprintf(stderr, " -c csp         : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n");
476            fprintf(stderr, " -f format      : choose output file format (tga, pnm, pgm)\n");
477          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");
478          fprintf(stderr, " -help          : This help message\n");          fprintf(stderr, " -help          : This help message\n");
479          fprintf(stderr, " (* means default)\n");          fprintf(stderr, " (* means default)\n");
# Line 413  Line 495 
495  #else  #else
496          clock_t clk;          clock_t clk;
497          clk = clock();          clk = clock();
498          return(clk * 1000 / CLOCKS_PER_SEC);          return(clk * 1000.0 / CLOCKS_PER_SEC);
499  #endif  #endif
500  }  }
501    
# Line 421  Line 503 
503   *              output functions   *              output functions
504   ****************************************************************************/   ****************************************************************************/
505    
506  static int  static int write_image(char *prefix, unsigned char *image)
 write_pgm(char *filename,  
                   unsigned char *image)  
507  {  {
508          int loop;          char filename[1024];
509            char *ext;
510            int ret;
511    
512          unsigned char *y = image;          if (FORMAT == USE_PNM && BPP == 1) {
513          unsigned char *u = image + XDIM*YDIM;                  ext = "pgm";
514          unsigned char *v = image + XDIM*YDIM + XDIM/2*YDIM/2;          } else if (FORMAT == USE_PNM && BPP == 3) {
515                    ext = "pnm";
516          FILE *filehandle;          } else if (FORMAT == USE_TGA) {
517          filehandle=fopen(filename,"w+b");                  ext = "tga";
518          if (filehandle) {          } else {
519                    fprintf(stderr, "Bug: should not reach this path code -- please report to xvid-devel@xvid.org with command line options used");
520                    exit(-1);
521            }
522    
523                  /* Write header */          sprintf(filename, "%s.%s", prefix, ext);
                 fprintf(filehandle,"P5\n\n%d %d 255\n", XDIM,YDIM*3/2);  
524    
525                  /* Write Y data */          if (FORMAT == USE_PNM) {
526                  fwrite(y, 1, XDIM*YDIM, filehandle);                  ret = write_pnm(filename, image);
527            } else {
528                    ret = write_tga(filename, image);
529            }
530    
531                  for(loop=0; loop<YDIM/2; loop++)          return(ret);
532    }
533    
534    static int write_tga(char *filename, unsigned char *image)
535                  {                  {
536                          /* Write U scanline */          FILE * f;
537                          fwrite(u, 1, XDIM/2, filehandle);          char hdr[18];
538    
539                          /* Write V scanline */          f = fopen(filename, "wb");
540                          fwrite(v, 1, XDIM/2, filehandle);          if ( f == NULL) {
541                    return -1;
542            }
543    
544            hdr[0]  = 0; /* ID length */
545            hdr[1]  = 0; /* Color map type */
546            hdr[2]  = (BPP>1)?2:3; /* Uncompressed true color (2) or greymap (3) */
547            hdr[3]  = 0; /* Color map specification (not used) */
548            hdr[4]  = 0; /* Color map specification (not used) */
549            hdr[5]  = 0; /* Color map specification (not used) */
550            hdr[6]  = 0; /* Color map specification (not used) */
551            hdr[7]  = 0; /* Color map specification (not used) */
552            hdr[8]  = 0; /* LSB X origin */
553            hdr[9]  = 0; /* MSB X origin */
554            hdr[10] = 0; /* LSB Y origin */
555            hdr[11] = 0; /* MSB Y origin */
556            hdr[12] = (XDIM>>0)&0xff; /* LSB Width */
557            hdr[13] = (XDIM>>8)&0xff; /* MSB Width */
558            if (BPP > 1) {
559                    hdr[14] = (YDIM>>0)&0xff; /* LSB Height */
560                    hdr[15] = (YDIM>>8)&0xff; /* MSB Height */
561            } else {
562                    hdr[14] = ((YDIM*3)>>1)&0xff; /* LSB Height */
563                    hdr[15] = ((YDIM*3)>>9)&0xff; /* MSB Height */
564            }
565            hdr[16] = BPP*8;
566            hdr[17] = 0x00 | (1<<5) /* Up to down */ | (0<<4); /* Image descriptor */
567    
568                          /* Update pointers */          /* Write header */
569                          u += XDIM/2;          fwrite(hdr, 1, sizeof(hdr), f);
                         v += XDIM/2;  
570    
571    #ifdef ARCH_IS_LITTLE_ENDIAN
572            /* write first plane */
573            fwrite(image, 1, XDIM*YDIM*BPP, f);
574    #else
575            {
576                    int i;
577                    for (i=0; i<XDIM*YDIM*BPP;i+=BPP) {
578                            if (BPP == 1) {
579                                    fputc(*(image+i), f);
580                            } else if (BPP == 2) {
581                                    fputc(*(image+i+1), f);
582                                    fputc(*(image+i+0), f);
583                            } else if (BPP == 3) {
584                                    fputc(*(image+i+2), f);
585                                    fputc(*(image+i+1), f);
586                                    fputc(*(image+i+0), f);
587                            } else if (BPP == 4) {
588                                    fputc(*(image+i+3), f);
589                                    fputc(*(image+i+2), f);
590                                    fputc(*(image+i+1), f);
591                                    fputc(*(image+i+0), f);
592                  }                  }
593                    }
594            }
595    #endif
596    
597                  /* Close file */          /* Write Y and V planes for YUV formats */
598                  fclose(filehandle);          if (BPP == 1) {
599                    int i;
600    
601                    /* Write the two chrominance planes */
602                    for (i=0; i<YDIM/2; i++) {
603                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
604                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
605                    }
606            }
607    
608    
609            /* Close the file */
610            fclose(f);
611    
612                  return(0);                  return(0);
613          }          }
614          else  
615                  return(1);  static int write_pnm(char *filename, unsigned char *image)
616    {
617            FILE * f;
618    
619            f = fopen(filename, "wb");
620            if ( f == NULL) {
621                    return -1;
622            }
623    
624            if (BPP == 1) {
625                    int i;
626                    fprintf(f, "P5\n%i %i\n255\n", XDIM, YDIM*3/2);
627    
628                    fwrite(image, 1, XDIM*YDIM, f);
629    
630                    for (i=0; i<YDIM/2;i++) {
631                            fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
632                            fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
633                    }
634            } else if (BPP == 3) {
635                    int i;
636                    fprintf(f, "P6\n#xvid\n%i %i\n255\n", XDIM, YDIM);
637                    for (i=0; i<XDIM*YDIM*3; i+=3) {
638    #ifdef ARCH_IS_LITTLE_ENDIAN
639                            fputc(image[i+2], f);
640                            fputc(image[i+1], f);
641                            fputc(image[i+0], f);
642    #else
643                            fputc(image[i+0], f);
644                            fputc(image[i+1], f);
645                            fputc(image[i+2], f);
646    #endif
647                    }
648            }
649    
650            fclose(f);
651    
652            return 0;
653  }  }
654    
655  /*****************************************************************************  /*****************************************************************************
# Line 470  Line 658 
658    
659  /* init decoder before first run */  /* init decoder before first run */
660  static int  static int
661  dec_init(int use_assembler)  dec_init(int use_assembler, int debug_level)
662  {  {
663          int ret;          int ret;
664    
665          xvid_gbl_init_t   xvid_gbl_init;          xvid_gbl_init_t   xvid_gbl_init;
666          xvid_dec_create_t xvid_dec_create;          xvid_dec_create_t xvid_dec_create;
667    
668            /* Reset the structure with zeros */
669            memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init_t));
670            memset(&xvid_dec_create, 0, sizeof(xvid_dec_create_t));
671    
672          /*------------------------------------------------------------------------          /*------------------------------------------------------------------------
673           * XviD core initialization           * XviD core initialization
674           *----------------------------------------------------------------------*/           *----------------------------------------------------------------------*/
# Line 494  Line 686 
686          else          else
687                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;                  xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
688    
689            xvid_gbl_init.debug = debug_level;
690    
691          xvid_global(NULL, 0, &xvid_gbl_init, NULL);          xvid_global(NULL, 0, &xvid_gbl_init, NULL);
692    
693          /*------------------------------------------------------------------------          /*------------------------------------------------------------------------
# Line 529  Line 723 
723    
724          xvid_dec_frame_t xvid_dec_frame;          xvid_dec_frame_t xvid_dec_frame;
725    
726            /* Reset all structures */
727            memset(&xvid_dec_frame, 0, sizeof(xvid_dec_frame_t));
728            memset(xvid_dec_stats, 0, sizeof(xvid_dec_stats_t));
729    
730          /* Set version */          /* Set version */
731          xvid_dec_frame.version = XVID_VERSION;          xvid_dec_frame.version = XVID_VERSION;
732          xvid_dec_stats->version = XVID_VERSION;          xvid_dec_stats->version = XVID_VERSION;
# Line 542  Line 740 
740    
741          /* Output frame structure */          /* Output frame structure */
742          xvid_dec_frame.output.plane[0]  = ostream;          xvid_dec_frame.output.plane[0]  = ostream;
743          xvid_dec_frame.output.stride[0] = XDIM;          xvid_dec_frame.output.stride[0] = XDIM*BPP;
744          xvid_dec_frame.output.csp       = XVID_CSP_I420;          xvid_dec_frame.output.csp = CSP;
745    
746          ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);          ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);
747    

Legend:
Removed from v.1382  
changed lines
  Added in v.1678

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