Parent Directory
|
Revision Log
Revision 1637 - (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 : | suxen_drol | 1637 | * $Id: xvid_decraw.c,v 1.21 2005-09-20 11:19:34 suxen_drol 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 | 1423 | #define USE_PNM 0 |
58 : | #define USE_TGA 1 | ||
59 : | |||
60 : | edgomez | 547 | static int XDIM = 0; |
61 : | static int YDIM = 0; | ||
62 : | static int ARG_SAVEDECOUTPUT = 0; | ||
63 : | static int ARG_SAVEMPEGSTREAM = 0; | ||
64 : | static char *ARG_INPUTFILE = NULL; | ||
65 : | edgomez | 1423 | static int CSP = XVID_CSP_I420; |
66 : | static int BPP = 1; | ||
67 : | static int FORMAT = USE_PNM; | ||
68 : | chl | 376 | |
69 : | edgomez | 547 | static char filepath[256] = "./"; |
70 : | static void *dec_handle = NULL; | ||
71 : | chl | 376 | |
72 : | edgomez | 1382 | #define BUFFER_SIZE (2*1024*1024) |
73 : | chl | 376 | |
74 : | edgomez | 1547 | static const int display_buffer_bytes = 0; |
75 : | |||
76 : | suxen_drol | 1637 | #define MIN_USEFUL_BYTES 1 |
77 : | |||
78 : | edgomez | 547 | /***************************************************************************** |
79 : | * Local prototypes | ||
80 : | ****************************************************************************/ | ||
81 : | chl | 376 | |
82 : | edgomez | 547 | static double msecond(); |
83 : | suxen_drol | 1416 | static int dec_init(int use_assembler, int debug_level); |
84 : | edgomez | 547 | static int dec_main(unsigned char *istream, |
85 : | edgomez | 851 | unsigned char *ostream, |
86 : | int istream_size, | ||
87 : | edgomez | 1382 | xvid_dec_stats_t *xvid_dec_stats); |
88 : | edgomez | 547 | static int dec_stop(); |
89 : | static void usage(); | ||
90 : | edgomez | 1442 | 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 : | edgomez | 547 | |
94 : | edgomez | 1382 | const char * type2str(int type) |
95 : | { | ||
96 : | if (type==XVID_TYPE_IVOP) | ||
97 : | return "I"; | ||
98 : | if (type==XVID_TYPE_PVOP) | ||
99 : | return "P"; | ||
100 : | if (type==XVID_TYPE_BVOP) | ||
101 : | return "B"; | ||
102 : | return "S"; | ||
103 : | } | ||
104 : | |||
105 : | edgomez | 547 | /***************************************************************************** |
106 : | * Main program | ||
107 : | ****************************************************************************/ | ||
108 : | |||
109 : | int main(int argc, char *argv[]) | ||
110 : | chl | 376 | { |
111 : | edgomez | 547 | unsigned char *mp4_buffer = NULL; |
112 : | unsigned char *mp4_ptr = NULL; | ||
113 : | unsigned char *out_buffer = NULL; | ||
114 : | edgomez | 1382 | int useful_bytes; |
115 : | edgomez | 1547 | int chunk; |
116 : | edgomez | 1382 | xvid_dec_stats_t xvid_dec_stats; |
117 : | edgomez | 851 | |
118 : | edgomez | 547 | double totaldectime; |
119 : | |||
120 : | long totalsize; | ||
121 : | int status; | ||
122 : | |||
123 : | int use_assembler = 0; | ||
124 : | suxen_drol | 1416 | int debug_level = 0; |
125 : | edgomez | 547 | |
126 : | char filename[256]; | ||
127 : | |||
128 : | FILE *in_file; | ||
129 : | int filenr; | ||
130 : | int i; | ||
131 : | |||
132 : | printf("xvid_decraw - raw mpeg4 bitstream decoder "); | ||
133 : | edgomez | 851 | printf("written by Christoph Lampert 2002-2003\n\n"); |
134 : | edgomez | 547 | |
135 : | /***************************************************************************** | ||
136 : | * Command line parsing | ||
137 : | ****************************************************************************/ | ||
138 : | |||
139 : | for (i=1; i< argc; i++) { | ||
140 : | |||
141 : | if (strcmp("-asm", argv[i]) == 0 ) { | ||
142 : | use_assembler = 1; | ||
143 : | suxen_drol | 1416 | } 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 : | edgomez | 1382 | } else if (strcmp("-d", argv[i]) == 0) { |
149 : | ARG_SAVEDECOUTPUT = 1; | ||
150 : | } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1 ) { | ||
151 : | edgomez | 547 | i++; |
152 : | ARG_INPUTFILE = argv[i]; | ||
153 : | edgomez | 1382 | } else if (strcmp("-m", argv[i]) == 0) { |
154 : | ARG_SAVEMPEGSTREAM = 1; | ||
155 : | edgomez | 1423 | } 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 : | edgomez | 1382 | } else if (strcmp("-help", argv[i]) == 0) { |
181 : | edgomez | 547 | usage(); |
182 : | return(0); | ||
183 : | edgomez | 1382 | } else { |
184 : | edgomez | 547 | usage(); |
185 : | exit(-1); | ||
186 : | } | ||
187 : | chl | 376 | } |
188 : | edgomez | 1432 | |
189 : | suxen_drol | 1426 | #if defined(_MSC_VER) |
190 : | if (ARG_INPUTFILE==NULL) { | ||
191 : | edgomez | 1432 | fprintf(stderr, "Warning: MSVC build does not read EOF correctly from stdin. Use the -i switch.\n\n"); |
192 : | suxen_drol | 1426 | } |
193 : | #endif | ||
194 : | edgomez | 1432 | |
195 : | edgomez | 547 | /***************************************************************************** |
196 : | * Values checking | ||
197 : | ****************************************************************************/ | ||
198 : | |||
199 : | if ( ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) { | ||
200 : | in_file = stdin; | ||
201 : | } | ||
202 : | else { | ||
203 : | |||
204 : | in_file = fopen(ARG_INPUTFILE, "rb"); | ||
205 : | if (in_file == NULL) { | ||
206 : | fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE); | ||
207 : | edgomez | 1382 | return(-1); |
208 : | edgomez | 547 | } |
209 : | } | ||
210 : | |||
211 : | edgomez | 1423 | /* 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 : | edgomez | 547 | /***************************************************************************** |
217 : | * Memory allocation | ||
218 : | ****************************************************************************/ | ||
219 : | |||
220 : | /* Memory for encoded mp4 stream */ | ||
221 : | mp4_buffer = (unsigned char *) malloc(BUFFER_SIZE); | ||
222 : | mp4_ptr = mp4_buffer; | ||
223 : | if (!mp4_buffer) | ||
224 : | goto free_all_memory; | ||
225 : | |||
226 : | /***************************************************************************** | ||
227 : | * XviD PART Start | ||
228 : | ****************************************************************************/ | ||
229 : | |||
230 : | suxen_drol | 1416 | status = dec_init(use_assembler, debug_level); |
231 : | edgomez | 547 | if (status) { |
232 : | fprintf(stderr, | ||
233 : | edgomez | 1382 | "Decore INIT problem, return value %d\n", status); |
234 : | edgomez | 547 | goto release_all; |
235 : | } | ||
236 : | |||
237 : | |||
238 : | /***************************************************************************** | ||
239 : | * Main loop | ||
240 : | ****************************************************************************/ | ||
241 : | |||
242 : | edgomez | 851 | /* Fill the buffer */ |
243 : | edgomez | 1382 | useful_bytes = fread(mp4_buffer, 1, BUFFER_SIZE, in_file); |
244 : | edgomez | 559 | |
245 : | edgomez | 547 | totaldectime = 0; |
246 : | totalsize = 0; | ||
247 : | filenr = 0; | ||
248 : | mp4_ptr = mp4_buffer; | ||
249 : | edgomez | 1547 | chunk = 0; |
250 : | |||
251 : | edgomez | 547 | do { |
252 : | int used_bytes = 0; | ||
253 : | double dectime; | ||
254 : | |||
255 : | edgomez | 851 | /* |
256 : | * If the buffer is half empty or there are no more bytes in it | ||
257 : | * then fill it. | ||
258 : | */ | ||
259 : | edgomez | 1382 | if (mp4_ptr > mp4_buffer + BUFFER_SIZE/2) { |
260 : | int already_in_buffer = (mp4_buffer + BUFFER_SIZE - mp4_ptr); | ||
261 : | edgomez | 547 | |
262 : | edgomez | 851 | /* Move data if needed */ |
263 : | edgomez | 1382 | if (already_in_buffer > 0) |
264 : | memcpy(mp4_buffer, mp4_ptr, already_in_buffer); | ||
265 : | edgomez | 547 | |
266 : | edgomez | 851 | /* Update mp4_ptr */ |
267 : | mp4_ptr = mp4_buffer; | ||
268 : | edgomez | 547 | |
269 : | edgomez | 851 | /* read new data */ |
270 : | edgomez | 1382 | if(feof(in_file)) |
271 : | edgomez | 547 | break; |
272 : | |||
273 : | edgomez | 1382 | useful_bytes += fread(mp4_buffer + already_in_buffer, |
274 : | 1, BUFFER_SIZE - already_in_buffer, | ||
275 : | in_file); | ||
276 : | edgomez | 547 | |
277 : | } | ||
278 : | |||
279 : | |||
280 : | edgomez | 1382 | /* This loop is needed to handle VOL/NVOP reading */ |
281 : | edgomez | 851 | do { |
282 : | edgomez | 547 | |
283 : | edgomez | 851 | /* Decode frame */ |
284 : | dectime = msecond(); | ||
285 : | edgomez | 1382 | used_bytes = dec_main(mp4_ptr, out_buffer, useful_bytes, &xvid_dec_stats); |
286 : | edgomez | 851 | dectime = msecond() - dectime; |
287 : | edgomez | 547 | |
288 : | edgomez | 1382 | /* Resize image buffer if needed */ |
289 : | if(xvid_dec_stats.type == XVID_TYPE_VOL) { | ||
290 : | |||
291 : | /* Check if old buffer is smaller */ | ||
292 : | if(XDIM*YDIM < xvid_dec_stats.data.vol.width*xvid_dec_stats.data.vol.height) { | ||
293 : | |||
294 : | /* Copy new witdh and new height from the vol structure */ | ||
295 : | XDIM = xvid_dec_stats.data.vol.width; | ||
296 : | YDIM = xvid_dec_stats.data.vol.height; | ||
297 : | |||
298 : | /* Free old output buffer*/ | ||
299 : | if(out_buffer) free(out_buffer); | ||
300 : | |||
301 : | /* Allocate the new buffer */ | ||
302 : | out_buffer = (unsigned char*)malloc(XDIM*YDIM*4); | ||
303 : | if(out_buffer == NULL) | ||
304 : | goto free_all_memory; | ||
305 : | |||
306 : | fprintf(stderr, "Resized frame buffer to %dx%d\n", XDIM, YDIM); | ||
307 : | } | ||
308 : | edgomez | 1547 | |
309 : | /* Save individual mpeg4 stream if required */ | ||
310 : | if(ARG_SAVEMPEGSTREAM) { | ||
311 : | FILE *filehandle = NULL; | ||
312 : | |||
313 : | sprintf(filename, "%svolhdr.m4v", filepath); | ||
314 : | filehandle = fopen(filename, "wb"); | ||
315 : | if(!filehandle) { | ||
316 : | fprintf(stderr, | ||
317 : | "Error writing vol header mpeg4 stream to file %s\n", | ||
318 : | filename); | ||
319 : | } else { | ||
320 : | fwrite(mp4_ptr, 1, used_bytes, filehandle); | ||
321 : | fclose(filehandle); | ||
322 : | } | ||
323 : | } | ||
324 : | edgomez | 851 | } |
325 : | edgomez | 547 | |
326 : | edgomez | 851 | /* Update buffer pointers */ |
327 : | edgomez | 1382 | if(used_bytes > 0) { |
328 : | mp4_ptr += used_bytes; | ||
329 : | useful_bytes -= used_bytes; | ||
330 : | edgomez | 559 | |
331 : | edgomez | 1382 | /* Total size */ |
332 : | totalsize += used_bytes; | ||
333 : | } | ||
334 : | edgomez | 547 | |
335 : | edgomez | 1547 | if (display_buffer_bytes) { |
336 : | printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes); | ||
337 : | } | ||
338 : | suxen_drol | 1637 | } while (xvid_dec_stats.type <= 0 && useful_bytes > MIN_USEFUL_BYTES); |
339 : | edgomez | 547 | |
340 : | edgomez | 1382 | /* Check if there is a negative number of useful bytes left in buffer |
341 : | * This means we went too far */ | ||
342 : | if(useful_bytes < 0) | ||
343 : | break; | ||
344 : | edgomez | 851 | |
345 : | edgomez | 1382 | /* Updated data - Count only usefull decode time */ |
346 : | edgomez | 851 | totaldectime += dectime; |
347 : | edgomez | 547 | |
348 : | edgomez | 851 | |
349 : | edgomez | 1547 | if (!display_buffer_bytes) { |
350 : | printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n", | ||
351 : | filenr, type2str(xvid_dec_stats.type), dectime, used_bytes); | ||
352 : | } | ||
353 : | |||
354 : | edgomez | 851 | /* Save individual mpeg4 stream if required */ |
355 : | edgomez | 1382 | if(ARG_SAVEMPEGSTREAM) { |
356 : | edgomez | 547 | FILE *filehandle = NULL; |
357 : | |||
358 : | sprintf(filename, "%sframe%05d.m4v", filepath, filenr); | ||
359 : | filehandle = fopen(filename, "wb"); | ||
360 : | if(!filehandle) { | ||
361 : | fprintf(stderr, | ||
362 : | edgomez | 851 | "Error writing single mpeg4 stream to file %s\n", |
363 : | filename); | ||
364 : | edgomez | 547 | } |
365 : | else { | ||
366 : | edgomez | 1382 | fwrite(mp4_ptr-used_bytes, 1, used_bytes, filehandle); |
367 : | edgomez | 547 | fclose(filehandle); |
368 : | } | ||
369 : | } | ||
370 : | edgomez | 851 | |
371 : | edgomez | 547 | /* Save output frame if required */ |
372 : | if (ARG_SAVEDECOUTPUT) { | ||
373 : | edgomez | 1423 | sprintf(filename, "%sdec%05d", filepath, filenr); |
374 : | if(write_image(filename, out_buffer)) { | ||
375 : | edgomez | 547 | fprintf(stderr, |
376 : | edgomez | 1442 | "Error writing decoded frame %s\n", |
377 : | edgomez | 851 | filename); |
378 : | edgomez | 547 | } |
379 : | } | ||
380 : | |||
381 : | filenr++; | ||
382 : | |||
383 : | suxen_drol | 1637 | } while (useful_bytes>MIN_USEFUL_BYTES || !feof(in_file)); |
384 : | edgomez | 547 | |
385 : | edgomez | 1547 | useful_bytes = 0; /* Empty buffer */ |
386 : | |||
387 : | edgomez | 547 | /***************************************************************************** |
388 : | edgomez | 851 | * Flush decoder buffers |
389 : | ****************************************************************************/ | ||
390 : | |||
391 : | edgomez | 1382 | do { |
392 : | |||
393 : | edgomez | 851 | /* Fake vars */ |
394 : | edgomez | 1382 | int used_bytes; |
395 : | edgomez | 851 | double dectime; |
396 : | |||
397 : | edgomez | 1382 | do { |
398 : | dectime = msecond(); | ||
399 : | used_bytes = dec_main(NULL, out_buffer, -1, &xvid_dec_stats); | ||
400 : | dectime = msecond() - dectime; | ||
401 : | edgomez | 1547 | if (display_buffer_bytes) { |
402 : | printf("Data chunk %d: %d bytes consumed, %d bytes in buffer\n", chunk++, used_bytes, useful_bytes); | ||
403 : | } | ||
404 : | } while(used_bytes>=0 && xvid_dec_stats.type <= 0); | ||
405 : | edgomez | 851 | |
406 : | edgomez | 1382 | if (used_bytes < 0) { /* XVID_ERR_END */ |
407 : | break; | ||
408 : | } | ||
409 : | edgomez | 851 | |
410 : | /* Updated data - Count only usefull decode time */ | ||
411 : | totaldectime += dectime; | ||
412 : | |||
413 : | /* Prints some decoding stats */ | ||
414 : | edgomez | 1547 | if (!display_buffer_bytes) { |
415 : | printf("Frame %5d: type = %s, dectime(ms) =%6.1f, length(bytes) =%7d\n", | ||
416 : | filenr, type2str(xvid_dec_stats.type), dectime, used_bytes); | ||
417 : | } | ||
418 : | |||
419 : | edgomez | 851 | /* Save output frame if required */ |
420 : | if (ARG_SAVEDECOUTPUT) { | ||
421 : | edgomez | 1423 | sprintf(filename, "%sdec%05d", filepath, filenr); |
422 : | if(write_image(filename, out_buffer)) { | ||
423 : | edgomez | 851 | fprintf(stderr, |
424 : | suxen_drol | 1426 | "Error writing decoded frame %s\n", |
425 : | edgomez | 851 | filename); |
426 : | } | ||
427 : | } | ||
428 : | |||
429 : | filenr++; | ||
430 : | |||
431 : | edgomez | 1382 | }while(1); |
432 : | edgomez | 851 | |
433 : | /***************************************************************************** | ||
434 : | edgomez | 547 | * Calculate totals and averages for output, print results |
435 : | ****************************************************************************/ | ||
436 : | |||
437 : | suxen_drol | 1426 | if (filenr>0) { |
438 : | edgomez | 1432 | totalsize /= filenr; |
439 : | suxen_drol | 1426 | totaldectime /= filenr; |
440 : | printf("Avg: dectime(ms) =%7.2f, fps =%7.2f, length(bytes) =%7d\n", | ||
441 : | totaldectime, 1000/totaldectime, (int)totalsize); | ||
442 : | }else{ | ||
443 : | printf("Nothing was decoded!\n"); | ||
444 : | } | ||
445 : | edgomez | 547 | |
446 : | /***************************************************************************** | ||
447 : | * XviD PART Stop | ||
448 : | edgomez | 559 | ****************************************************************************/ |
449 : | edgomez | 547 | |
450 : | release_all: | ||
451 : | if (dec_handle) { | ||
452 : | status = dec_stop(); | ||
453 : | if (status) | ||
454 : | fprintf(stderr, "decore RELEASE problem return value %d\n", status); | ||
455 : | } | ||
456 : | |||
457 : | free_all_memory: | ||
458 : | free(out_buffer); | ||
459 : | free(mp4_buffer); | ||
460 : | |||
461 : | edgomez | 1382 | return(0); |
462 : | chl | 376 | } |
463 : | |||
464 : | edgomez | 547 | /***************************************************************************** |
465 : | * Usage function | ||
466 : | ****************************************************************************/ | ||
467 : | chl | 376 | |
468 : | edgomez | 547 | static void usage() |
469 : | chl | 376 | { |
470 : | edgomez | 547 | |
471 : | edgomez | 1382 | fprintf(stderr, "Usage : xvid_decraw [OPTIONS]\n"); |
472 : | edgomez | 547 | fprintf(stderr, "Options :\n"); |
473 : | fprintf(stderr, " -asm : use assembly optimizations (default=disabled)\n"); | ||
474 : | suxen_drol | 1416 | fprintf(stderr, " -debug : debug level (debug=0)\n"); |
475 : | edgomez | 547 | fprintf(stderr, " -i string : input filename (default=stdin)\n"); |
476 : | edgomez | 1382 | fprintf(stderr, " -d : save decoder output\n"); |
477 : | edgomez | 1423 | fprintf(stderr, " -c csp : choose colorspace output (rgb16, rgb24, rgb32, yv12, i420)\n"); |
478 : | fprintf(stderr, " -f format : choose output file format (tga, pnm, pgm)\n"); | ||
479 : | edgomez | 1382 | fprintf(stderr, " -m : save mpeg4 raw stream to individual files\n"); |
480 : | edgomez | 547 | fprintf(stderr, " -help : This help message\n"); |
481 : | fprintf(stderr, " (* means default)\n"); | ||
482 : | |||
483 : | } | ||
484 : | |||
485 : | /***************************************************************************** | ||
486 : | * "helper" functions | ||
487 : | ****************************************************************************/ | ||
488 : | |||
489 : | /* return the current time in milli seconds */ | ||
490 : | static double | ||
491 : | msecond() | ||
492 : | { | ||
493 : | edgomez | 824 | #ifndef WIN32 |
494 : | edgomez | 547 | struct timeval tv; |
495 : | gettimeofday(&tv, 0); | ||
496 : | edgomez | 1382 | return((double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3); |
497 : | edgomez | 547 | #else |
498 : | clock_t clk; | ||
499 : | clk = clock(); | ||
500 : | edgomez | 1382 | return(clk * 1000 / CLOCKS_PER_SEC); |
501 : | edgomez | 547 | #endif |
502 : | } | ||
503 : | |||
504 : | /***************************************************************************** | ||
505 : | * output functions | ||
506 : | ****************************************************************************/ | ||
507 : | |||
508 : | edgomez | 1442 | static int write_image(char *prefix, unsigned char *image) |
509 : | edgomez | 547 | { |
510 : | edgomez | 1423 | char filename[1024]; |
511 : | char *ext; | ||
512 : | int ret; | ||
513 : | edgomez | 547 | |
514 : | edgomez | 1423 | if (FORMAT == USE_PNM && BPP == 1) { |
515 : | ext = "pgm"; | ||
516 : | } else if (FORMAT == USE_PNM && BPP == 3) { | ||
517 : | ext = "pnm"; | ||
518 : | } else if (FORMAT == USE_TGA) { | ||
519 : | ext = "tga"; | ||
520 : | } else { | ||
521 : | fprintf(stderr, "Bug: should not reach this path code -- please report to xvid-devel@xvid.org with command line options used"); | ||
522 : | exit(-1); | ||
523 : | } | ||
524 : | edgomez | 547 | |
525 : | edgomez | 1423 | sprintf(filename, "%s.%s", prefix, ext); |
526 : | chl | 376 | |
527 : | edgomez | 1423 | if (FORMAT == USE_PNM) { |
528 : | ret = write_pnm(filename, image); | ||
529 : | } else { | ||
530 : | ret = write_tga(filename, image); | ||
531 : | } | ||
532 : | edgomez | 547 | |
533 : | edgomez | 1423 | return(ret); |
534 : | } | ||
535 : | edgomez | 547 | |
536 : | edgomez | 1442 | static int write_tga(char *filename, unsigned char *image) |
537 : | edgomez | 1423 | { |
538 : | FILE * f; | ||
539 : | char hdr[18]; | ||
540 : | edgomez | 547 | |
541 : | edgomez | 1423 | f = fopen(filename, "wb"); |
542 : | if ( f == NULL) { | ||
543 : | return -1; | ||
544 : | } | ||
545 : | edgomez | 547 | |
546 : | edgomez | 1423 | hdr[0] = 0; /* ID length */ |
547 : | hdr[1] = 0; /* Color map type */ | ||
548 : | hdr[2] = (BPP>1)?2:3; /* Uncompressed true color (2) or greymap (3) */ | ||
549 : | hdr[3] = 0; /* Color map specification (not used) */ | ||
550 : | hdr[4] = 0; /* Color map specification (not used) */ | ||
551 : | hdr[5] = 0; /* Color map specification (not used) */ | ||
552 : | hdr[6] = 0; /* Color map specification (not used) */ | ||
553 : | hdr[7] = 0; /* Color map specification (not used) */ | ||
554 : | hdr[8] = 0; /* LSB X origin */ | ||
555 : | hdr[9] = 0; /* MSB X origin */ | ||
556 : | hdr[10] = 0; /* LSB Y origin */ | ||
557 : | hdr[11] = 0; /* MSB Y origin */ | ||
558 : | hdr[12] = (XDIM>>0)&0xff; /* LSB Width */ | ||
559 : | hdr[13] = (XDIM>>8)&0xff; /* MSB Width */ | ||
560 : | if (BPP > 1) { | ||
561 : | hdr[14] = (YDIM>>0)&0xff; /* LSB Height */ | ||
562 : | hdr[15] = (YDIM>>8)&0xff; /* MSB Height */ | ||
563 : | } else { | ||
564 : | hdr[14] = ((YDIM*3)>>1)&0xff; /* LSB Height */ | ||
565 : | hdr[15] = ((YDIM*3)>>9)&0xff; /* MSB Height */ | ||
566 : | } | ||
567 : | hdr[16] = BPP*8; | ||
568 : | hdr[17] = 0x00 | (1<<5) /* Up to down */ | (0<<4); /* Image descriptor */ | ||
569 : | |||
570 : | /* Write header */ | ||
571 : | fwrite(hdr, 1, sizeof(hdr), f); | ||
572 : | edgomez | 547 | |
573 : | edgomez | 1423 | #ifdef ARCH_IS_LITTLE_ENDIAN |
574 : | /* write first plane */ | ||
575 : | fwrite(image, 1, XDIM*YDIM*BPP, f); | ||
576 : | #else | ||
577 : | { | ||
578 : | int i; | ||
579 : | Isibaar | 1627 | for (i=0; i<XDIM*YDIM*BPP;i+=BPP) { |
580 : | edgomez | 1423 | if (BPP == 1) { |
581 : | Isibaar | 1627 | fputc(*(image+i), f); |
582 : | edgomez | 1423 | } else if (BPP == 2) { |
583 : | Isibaar | 1627 | fputc(*(image+i+1), f); |
584 : | fputc(*(image+i+0), f); | ||
585 : | edgomez | 1423 | } else if (BPP == 3) { |
586 : | Isibaar | 1627 | fputc(*(image+i+2), f); |
587 : | fputc(*(image+i+1), f); | ||
588 : | fputc(*(image+i+0), f); | ||
589 : | edgomez | 1423 | } else if (BPP == 4) { |
590 : | Isibaar | 1627 | fputc(*(image+i+3), f); |
591 : | fputc(*(image+i+2), f); | ||
592 : | fputc(*(image+i+1), f); | ||
593 : | fputc(*(image+i+0), f); | ||
594 : | edgomez | 1423 | } |
595 : | edgomez | 547 | } |
596 : | edgomez | 1423 | } |
597 : | #endif | ||
598 : | edgomez | 547 | |
599 : | edgomez | 1423 | /* Write Y and V planes for YUV formats */ |
600 : | if (BPP == 1) { | ||
601 : | int i; | ||
602 : | edgomez | 547 | |
603 : | edgomez | 1423 | /* Write the two chrominance planes */ |
604 : | for (i=0; i<YDIM/2; i++) { | ||
605 : | fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f); | ||
606 : | fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f); | ||
607 : | } | ||
608 : | chl | 376 | } |
609 : | edgomez | 1423 | |
610 : | |||
611 : | /* Close the file */ | ||
612 : | fclose(f); | ||
613 : | |||
614 : | return(0); | ||
615 : | chl | 376 | } |
616 : | |||
617 : | edgomez | 1442 | static int write_pnm(char *filename, unsigned char *image) |
618 : | edgomez | 1423 | { |
619 : | FILE * f; | ||
620 : | |||
621 : | f = fopen(filename, "wb"); | ||
622 : | if ( f == NULL) { | ||
623 : | return -1; | ||
624 : | } | ||
625 : | |||
626 : | if (BPP == 1) { | ||
627 : | int i; | ||
628 : | fprintf(f, "P5\n#xvid\n%i %i\n255\n", XDIM, YDIM*3/2); | ||
629 : | |||
630 : | fwrite(image, 1, XDIM*YDIM, f); | ||
631 : | |||
632 : | for (i=0; i<YDIM/2;i++) { | ||
633 : | fwrite(image+XDIM*YDIM + i*XDIM/2, 1, XDIM/2, f); | ||
634 : | fwrite(image+5*XDIM*YDIM/4 + i*XDIM/2, 1, XDIM/2, f); | ||
635 : | } | ||
636 : | } else if (BPP == 3) { | ||
637 : | int i; | ||
638 : | fprintf(f, "P6\n#xvid\n%i %i\n255\n", XDIM, YDIM); | ||
639 : | for (i=0; i<XDIM*YDIM*3; i+=3) { | ||
640 : | #ifdef ARCH_IS_LITTLE_ENDIAN | ||
641 : | fputc(image[i+2], f); | ||
642 : | fputc(image[i+1], f); | ||
643 : | fputc(image[i+0], f); | ||
644 : | #else | ||
645 : | fputc(image[i+0], f); | ||
646 : | fputc(image[i+1], f); | ||
647 : | fputc(image[i+2], f); | ||
648 : | #endif | ||
649 : | } | ||
650 : | } | ||
651 : | |||
652 : | fclose(f); | ||
653 : | |||
654 : | return 0; | ||
655 : | } | ||
656 : | edgomez | 1442 | |
657 : | edgomez | 547 | /***************************************************************************** |
658 : | * Routines for decoding: init decoder, use, and stop decoder | ||
659 : | ****************************************************************************/ | ||
660 : | chl | 376 | |
661 : | edgomez | 547 | /* init decoder before first run */ |
662 : | static int | ||
663 : | suxen_drol | 1416 | dec_init(int use_assembler, int debug_level) |
664 : | chl | 376 | { |
665 : | edgomez | 1382 | int ret; |
666 : | chl | 376 | |
667 : | edgomez | 1382 | xvid_gbl_init_t xvid_gbl_init; |
668 : | xvid_dec_create_t xvid_dec_create; | ||
669 : | chl | 376 | |
670 : | edgomez | 1501 | /* Reset the structure with zeros */ |
671 : | memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init_t)); | ||
672 : | memset(&xvid_dec_create, 0, sizeof(xvid_dec_create_t)); | ||
673 : | |||
674 : | edgomez | 1382 | /*------------------------------------------------------------------------ |
675 : | * XviD core initialization | ||
676 : | *----------------------------------------------------------------------*/ | ||
677 : | |||
678 : | /* Version */ | ||
679 : | xvid_gbl_init.version = XVID_VERSION; | ||
680 : | |||
681 : | /* Assembly setting */ | ||
682 : | if(use_assembler) | ||
683 : | suxen_drol | 860 | #ifdef ARCH_IS_IA64 |
684 : | edgomez | 1382 | xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64; |
685 : | chl | 376 | #else |
686 : | edgomez | 1382 | xvid_gbl_init.cpu_flags = 0; |
687 : | chl | 376 | #endif |
688 : | edgomez | 1382 | else |
689 : | xvid_gbl_init.cpu_flags = XVID_CPU_FORCE; | ||
690 : | chl | 376 | |
691 : | suxen_drol | 1416 | xvid_gbl_init.debug = debug_level; |
692 : | |||
693 : | edgomez | 1382 | xvid_global(NULL, 0, &xvid_gbl_init, NULL); |
694 : | chl | 376 | |
695 : | edgomez | 1382 | /*------------------------------------------------------------------------ |
696 : | * XviD encoder initialization | ||
697 : | *----------------------------------------------------------------------*/ | ||
698 : | edgomez | 851 | |
699 : | edgomez | 1382 | /* Version */ |
700 : | xvid_dec_create.version = XVID_VERSION; | ||
701 : | chl | 376 | |
702 : | edgomez | 1382 | /* |
703 : | * Image dimensions -- set to 0, xvidcore will resize when ever it is | ||
704 : | * needed | ||
705 : | */ | ||
706 : | xvid_dec_create.width = 0; | ||
707 : | xvid_dec_create.height = 0; | ||
708 : | |||
709 : | ret = xvid_decore(NULL, XVID_DEC_CREATE, &xvid_dec_create, NULL); | ||
710 : | |||
711 : | dec_handle = xvid_dec_create.handle; | ||
712 : | |||
713 : | return(ret); | ||
714 : | chl | 376 | } |
715 : | |||
716 : | edgomez | 547 | /* decode one frame */ |
717 : | static int | ||
718 : | dec_main(unsigned char *istream, | ||
719 : | edgomez | 851 | unsigned char *ostream, |
720 : | int istream_size, | ||
721 : | edgomez | 1382 | xvid_dec_stats_t *xvid_dec_stats) |
722 : | edgomez | 547 | { |
723 : | chl | 376 | |
724 : | edgomez | 1382 | int ret; |
725 : | chl | 376 | |
726 : | edgomez | 1382 | xvid_dec_frame_t xvid_dec_frame; |
727 : | chl | 376 | |
728 : | edgomez | 1523 | /* Reset all structures */ |
729 : | memset(&xvid_dec_frame, 0, sizeof(xvid_dec_frame_t)); | ||
730 : | memset(xvid_dec_stats, 0, sizeof(xvid_dec_stats_t)); | ||
731 : | |||
732 : | edgomez | 1382 | /* Set version */ |
733 : | xvid_dec_frame.version = XVID_VERSION; | ||
734 : | xvid_dec_stats->version = XVID_VERSION; | ||
735 : | chl | 376 | |
736 : | edgomez | 1382 | /* No general flags to set */ |
737 : | xvid_dec_frame.general = 0; | ||
738 : | chl | 376 | |
739 : | edgomez | 1382 | /* Input stream */ |
740 : | xvid_dec_frame.bitstream = istream; | ||
741 : | xvid_dec_frame.length = istream_size; | ||
742 : | edgomez | 851 | |
743 : | edgomez | 1382 | /* Output frame structure */ |
744 : | xvid_dec_frame.output.plane[0] = ostream; | ||
745 : | edgomez | 1423 | xvid_dec_frame.output.stride[0] = XDIM*BPP; |
746 : | xvid_dec_frame.output.csp = CSP; | ||
747 : | edgomez | 1382 | |
748 : | ret = xvid_decore(dec_handle, XVID_DEC_DECODE, &xvid_dec_frame, xvid_dec_stats); | ||
749 : | |||
750 : | return(ret); | ||
751 : | chl | 376 | } |
752 : | |||
753 : | edgomez | 547 | /* close decoder to release resources */ |
754 : | static int | ||
755 : | dec_stop() | ||
756 : | chl | 376 | { |
757 : | edgomez | 1382 | int ret; |
758 : | edgomez | 547 | |
759 : | edgomez | 1382 | ret = xvid_decore(dec_handle, XVID_DEC_DESTROY, NULL, NULL); |
760 : | chl | 376 | |
761 : | edgomez | 1382 | return(ret); |
762 : | chl | 376 | } |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |