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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1423 - (view) (download)

1 : edgomez 547 /*****************************************************************************
2 : chl 376 *
3 : edgomez 547 * XVID MPEG-4 VIDEO CODEC
4 :     * - Console based decoding test application -
5 : chl 376 *
6 : edgomez 851 * Copyright(C) 2002-2003 Christoph Lampert
7 : edgomez 1382 * 2002-2003 Edouard Gomez <ed.gomez@free.fr>
8 : chl 376 *
9 : edgomez 547 * 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
11 :     * the Free Software Foundation; either version 2 of the License, or
12 :     * (at your option) any later version.
13 : chl 376 *
14 : edgomez 547 * This program is distributed in the hope that it will be useful,
15 :     * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 :     * GNU General Public License for more details.
18 : chl 376 *
19 : edgomez 547 * You should have received a copy of the GNU General Public License
20 :     * along with this program; if not, write to the Free Software
21 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 :     *
23 : edgomez 1423 * $Id: xvid_decraw.c,v 1.12 2004-04-12 14:05:08 edgomez Exp $
24 : edgomez 547 *
25 :     ****************************************************************************/
26 : chl 376
27 : edgomez 547 /*****************************************************************************
28 : chl 376 *
29 : edgomez 547 * Application notes :
30 : chl 376 *
31 : edgomez 547 * An MPEG-4 bitstream is read from an input file (or stdin) and decoded,
32 :     * the speed for this is measured.
33 : edgomez 1382 *
34 :     * The program is plain C and needs no libraries except for libxvidcore,
35 :     * and maths-lib.
36 : chl 376 *
37 : edgomez 1382 * Use ./xvid_decraw -help for a list of options
38 : chl 376 *
39 : edgomez 547 ****************************************************************************/
40 : chl 376
41 :     #include <stdio.h>
42 :     #include <stdlib.h>
43 : edgomez 547 #include <string.h>
44 :     #include <math.h>
45 : edgomez 824 #ifndef WIN32
46 : edgomez 547 #include <sys/time.h>
47 :     #else
48 :     #include <time.h>
49 :     #endif
50 : chl 376
51 : edgomez 547 #include "xvid.h"
52 : chl 376
53 : edgomez 547 /*****************************************************************************
54 :     * Global vars in module and constants
55 :     ****************************************************************************/
56 : chl 376
57 : edgomez 547 /* max number of frames */
58 :     #define ABS_MAXFRAMENR 9999
59 : chl 376
60 : edgomez 1423 #define USE_PNM 0
61 :     #define USE_TGA 1
62 :    
63 : edgomez 547 static int XDIM = 0;
64 :     static int YDIM = 0;
65 :     static int ARG_SAVEDECOUTPUT = 0;
66 :     static int ARG_SAVEMPEGSTREAM = 0;
67 :     static char *ARG_INPUTFILE = NULL;
68 : edgomez 1423 static int CSP = XVID_CSP_I420;
69 :     static int BPP = 1;
70 :     static int FORMAT = USE_PNM;
71 : chl 376
72 : edgomez 547 static char filepath[256] = "./";
73 :     static void *dec_handle = NULL;
74 : chl 376
75 : edgomez 1382 #define BUFFER_SIZE (2*1024*1024)
76 : chl 376
77 : edgomez 547 /*****************************************************************************
78 :     * Local prototypes
79 :     ****************************************************************************/
80 : chl 376
81 : edgomez 547 static double msecond();
82 :     static int write_pgm(char *filename,
83 : edgomez 1382 unsigned char *image);
84 : suxen_drol 1416 static int dec_init(int use_assembler, int debug_level);
85 : edgomez 547 static int dec_main(unsigned char *istream,
86 : edgomez 851 unsigned char *ostream,
87 :     int istream_size,
88 : edgomez 1382 xvid_dec_stats_t *xvid_dec_stats);
89 : edgomez 547 static int dec_stop();
90 :     static void usage();
91 :    
92 : edgomez 1382
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 : edgomez 547 /*****************************************************************************
105 :     * Main program
106 :     ****************************************************************************/
107 :    
108 :     int main(int argc, char *argv[])
109 : chl 376 {
110 : edgomez 547 unsigned char *mp4_buffer = NULL;
111 :     unsigned char *mp4_ptr = NULL;
112 :     unsigned char *out_buffer = NULL;
113 : edgomez 1382 int useful_bytes;
114 :     xvid_dec_stats_t xvid_dec_stats;
115 : edgomez 851
116 : edgomez 547 double totaldectime;
117 :    
118 :     long totalsize;
119 :     int status;
120 :    
121 :     int use_assembler = 0;
122 : suxen_drol 1416 int debug_level = 0;
123 : edgomez 547
124 :     char filename[256];
125 :    
126 :     FILE *in_file;
127 :     int filenr;
128 :     int i;
129 :    
130 :     printf("xvid_decraw - raw mpeg4 bitstream decoder ");
131 : edgomez 851 printf("written by Christoph Lampert 2002-2003\n\n");
132 : edgomez 547
133 :     /*****************************************************************************
134 :     * Command line parsing
135 :     ****************************************************************************/
136 :    
137 :     for (i=1; i< argc; i++) {
138 :    
139 :     if (strcmp("-asm", argv[i]) == 0 ) {
140 :     use_assembler = 1;
141 : suxen_drol 1416 } else if (strcmp("-debug", argv[i]) == 0 && i < argc - 1 ) {
142 :     i++;
143 :     if (sscanf(argv[i], "0x%x", &debug_level) != 1) {
144 :     debug_level = atoi(argv[i]);
145 :     }
146 : edgomez 1382 } else if (strcmp("-d", argv[i]) == 0) {
147 :     ARG_SAVEDECOUTPUT = 1;
148 :     } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) {
149 : edgomez 547 i++;
150 :     ARG_INPUTFILE = argv[i];
151 : edgomez 1382 } else if (strcmp("-m", argv[i]) == 0) {
152 :     ARG_SAVEMPEGSTREAM = 1;
153 : edgomez 1423 } else if (strcmp("-c", argv[i]) == 0 && i < argc - 1 ) {
154 :     i++;
155 :     if (strcmp(argv[i], "rgb16") == 0) {
156 :     CSP = XVID_CSP_RGB555;
157 :     BPP = 2;
158 :     } else if (strcmp(argv[i], "rgb24") == 0) {
159 :     CSP = XVID_CSP_BGR;
160 :     BPP = 3;
161 :     } else if (strcmp(argv[i], "rgb32") == 0) {
162 :     CSP = XVID_CSP_BGRA;
163 :     BPP = 4;
164 :     } else if (strcmp(argv[i], "yv12") == 0) {
165 :     CSP = XVID_CSP_YV12;
166 :     BPP = 1;
167 :     } else {
168 :     CSP = XVID_CSP_I420;
169 :     BPP = 1;
170 :     }
171 :     } else if (strcmp("-f", argv[i]) == 0 && i < argc -1) {
172 :     i++;
173 :     if (strcmp(argv[i], "tga") == 0) {
174 :     FORMAT = USE_TGA;
175 :     } else {
176 :     FORMAT = USE_PNM;
177 :     }
178 : edgomez 1382 } else if (strcmp("-help", argv[i]) == 0) {
179 : edgomez 547 usage();
180 :     return(0);
181 : edgomez 1382 } else {
182 : edgomez 547 usage();
183 :     exit(-1);
184 :     }
185 : chl 376 }
186 : edgomez 547
187 :     /*****************************************************************************
188 :     * Values checking
189 :     ****************************************************************************/
190 :    
191 :     if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
192 :     in_file = stdin;
193 :     }
194 :     else {
195 :    
196 :     in_file = fopen(ARG_INPUTFILE, "rb");
197 :     if (in_file == NULL) {
198 :     fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
199 : edgomez 1382 return(-1);
200 : edgomez 547 }
201 :     }
202 :    
203 : edgomez 1423 /* 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 : edgomez 547 /*****************************************************************************
209 :     * Memory allocation
210 :     ****************************************************************************/
211 :    
212 :     /* Memory for encoded mp4 stream */
213 :     mp4_buffer = (unsigned char *) malloc(BUFFER_SIZE);
214 :     mp4_ptr = mp4_buffer;
215 :     if (!mp4_buffer)
216 :     goto free_all_memory;
217 :    
218 :     /*****************************************************************************
219 :     * XviD PART Start
220 :     ****************************************************************************/
221 :    
222 : suxen_drol 1416 status = dec_init(use_assembler, debug_level);
223 : edgomez 547 if (status) {
224 :     fprintf(stderr,
225 : edgomez 1382 "Decore INIT problem, return value %d\n", status);
226 : edgomez 547 goto release_all;
227 :     }
228 :    
229 :    
230 :     /*****************************************************************************
231 :     * Main loop
232 :     ****************************************************************************/
233 :    
234 : edgomez 851 /* Fill the buffer */
235 : edgomez 1382 useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file);
236 : edgomez 559
237 : edgomez 547 totaldectime = 0;
238 :     totalsize = 0;
239 :     filenr = 0;
240 :     mp4_ptr = mp4_buffer;
241 :    
242 :     do {
243 :     int used_bytes = 0;
244 :     double dectime;
245 :    
246 : edgomez 851 /*
247 :     * If the buffer is half empty or there are no more bytes in it
248 :     * then fill it.
249 :     */
250 : edgomez 1382 if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) {
251 :     int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr);
252 : edgomez 547
253 : edgomez 851 /* Move data if needed */
254 : edgomez 1382 if (already_in_buffer > 0)
255 :     memcpy(mp4_buffer, mp4_ptr, already_in_buffer);
256 : edgomez 547
257 : edgomez 851 /* Update mp4_ptr */
258 :     mp4_ptr = mp4_buffer;
259 : edgomez 547
260 : edgomez 851 /* read new data */
261 : edgomez 1382 if(feof(in_file))
262 : edgomez 547 break;
263 :    
264 : edgomez 1382 useful_bytes += fread(mp4_buffer + already_in_buffer,
265 :     1, BUFFER_SIZE - already_in_buffer,
266 :     in_file);
267 : edgomez 547
268 :     }
269 :    
270 :    
271 : edgomez 1382 /* This loop is needed to handle VOL/NVOP reading */
272 : edgomez 851 do {
273 : edgomez 547
274 : edgomez 851 /* Decode frame */
275 :     dectime = msecond();
276 : edgomez 1382 used_bytes = dec_main(mp4_ptr, out_buffer, useful_bytes, &xvid_dec_stats);
277 : edgomez 851 dectime = msecond() - dectime;
278 : edgomez 547
279 : edgomez 1382 /* Resize image buffer if needed */
280 :     if(xvid_dec_stats.type == XVID_TYPE_VOL) {
281 :    
282 :     /* Check if old buffer is smaller */
283 :     if(XDIM*YDIM < xvid_dec_stats.data.vol.width*xvid_dec_stats.data.vol.height) {
284 :    
285 :     /* Copy new witdh and new height from the vol structure */
286 :     XDIM = xvid_dec_stats.data.vol.width;
287 :     YDIM = xvid_dec_stats.data.vol.height;
288 :    
289 :     /* Free old output buffer*/
290 :     if(out_buffer) free(out_buffer);
291 :    
292 :     /* Allocate the new buffer */
293 :     out_buffer = (unsigned char*)malloc(XDIM*YDIM*4);
294 :     if(out_buffer == NULL)
295 :     goto free_all_memory;
296 :    
297 :     fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM);
298 :     }
299 : edgomez 851 }
300 : edgomez 547
301 : edgomez 851 /* Update buffer pointers */
302 : edgomez 1382 if(used_bytes > 0) {
303 :     mp4_ptr += used_bytes;
304 :     useful_bytes -= used_bytes;
305 : edgomez 559
306 : edgomez 1382 /* Total size */
307 :     totalsize += used_bytes;
308 :     }
309 : edgomez 547
310 : edgomez 1382 }while(xvid_dec_stats.type <= 0 && useful_bytes > 0);
311 : edgomez 547
312 : edgomez 1382 /* Check if there is a negative number of useful bytes left in buffer
313 :     * This means we went too far */
314 :     if(useful_bytes < 0)
315 :     break;
316 : edgomez 851
317 : edgomez 1382 /* Updated data - Count only usefull decode time */
318 : edgomez 851 totaldectime += dectime;
319 : edgomez 547
320 : edgomez 851
321 : edgomez 1382 printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
322 :     filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
323 :    
324 : edgomez 851 /* Save individual mpeg4 stream if required */
325 : edgomez 1382 if(ARG_SAVEMPEGSTREAM) {
326 : edgomez 547 FILE *filehandle = NULL;
327 :    
328 :     sprintf(filename, "%sframe%05d.m4v", filepath, filenr);
329 :     filehandle = fopen(filename, "wb");
330 :     if(!filehandle) {
331 :     fprintf(stderr,
332 : edgomez 851 "Error writing single mpeg4 stream to file %s\n",
333 :     filename);
334 : edgomez 547 }
335 :     else {
336 : edgomez 1382 fwrite(mp4_ptr-used_bytes, 1, used_bytes, filehandle);
337 : edgomez 547 fclose(filehandle);
338 :     }
339 :     }
340 : edgomez 851
341 : edgomez 547 /* Save output frame if required */
342 :     if (ARG_SAVEDECOUTPUT) {
343 : edgomez 1423 sprintf(filename, "%sdec%05d", filepath, filenr);
344 :     if(write_image(filename, out_buffer)) {
345 : edgomez 547 fprintf(stderr,
346 : edgomez 851 "Error writing decoded PGM frame %s\n",
347 :     filename);
348 : edgomez 547 }
349 :     }
350 :    
351 :     filenr++;
352 :    
353 : edgomez 851 } while ( (status>=0) && (filenr<ABS_MAXFRAMENR));
354 : edgomez 547
355 :     /*****************************************************************************
356 : edgomez 851 * Flush decoder buffers
357 :     ****************************************************************************/
358 :    
359 : edgomez 1382 do {
360 :    
361 : edgomez 851 /* Fake vars */
362 : edgomez 1382 int used_bytes;
363 : edgomez 851 double dectime;
364 :    
365 : edgomez 1382 do {
366 :     dectime = msecond();
367 :     used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats);
368 :     dectime = msecond() - dectime;
369 :     }while(used_bytes>=0 && xvid_dec_stats.type <= 0);
370 : edgomez 851
371 : edgomez 1382 if (used_bytes < 0) { /* XVID_ERR_END */
372 :     break;
373 :     }
374 : edgomez 851
375 :     /* Updated data - Count only usefull decode time */
376 :     totaldectime += dectime;
377 :    
378 :     /* Prints some decoding stats */
379 : edgomez 1382 printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n",
380 :     filenr, type2str(xvid_dec_stats.type), dectime, used_bytes);
381 : edgomez 851
382 :     /* Save output frame if required */
383 :     if (ARG_SAVEDECOUTPUT) {
384 : edgomez 1423 sprintf(filename, "%sdec%05d", filepath, filenr);
385 :     if(write_image(filename, out_buffer)) {
386 : edgomez 851 fprintf(stderr,
387 :     "Error writing decoded PGM frame %s\n",
388 :     filename);
389 :     }
390 :     }
391 :    
392 :     filenr++;
393 :    
394 : edgomez 1382 }while(1);
395 : edgomez 851
396 :     /*****************************************************************************
397 : edgomez 547 * Calculate totals and averages for output, print results
398 :     ****************************************************************************/
399 :    
400 :     totalsize /= filenr;
401 :     totaldectime /= filenr;
402 :    
403 : edgomez 851 printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n",
404 : edgomez 1382 totaldectime, 1000/totaldectime, (int)totalsize);
405 : edgomez 547
406 :     /*****************************************************************************
407 :     * XviD PART Stop
408 : edgomez 559 ****************************************************************************/
409 : edgomez 547
410 :     release_all:
411 :     if (dec_handle) {
412 :     status = dec_stop();
413 :     if (status)
414 :     fprintf(stderr, "decore RELEASE problem return value %d\n", status);
415 :     }
416 :    
417 :     free_all_memory:
418 :     free(out_buffer);
419 :     free(mp4_buffer);
420 :    
421 : edgomez 1382 return(0);
422 : chl 376 }
423 :    
424 : edgomez 547 /*****************************************************************************
425 :     * Usage function
426 :     ****************************************************************************/
427 : chl 376
428 : edgomez 547 static void usage()
429 : chl 376 {
430 : edgomez 547
431 : edgomez 1382 fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n");
432 : edgomez 547 fprintf(stderr, "Options :\n");
433 :     fprintf(stderr, " -asm : use assembly optimizations (default=disabled)\n");
434 : suxen_drol 1416 fprintf(stderr, " -debug : debug level (debug=0)\n");
435 : edgomez 547 fprintf(stderr, " -i string : input filename (default=stdin)\n");
436 : edgomez 1382 fprintf(stderr, " -d : save decoder output\n");
437 : edgomez 1423 fprintf(stderr, " -c csp : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n");
438 :     fprintf(stderr, " -f format : choose output file format (tga, pnm, pgm)\n");
439 : edgomez 1382 fprintf(stderr, " -m : save mpeg4 raw stream to individual files\n");
440 : edgomez 547 fprintf(stderr, " -help : This help message\n");
441 :     fprintf(stderr, " (* means default)\n");
442 :    
443 :     }
444 :    
445 :     /*****************************************************************************
446 :     * "helper" functions
447 :     ****************************************************************************/
448 :    
449 :     /* return the current time in milli seconds */
450 :     static double
451 :     msecond()
452 :     {
453 : edgomez 824 #ifndef WIN32
454 : edgomez 547 struct timeval tv;
455 :     gettimeofday(&tv, 0);
456 : edgomez 1382 return((double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3);
457 : edgomez 547 #else
458 :     clock_t clk;
459 :     clk = clock();
460 : edgomez 1382 return(clk * 1000 / CLOCKS_PER_SEC);
461 : edgomez 547 #endif
462 :     }
463 :    
464 :     /*****************************************************************************
465 :     * output functions
466 :     ****************************************************************************/
467 :    
468 : edgomez 1423 int write_image(char *prefix, unsigned char *image)
469 : edgomez 547 {
470 : edgomez 1423 char filename[1024];
471 :     char *ext;
472 :     int ret;
473 : edgomez 547
474 : edgomez 1423 if (FORMAT == USE_PNM && BPP == 1) {
475 :     ext = "pgm";
476 :     } else if (FORMAT == USE_PNM && BPP == 3) {
477 :     ext = "pnm";
478 :     } else if (FORMAT == USE_TGA) {
479 :     ext = "tga";
480 :     } else {
481 :     fprintf(stderr, "Bug: should not reach this path code -- please report to xvid-devel@xvid.org with command line options used");
482 :     exit(-1);
483 :     }
484 : edgomez 547
485 : edgomez 1423 sprintf(filename, "%s.%s", prefix, ext);
486 : chl 376
487 : edgomez 1423 if (FORMAT == USE_PNM) {
488 :     ret = write_pnm(filename, image);
489 :     } else {
490 :     ret = write_tga(filename, image);
491 :     }
492 : edgomez 547
493 : edgomez 1423 return(ret);
494 :     }
495 : edgomez 547
496 : edgomez 1423 int write_tga(char *filename, unsigned char *image)
497 :     {
498 :     FILE * f;
499 :     char hdr[18];
500 : edgomez 547
501 : edgomez 1423 f = fopen(filename, "wb");
502 :     if ( f == NULL) {
503 :     return -1;
504 :     }
505 : edgomez 547
506 : edgomez 1423 hdr[0] = 0; /* ID length */
507 :     hdr[1] = 0; /* Color map type */
508 :     hdr[2] = (BPP>1)?2:3; /* Uncompressed true color (2) or greymap (3) */
509 :     hdr[3] = 0; /* Color map specification (not used) */
510 :     hdr[4] = 0; /* Color map specification (not used) */
511 :     hdr[5] = 0; /* Color map specification (not used) */
512 :     hdr[6] = 0; /* Color map specification (not used) */
513 :     hdr[7] = 0; /* Color map specification (not used) */
514 :     hdr[8] = 0; /* LSB X origin */
515 :     hdr[9] = 0; /* MSB X origin */
516 :     hdr[10] = 0; /* LSB Y origin */
517 :     hdr[11] = 0; /* MSB Y origin */
518 :     hdr[12] = (XDIM>>0)&0xff; /* LSB Width */
519 :     hdr[13] = (XDIM>>8)&0xff; /* MSB Width */
520 :     if (BPP > 1) {
521 :     hdr[14] = (YDIM>>0)&0xff; /* LSB Height */
522 :     hdr[15] = (YDIM>>8)&0xff; /* MSB Height */
523 :     } else {
524 :     hdr[14] = ((YDIM*3)>>1)&0xff; /* LSB Height */
525 :     hdr[15] = ((YDIM*3)>>9)&0xff; /* MSB Height */
526 :     }
527 :     hdr[16] = BPP*8;
528 :     hdr[17] = 0x00 | (1<<5) /* Up to down */ | (0<<4); /* Image descriptor */
529 :    
530 :     /* Write header */
531 :     fwrite(hdr, 1, sizeof(hdr), f);
532 : edgomez 547
533 : edgomez 1423 #ifdef ARCH_IS_LITTLE_ENDIAN
534 :     /* write first plane */
535 :     fwrite(image, 1, XDIM*YDIM*BPP, f);
536 :     #else
537 :     {
538 :     int i;
539 :     for (i=0; i<width*height*BPP;i+=BPP) {
540 :     if (BPP == 1) {
541 :     fputc(image+i, f);
542 :     } else if (BPP == 2) {
543 :     fputc(image+i+1, f);
544 :     fputc(image+i+0, f);
545 :     } else if (BPP == 3) {
546 :     fputc(image+i+2, f);
547 :     fputc(image+i+1, f);
548 :     fputc(image+i+0, f);
549 :     } else if (BPP == 4) {
550 :     fputc(image+i+3, f);
551 :     fputc(image+i+2, f);
552 :     fputc(image+i+1, f);
553 :     fputc(image+i+0, f);
554 :     }
555 : edgomez 547 }
556 : edgomez 1423 }
557 :     #endif
558 : edgomez 547
559 : edgomez 1423 /* Write Y and V planes for YUV formats */
560 :     if (BPP == 1) {
561 :     int i;
562 : edgomez 547
563 : edgomez 1423 /* Write the two chrominance planes */
564 :     for (i=0; i<YDIM/2; i++) {
565 :     fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
566 :     fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
567 :     }
568 : chl 376 }
569 : edgomez 1423
570 :    
571 :     /* Close the file */
572 :     fclose(f);
573 :    
574 :     return(0);
575 : chl 376 }
576 :    
577 : edgomez 1423 int write_pnm(char *filename, unsigned char *image)
578 :     {
579 :     FILE * f;
580 :    
581 :     f = fopen(filename, "wb");
582 :     if ( f == NULL) {
583 :     return -1;
584 :     }
585 :    
586 :     if (BPP == 1) {
587 :     int i;
588 :     fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2);
589 :    
590 :     fwrite(image, 1, XDIM*YDIM, f);
591 :    
592 :     for (i=0; i<YDIM/2;i++) {
593 :     fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f);
594 :     fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f);
595 :     }
596 :     } else if (BPP == 3) {
597 :     int i;
598 :     fprintf(f, "P6\n#xvid\n%i %i\n255\n", XDIM, YDIM);
599 :     for (i=0; i<XDIM*YDIM*3; i+=3) {
600 :     #ifdef ARCH_IS_LITTLE_ENDIAN
601 :     fputc(image[i+2], f);
602 :     fputc(image[i+1], f);
603 :     fputc(image[i+0], f);
604 :     #else
605 :     fputc(image[i+0], f);
606 :     fputc(image[i+1], f);
607 :     fputc(image[i+2], f);
608 :     #endif
609 :     }
610 :     }
611 :    
612 :     fclose(f);
613 :    
614 :     return 0;
615 :     }
616 : edgomez 547 /*****************************************************************************
617 :     * Routines for decoding: init decoder, use, and stop decoder
618 :     ****************************************************************************/
619 : chl 376
620 : edgomez 547 /* init decoder before first run */
621 :     static int
622 : suxen_drol 1416 dec_init(int use_assembler, int debug_level)
623 : chl 376 {
624 : edgomez 1382 int ret;
625 : chl 376
626 : edgomez 1382 xvid_gbl_init_t xvid_gbl_init;
627 :     xvid_dec_create_t xvid_dec_create;
628 : chl 376
629 : edgomez 1382 /*------------------------------------------------------------------------
630 :     * XviD core initialization
631 :     *----------------------------------------------------------------------*/
632 :    
633 :     /* Version */
634 :     xvid_gbl_init.version = XVID_VERSION;
635 :    
636 :     /* Assembly setting */
637 :     if(use_assembler)
638 : suxen_drol 860 #ifdef ARCH_IS_IA64
639 : edgomez 1382 xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
640 : chl 376 #else
641 : edgomez 1382 xvid_gbl_init.cpu_flags = 0;
642 : chl 376 #endif
643 : edgomez 1382 else
644 :     xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
645 : chl 376
646 : suxen_drol 1416 xvid_gbl_init.debug = debug_level;
647 :    
648 : edgomez 1382 xvid_global(NULL, 0, &xvid_gbl_init, NULL);
649 : chl 376
650 : edgomez 1382 /*------------------------------------------------------------------------
651 :     * XviD encoder initialization
652 :     *----------------------------------------------------------------------*/
653 : edgomez 851
654 : edgomez 1382 /* Version */
655 :     xvid_dec_create.version = XVID_VERSION;
656 : chl 376
657 : edgomez 1382 /*
658 :     * Image dimensions -- set to 0, xvidcore will resize when ever it is
659 :     * needed
660 :     */
661 :     xvid_dec_create.width = 0;
662 :     xvid_dec_create.height = 0;
663 :    
664 :     ret = xvid_decore(NULL, XVID_DEC_CREATE, &xvid_dec_create, NULL);
665 :    
666 :     dec_handle = xvid_dec_create.handle;
667 :    
668 :     return(ret);
669 : chl 376 }
670 :    
671 : edgomez 547 /* decode one frame */
672 :     static int
673 :     dec_main(unsigned char *istream,
674 : edgomez 851 unsigned char *ostream,
675 :     int istream_size,
676 : edgomez 1382 xvid_dec_stats_t *xvid_dec_stats)
677 : edgomez 547 {
678 : chl 376
679 : edgomez 1382 int ret;
680 : chl 376
681 : edgomez 1382 xvid_dec_frame_t xvid_dec_frame;
682 : chl 376
683 : edgomez 1382 /* Set version */
684 :     xvid_dec_frame.version = XVID_VERSION;
685 :     xvid_dec_stats->version = XVID_VERSION;
686 : chl 376
687 : edgomez 1382 /* No general flags to set */
688 :     xvid_dec_frame.general = 0;
689 : chl 376
690 : edgomez 1382 /* Input stream */
691 :     xvid_dec_frame.bitstream = istream;
692 :     xvid_dec_frame.length = istream_size;
693 : edgomez 851
694 : edgomez 1382 /* Output frame structure */
695 :     xvid_dec_frame.output.plane[0] = ostream;
696 : edgomez 1423 xvid_dec_frame.output.stride[0] = XDIM*BPP;
697 :     xvid_dec_frame.output.csp = CSP;
698 : edgomez 1382
699 :     ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats);
700 :    
701 :     return(ret);
702 : chl 376 }
703 :    
704 : edgomez 547 /* close decoder to release resources */
705 :     static int
706 :     dec_stop()
707 : chl 376 {
708 : edgomez 1382 int ret;
709 : edgomez 547
710 : edgomez 1382 ret = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL);
711 : chl 376
712 : edgomez 1382 return(ret);
713 : chl 376 }

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