[svn] / branches / dev-api-4 / xvidcore / examples / xvid_decraw.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/examples/xvid_decraw.c

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

revision 918, Tue Mar 11 23:39:47 2003 UTC revision 1119, Sat Aug 9 17:19:20 2003 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.2.1 2003-03-11 23:39:47 edgomez Exp $   * $Id: xvid_decraw.c,v 1.7.2.5 2003-08-09 17:19:15 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)  
  *  -i string      : input filename (default=stdin)  
  *  -t integer     : input data type (raw=0, mp4u=1)  
  *  -d             : save decoder output (0 False*, !=0 True)  
  *  -m             : save mpeg4 raw stream to single files (0 False*, !=0 True)  
  *  -help          : This help message  
  * (* means default)  
38   *   *
39   ****************************************************************************/   ****************************************************************************/
40    
# Line 96  Line 84 
84  static int dec_stop();  static int dec_stop();
85  static void usage();  static void usage();
86    
87    
88    const char * type2str(int type)
89    {
90        if (type==XVID_TYPE_IVOP)
91            return "I";
92        if (type==XVID_TYPE_PVOP)
93            return "P";
94        if (type==XVID_TYPE_BVOP)
95            return "B";
96        return "S";
97    }
98    
99  /*****************************************************************************  /*****************************************************************************
100   *        Main program   *        Main program
101   ****************************************************************************/   ****************************************************************************/
# Line 105  Line 105 
105          unsigned char *mp4_buffer = NULL;          unsigned char *mp4_buffer = NULL;
106          unsigned char *mp4_ptr    = NULL;          unsigned char *mp4_ptr    = NULL;
107          unsigned char *out_buffer = NULL;          unsigned char *out_buffer = NULL;
108          unsigned char *type       = NULL;          int useful_bytes;
         int still_left_in_buffer;  
         int delayed_frames;  
109          xvid_dec_stats_t xvid_dec_stats;          xvid_dec_stats_t xvid_dec_stats;
110    
111          double totaldectime;          double totaldectime;
# Line 134  Line 132 
132    
133                  if (strcmp("-asm", argv[i]) == 0 ) {                  if (strcmp("-asm", argv[i]) == 0 ) {
134                          use_assembler = 1;                          use_assembler = 1;
135                  }                  } else if (strcmp("-d", argv[i]) == 0) {
                 else if (strcmp("-d", argv[i]) == 0) {  
136                          ARG_SAVEDECOUTPUT = 1;                          ARG_SAVEDECOUTPUT = 1;
137                  }                  } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
                 else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {  
138                          i++;                          i++;
139                          ARG_INPUTFILE = argv[i];                          ARG_INPUTFILE = argv[i];
140                  }                  } else if (strcmp("-m", argv[i]) == 0) {
                 else if (strcmp("-m", argv[i]) == 0) {  
141                          ARG_SAVEMPEGSTREAM = 1;                          ARG_SAVEMPEGSTREAM = 1;
142                  }                  } else if (strcmp("-help", argv[i]) == 0) {
                 else if (strcmp("-help", argv[i])) {  
143                          usage();                          usage();
144                          return(0);                          return(0);
145                  }                  } else {
                 else {  
146                          usage();                          usage();
147                          exit(-1);                          exit(-1);
148                  }                  }
   
149          }          }
150    
151  /*****************************************************************************  /*****************************************************************************
# Line 199  Line 191 
191   ****************************************************************************/   ****************************************************************************/
192    
193          /* Fill the buffer */          /* Fill the buffer */
194          still_left_in_buffer = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);          useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);
195    
196          totaldectime = 0;          totaldectime = 0;
197          totalsize = 0;          totalsize = 0;
198          filenr = 0;          filenr = 0;
         delayed_frames = 0;  
199          mp4_ptr = mp4_buffer;          mp4_ptr = mp4_buffer;
200    
201          do {          do {
   
                 int mp4_size = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
202                  int used_bytes = 0;                  int used_bytes = 0;
203                  double dectime;                  double dectime;
204    
# Line 217  Line 206 
206                   * 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
207                   * then fill it.                   * then fill it.
208                   */                   */
209                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2 ||                  if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) {
210                          still_left_in_buffer <= 0) {                          int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr);
                         int rest = (mp4_buffer + BUFFER_SIZE - mp4_ptr);  
211    
212                          /* Move data if needed */                          /* Move data if needed */
213                          if (rest)                          if (already_in_buffer > 0)
214                                  memcpy(mp4_buffer, mp4_ptr, rest);                                  memcpy(mp4_buffer, mp4_ptr, already_in_buffer);
215    
216                          /* Update mp4_ptr */                          /* Update mp4_ptr */
217                          mp4_ptr = mp4_buffer;                          mp4_ptr = mp4_buffer;
# Line 232  Line 220 
220                          if(feof(in_file))                          if(feof(in_file))
221                                  break;                                  break;
222    
223                          still_left_in_buffer = fread(mp4_buffer + rest,                          useful_bytes += fread(mp4_buffer + already_in_buffer,
224                                                                                   1,                                                                    1, BUFFER_SIZE - already_in_buffer,
                                                                                  BUFFER_SIZE - rest,  
225                                                                                   in_file);                                                                                   in_file);
226    
227                  }                  }
# Line 245  Line 232 
232    
233                          /* Decode frame */                          /* Decode frame */
234                          dectime = msecond();                          dectime = msecond();
235                          used_bytes = dec_main(mp4_ptr, out_buffer, mp4_size, &xvid_dec_stats);                          used_bytes = dec_main(mp4_ptr, out_buffer, useful_bytes, &xvid_dec_stats);
236                          dectime = msecond() - dectime;                          dectime = msecond() - dectime;
237    
238                          /* Resize image buffer if needed */                          /* Resize image buffer if needed */
239                          if(xvid_dec_stats.type == XVID_TYPE_VOL) {                          if(xvid_dec_stats.type == XVID_TYPE_VOL) {
240    
241                                  /* Free old output buffer*/                                  /* Check if old buffer is smaller */
242                                  if(out_buffer) free(out_buffer);                                  if(XDIM*YDIM < xvid_dec_stats.data.vol.width*xvid_dec_stats.data.vol.height) {
243    
244                                  /* Copy witdh and height from the vol structure */                                          /* Copy new witdh and new height from the vol structure */
245                                  XDIM = xvid_dec_stats.data.vol.width;                                  XDIM = xvid_dec_stats.data.vol.width;
246                                  YDIM = xvid_dec_stats.data.vol.height;                                  YDIM = xvid_dec_stats.data.vol.height;
247    
248                                            /* Free old output buffer*/
249                                            if(out_buffer) free(out_buffer);
250    
251                                  /* Allocate the new buffer */                                  /* Allocate the new buffer */
252                                  if((out_buffer = (unsigned char*)malloc(XDIM*YDIM*4)) == NULL)                                          out_buffer = (unsigned char*)malloc(XDIM*YDIM*4);
253                                            if(out_buffer == NULL)
254                                          goto free_all_memory;                                          goto free_all_memory;
255    
256                                            fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);
257                                    }
258                          }                          }
259    
260                          /* Update buffer pointers */                          /* Update buffer pointers */
261                          if(used_bytes > 0) {                          if(used_bytes > 0) {
262                                  mp4_ptr += used_bytes;                                  mp4_ptr += used_bytes;
263                                  still_left_in_buffer -= used_bytes;                                  useful_bytes -= used_bytes;
264    
265                                  /* Total size */                                  /* Total size */
266                                  totalsize += used_bytes;                                  totalsize += used_bytes;
267                          }                          }
268    
269                  }while(xvid_dec_stats.type != XVID_TYPE_IVOP &&                  }while(xvid_dec_stats.type <= 0 && useful_bytes > 0);
270                             xvid_dec_stats.type != XVID_TYPE_PVOP &&  
271                             xvid_dec_stats.type != XVID_TYPE_BVOP &&                  /* Check if there is a negative number of useful bytes left in buffer
272                             xvid_dec_stats.type != XVID_TYPE_SVOP &&                   * This means we went too far */
273                             still_left_in_buffer > 0);          if(useful_bytes < 0)
274                break;
                 /* Negative buffer would mean we went too far */  
                 if(still_left_in_buffer < 0) break;  
   
                 /* Skip when decoder is buffering images because of bframes */  
                 if(xvid_dec_stats.type == XVID_TYPE_NOTHING) {  
                         delayed_frames++;  
                         continue;  
                 }  
275    
276                  /* Updated data - Count only usefull decode time */                  /* Updated data - Count only usefull decode time */
277                  totaldectime += dectime;                  totaldectime += dectime;
278    
                 /* Prints some decoding stats */  
                 switch(xvid_dec_stats.type) {  
                 case XVID_TYPE_IVOP:  
                         type = "I";  
                         break;  
                 case XVID_TYPE_PVOP:  
                         type = "P";  
                         break;  
                 case XVID_TYPE_BVOP:  
                         type = "B";  
                         break;  
                 case XVID_TYPE_SVOP:  
                         type = "S";  
                         break;  
                 }  
279    
280                  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",
281                             filenr, type, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
282    
283                  /* Save individual mpeg4 stream if required */                  /* Save individual mpeg4 stream if required */
284                  if(ARG_SAVEMPEGSTREAM) {                  if(ARG_SAVEMPEGSTREAM) {
# Line 344  Line 315 
315   *     Flush decoder buffers   *     Flush decoder buffers
316   ****************************************************************************/   ****************************************************************************/
317    
318          while(delayed_frames--) {          do {
319    
320                  /* Fake vars */                  /* Fake vars */
321                  int used_bytes;                  int used_bytes;
322                  double dectime;                  double dectime;
323    
324                  /* Decode frame */          do {
325                  dectime = msecond();                  dectime = msecond();
326                  used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);                  used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
327                  dectime = msecond() - dectime;                  dectime = msecond() - dectime;
328            }while(used_bytes>=0 && xvid_dec_stats.type <= 0);
329    
330            if (used_bytes < 0) {   /* XVID_ERR_END */
331                break;
332            }
333    
334                  /* Updated data - Count only usefull decode time */                  /* Updated data - Count only usefull decode time */
335                  totaldectime += dectime;                  totaldectime += dectime;
336    
337                  /* Prints some decoding stats */                  /* Prints some decoding stats */
338                  printf("Frame %5d: dectime(ms) =%6.1f, length(bytes) =%7d\n",          printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
339                             filenr, dectime, used_bytes);                             filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
340    
341                  /* Save output frame if required */                  /* Save output frame if required */
342                  if (ARG_SAVEDECOUTPUT) {                  if (ARG_SAVEDECOUTPUT) {
# Line 374  Line 350 
350    
351                  filenr++;                  filenr++;
352    
353          }          }while(1);
354    
355  /*****************************************************************************  /*****************************************************************************
356   *     Calculate totals and averages for output, print results   *     Calculate totals and averages for output, print results
# Line 411  Line 387 
387  static void usage()  static void usage()
388  {  {
389    
390          fprintf(stderr, "Usage : xvid_decraw <-w width> <-h height> [OPTIONS]\n");          fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
391          fprintf(stderr, "Options :\n");          fprintf(stderr, "Options :\n");
392          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");          fprintf(stderr, " -asm           : use assembly optimizations (default=disabled)\n");
393          fprintf(stderr, " -i string      : input filename (default=stdin)\n");          fprintf(stderr, " -i string      : input filename (default=stdin)\n");
         fprintf(stderr, " -t integer     : input data type (raw=0, mp4u=1)\n");  
394          fprintf(stderr, " -d             : save decoder output\n");          fprintf(stderr, " -d             : save decoder output\n");
395          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");          fprintf(stderr, " -m             : save mpeg4 raw stream to individual files\n");
396          fprintf(stderr, " -help          : This help message\n");          fprintf(stderr, " -help          : This help message\n");

Legend:
Removed from v.918  
changed lines
  Added in v.1119

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