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

Annotation of /branches/dev-api-4/xvidcore/examples/xvid_encraw.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 942 - (view) (download)

1 : edgomez 558 /*****************************************************************************
2 : chl 376 *
3 : edgomez 558 * XVID MPEG-4 VIDEO CODEC
4 :     * - Console based test application -
5 : chl 376 *
6 : edgomez 851 * Copyright(C) 2002-2003 Christoph Lampert
7 : chl 376 *
8 : edgomez 558 * This program is free software; you can redistribute it and/or modify
9 :     * it under the terms of the GNU General Public License as published by
10 :     * the Free Software Foundation; either version 2 of the License, or
11 :     * (at your option) any later version.
12 : chl 376 *
13 : edgomez 558 * This program is distributed in the hope that it will be useful,
14 :     * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 :     * GNU General Public License for more details.
17 : chl 376 *
18 : edgomez 558 * You should have received a copy of the GNU General Public License
19 :     * along with this program; if not, write to the Free Software
20 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 :     *
22 : suxen_drol 942 * $Id: xvid_encraw.c,v 1.11.2.12 2003-03-25 11:01:48 suxen_drol Exp $
23 : edgomez 558 *
24 :     ****************************************************************************/
25 : chl 376
26 : edgomez 558 /*****************************************************************************
27 :     * Application notes :
28 : chl 376 *
29 : edgomez 918 * A sequence of raw YUV I420 pics or YUV I420 PGM file format is encoded
30 :     * The speed is measured and frames' PSNR are taken from core.
31 : chl 376 *
32 :     * The program is plain C and needs no libraries except for libxvidcore,
33 : edgomez 558 * and maths-lib.
34 : chl 376 *
35 :     ************************************************************************/
36 :    
37 :     #include <stdio.h>
38 :     #include <stdlib.h>
39 : edgomez 566 #include <string.h>
40 : edgomez 558 #include <math.h>
41 : edgomez 851 #ifndef WIN32
42 : edgomez 558 #include <sys/time.h>
43 :     #else
44 :     #include <time.h>
45 :     #endif
46 : chl 376
47 : edgomez 558 #include "xvid.h"
48 : chl 376
49 : suxen_drol 920
50 : edgomez 558 /*****************************************************************************
51 :     * Quality presets
52 :     ****************************************************************************/
53 : chl 376
54 : edgomez 909 static xvid_motion_t const motion_presets[] = {
55 :     0,
56 :     PMV_HALFPELREFINE16,
57 :     PMV_HALFPELREFINE16,
58 :     PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8,
59 :     PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16,
60 : edgomez 913 PMV_HALFPELREFINE16 | PMV_HALFPELREFINE8 | PMV_EXTSEARCH16 | PMV_USESQUARES16 | PMV_CHROMA16 | PMV_CHROMA8,
61 : edgomez 558 };
62 :    
63 : edgomez 909 static xvid_vol_t const vol_presets[] = {
64 :     XVID_MPEGQUANT,
65 :     0,
66 :     0,
67 :     XVID_QUARTERPEL,
68 :     XVID_QUARTERPEL | XVID_GMC,
69 : edgomez 932 0
70 : edgomez 558 };
71 : chl 376
72 : edgomez 909 static xvid_vop_t const vop_presets[] = {
73 :     XVID_DYNAMIC_BFRAMES,
74 :     XVID_DYNAMIC_BFRAMES,
75 :     XVID_DYNAMIC_BFRAMES | XVID_HALFPEL,
76 :     XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_INTER4V,
77 :     XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_INTER4V | XVID_HQACPRED,
78 : edgomez 932 XVID_DYNAMIC_BFRAMES | XVID_HALFPEL | XVID_HQACPRED | XVID_MODEDECISION_BITS
79 : edgomez 909 };
80 :    
81 : edgomez 558 /*****************************************************************************
82 :     * Command line global variables
83 :     ****************************************************************************/
84 : chl 376
85 : edgomez 558 /* Maximum number of frames to encode */
86 :     #define ABS_MAXFRAMENR 9999
87 : chl 376
88 : edgomez 932 static int ARG_STATS = 0;
89 :     static int ARG_DUMP = 0;
90 :     static int ARG_LUMIMASKING = 0;
91 : suxen_drol 938 static int ARG_BITRATE = 0;
92 :     static char * ARG_PASS1 = 0;
93 : suxen_drol 942 static char * ARG_PASS2 = 0;
94 : edgomez 932 static int ARG_QUANTI = 0;
95 :     static int ARG_QUALITY = 5;
96 : edgomez 558 static float ARG_FRAMERATE = 25.00f;
97 : edgomez 932 static int ARG_MAXFRAMENR = ABS_MAXFRAMENR;
98 : edgomez 558 static char *ARG_INPUTFILE = NULL;
99 : edgomez 932 static int ARG_INPUTTYPE = 0;
100 :     static int ARG_SAVEMPEGSTREAM = 0;
101 : edgomez 558 static char *ARG_OUTPUTFILE = NULL;
102 : edgomez 932 static int XDIM = 0;
103 :     static int YDIM = 0;
104 :     static int ARG_BQRATIO = 150;
105 :     static int ARG_BQOFFSET = 100;
106 :     static int ARG_MAXBFRAMES = 0;
107 :     static int ARG_PACKED = 0;
108 :     static int ARG_DEBUG = 0;
109 :    
110 : edgomez 558 #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
111 : chl 376
112 : edgomez 558 #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )
113 : edgomez 909 #define SMALL_EPS (1e-10)
114 : chl 376
115 : edgomez 558 #define SWAP(a) ( (((a)&0x000000ff)<<24) | (((a)&0x0000ff00)<<8) | \
116 :     (((a)&0x00ff0000)>>8) | (((a)&0xff000000)>>24) )
117 : chl 376
118 : edgomez 558 /****************************************************************************
119 :     * Nasty global vars ;-)
120 :     ***************************************************************************/
121 : chl 376
122 : suxen_drol 920 static int i;
123 : chl 376
124 : edgomez 558 /* the path where to save output */
125 :     static char filepath[256] = "./";
126 : chl 376
127 : edgomez 558 /* Internal structures (handles) for encoding and decoding */
128 :     static void *enc_handle = NULL;
129 :    
130 :     /*****************************************************************************
131 :     * Local prototypes
132 :     ****************************************************************************/
133 :    
134 :     /* Prints program usage message */
135 :     static void usage();
136 :    
137 :     /* Statistical functions */
138 :     static double msecond();
139 :    
140 :     /* PGM related functions */
141 : edgomez 932 static int read_pgmheader(FILE * handle);
142 :     static int read_pgmdata(FILE * handle,
143 :     unsigned char *image);
144 :     static int read_yuvdata(FILE * handle,
145 :     unsigned char *image);
146 : edgomez 558
147 :     /* Encoder related functions */
148 :     static int enc_init(int use_assembler);
149 :     static int enc_stop();
150 : edgomez 932 static int enc_main(unsigned char *image,
151 :     unsigned char *bitstream,
152 :     int *key,
153 : suxen_drol 919 int *stats_type,
154 : edgomez 932 int *stats_quant,
155 :     int *stats_length,
156 : edgomez 913 int stats[3]);
157 : edgomez 558
158 :     /*****************************************************************************
159 :     * Main function
160 :     ****************************************************************************/
161 :    
162 : edgomez 932 int
163 :     main(int argc,
164 :     char *argv[])
165 : edgomez 558 {
166 :    
167 :     unsigned char *mp4_buffer = NULL;
168 :     unsigned char *in_buffer = NULL;
169 :     unsigned char *out_buffer = NULL;
170 :    
171 :     double enctime;
172 : edgomez 932 double totalenctime = 0.;
173 :    
174 : suxen_drol 919 int totalsize;
175 : suxen_drol 920 int result;
176 : suxen_drol 919 int m4v_size;
177 : edgomez 932 int key;
178 : suxen_drol 919 int stats_type;
179 : edgomez 932 int stats_quant;
180 :     int stats_length;
181 :     int use_assembler = 0;
182 : suxen_drol 920
183 : edgomez 932 int input_num;
184 :     int output_num;
185 :    
186 : edgomez 558 char filename[256];
187 : edgomez 932
188 : edgomez 558 FILE *in_file = stdin;
189 :     FILE *out_file = NULL;
190 :    
191 : edgomez 741 printf("xvid_encraw - raw mpeg4 bitstream encoder ");
192 : edgomez 851 printf("written by Christoph Lampert 2002-2003\n\n");
193 : edgomez 558
194 :     /*****************************************************************************
195 :     * Command line parsing
196 :     ****************************************************************************/
197 :    
198 : edgomez 932 for (i = 1; i < argc; i++) {
199 :    
200 :     if (strcmp("-asm", argv[i]) == 0) {
201 : edgomez 558 use_assembler = 1;
202 : edgomez 932 } else if (strcmp("-w", argv[i]) == 0 && i < argc - 1) {
203 : edgomez 558 i++;
204 :     XDIM = atoi(argv[i]);
205 : edgomez 932 } else if (strcmp("-h", argv[i]) == 0 && i < argc - 1) {
206 : edgomez 558 i++;
207 :     YDIM = atoi(argv[i]);
208 : edgomez 932 } else if (strcmp("-bitrate", argv[i]) == 0 && i < argc - 1) {
209 : edgomez 558 i++;
210 :     ARG_BITRATE = atoi(argv[i]);
211 : suxen_drol 938 } else if (strcmp("-pass1", argv[i]) == 0 && i < argc - 1) {
212 :     i++;
213 :     ARG_PASS1 = argv[i];
214 : suxen_drol 942 } else if (strcmp("-pass2", argv[i]) == 0 && i < argc - 2) {
215 :     i++;
216 :     ARG_PASS1 = argv[i];
217 :     i++;
218 :     ARG_PASS2 = argv[i];
219 : edgomez 932 } else if (strcmp("-max_bframes", argv[i]) == 0 && i < argc - 1) {
220 : edgomez 851 i++;
221 :     ARG_MAXBFRAMES = atoi(argv[i]);
222 : edgomez 932 } else if (strcmp("-packed", argv[i]) == 0) {
223 :     ARG_PACKED = 1;
224 :     } else if (strcmp("-bquant_ratio", argv[i]) == 0 && i < argc - 1) {
225 : edgomez 851 i++;
226 :     ARG_BQRATIO = atoi(argv[i]);
227 : edgomez 932 } else if (strcmp("-bquant_offset", argv[i]) == 0 && i < argc - 1) {
228 : edgomez 851 i++;
229 :     ARG_BQOFFSET = atoi(argv[i]);
230 : edgomez 932 } else if (strcmp("-quality", argv[i]) == 0 && i < argc - 1) {
231 : edgomez 558 i++;
232 :     ARG_QUALITY = atoi(argv[i]);
233 : edgomez 932 } else if (strcmp("-framerate", argv[i]) == 0 && i < argc - 1) {
234 : edgomez 558 i++;
235 : edgomez 932 ARG_FRAMERATE = (float) atof(argv[i]);
236 :     } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1) {
237 : edgomez 558 i++;
238 :     ARG_INPUTFILE = argv[i];
239 : edgomez 932 } else if (strcmp("-stats", argv[i]) == 0) {
240 : edgomez 916 ARG_STATS = 1;
241 : edgomez 932 } else if (strcmp("-dump", argv[i]) == 0) {
242 : suxen_drol 920 ARG_DUMP = 1;
243 : edgomez 932 } else if (strcmp("-lumimasking", argv[i]) == 0) {
244 : suxen_drol 926 ARG_LUMIMASKING = 1;
245 : edgomez 932 } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {
246 : edgomez 558 i++;
247 :     ARG_INPUTTYPE = atoi(argv[i]);
248 : edgomez 932 } else if (strcmp("-nframes", argv[i]) == 0 && i < argc - 1) {
249 : edgomez 558 i++;
250 : edgomez 932 ARG_MAXFRAMENR = atoi(argv[i]);
251 :     } else if (strcmp("-quant", argv[i]) == 0 && i < argc - 1) {
252 : edgomez 558 i++;
253 :     ARG_QUANTI = atoi(argv[i]);
254 : edgomez 932 } else if (strcmp("-save", argv[i]) == 0) {
255 : edgomez 916 ARG_SAVEMPEGSTREAM = 1;
256 : edgomez 932 } else if (strcmp("-debug", argv[i]) == 0) {
257 :     ARG_DEBUG = 1;
258 :     } else if (strcmp("-o", argv[i]) == 0 && i < argc - 1) {
259 : edgomez 558 i++;
260 :     ARG_OUTPUTFILE = argv[i];
261 : edgomez 932 } else if (strcmp("-help", argv[i])) {
262 : edgomez 558 usage();
263 : edgomez 932 return (0);
264 :     } else {
265 : edgomez 558 usage();
266 :     exit(-1);
267 :     }
268 : edgomez 932
269 : edgomez 558 }
270 : edgomez 932
271 : edgomez 558 /*****************************************************************************
272 :     * Arguments checking
273 :     ****************************************************************************/
274 :    
275 : edgomez 932 if (XDIM <= 0 || XDIM >= 2048 || YDIM <= 0 || YDIM >= 2048) {
276 :     fprintf(stderr,
277 :     "Trying to retreive width and height from PGM header\n");
278 :     ARG_INPUTTYPE = 1; /* pgm */
279 : edgomez 558 }
280 : edgomez 932
281 :     if (ARG_QUALITY < 0 || ARG_QUALITY > 5) {
282 :     fprintf(stderr, "Wrong Quality\n");
283 :     return (-1);
284 : edgomez 558 }
285 :    
286 : edgomez 932 if (ARG_FRAMERATE <= 0) {
287 :     fprintf(stderr, "Wrong Framerate %s \n", argv[5]);
288 :     return (-1);
289 : edgomez 558 }
290 :    
291 : edgomez 932 if (ARG_MAXFRAMENR <= 0) {
292 :     fprintf(stderr, "Wrong number of frames\n");
293 :     return (-1);
294 : edgomez 558 }
295 :    
296 : edgomez 932 if (ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
297 : edgomez 558 in_file = stdin;
298 : edgomez 932 } else {
299 : edgomez 558
300 :     in_file = fopen(ARG_INPUTFILE, "rb");
301 :     if (in_file == NULL) {
302 :     fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
303 : edgomez 932 return (-1);
304 : edgomez 558 }
305 :     }
306 :    
307 :     if (ARG_INPUTTYPE) {
308 :     if (read_pgmheader(in_file)) {
309 : edgomez 932 fprintf(stderr,
310 :     "Wrong input format, I want YUV encapsulated in PGM\n");
311 :     return (-1);
312 : edgomez 558 }
313 :     }
314 :    
315 :     /* now we know the sizes, so allocate memory */
316 : edgomez 932 in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM, YDIM));
317 : edgomez 558 if (!in_buffer)
318 :     goto free_all_memory;
319 :    
320 :     /* this should really be enough memory ! */
321 : edgomez 932 mp4_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM, YDIM) * 2);
322 : edgomez 558 if (!mp4_buffer)
323 : edgomez 932 goto free_all_memory;
324 : edgomez 558
325 :     /*****************************************************************************
326 :     * XviD PART Start
327 :     ****************************************************************************/
328 :    
329 :    
330 : suxen_drol 920 result = enc_init(use_assembler);
331 : edgomez 932 if (result) {
332 : suxen_drol 920 fprintf(stderr, "Encore INIT problem, return value %d\n", result);
333 : edgomez 558 goto release_all;
334 :     }
335 :    
336 :     /*****************************************************************************
337 :     * Main loop
338 :     ****************************************************************************/
339 :    
340 : edgomez 851 if (ARG_SAVEMPEGSTREAM && ARG_OUTPUTFILE) {
341 : edgomez 561
342 : edgomez 932 if ((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {
343 : edgomez 558 fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);
344 :     goto release_all;
345 :     }
346 :    
347 : edgomez 932 } else {
348 : edgomez 558 out_file = NULL;
349 :     }
350 :    
351 :     /*****************************************************************************
352 :     * Encoding loop
353 :     ****************************************************************************/
354 :    
355 :     totalsize = 0;
356 :    
357 : edgomez 932 result = 0;
358 : suxen_drol 920
359 : edgomez 932 input_num = 0; /* input frame counter */
360 :     output_num = 0; /* output frame counter */
361 : suxen_drol 920
362 : edgomez 558 do {
363 :    
364 : edgomez 913 char *type;
365 : edgomez 932 int sse[3];
366 : edgomez 913
367 : edgomez 932 if (input_num >= ARG_MAXFRAMENR) {
368 :     result = 1;
369 :     }
370 : edgomez 558
371 : edgomez 932 if (!result) {
372 :     if (ARG_INPUTTYPE) {
373 :     /* read PGM data (YUV-format) */
374 :     result = read_pgmdata(in_file, in_buffer);
375 :     } else {
376 :     /* read raw data (YUV-format) */
377 :     result = read_yuvdata(in_file, in_buffer);
378 :     }
379 :     }
380 : suxen_drol 920
381 : edgomez 558 /*****************************************************************************
382 :     * Encode and decode this frame
383 :     ****************************************************************************/
384 :    
385 :     enctime = msecond();
386 : edgomez 932 m4v_size =
387 :     enc_main(!result ? in_buffer : 0, mp4_buffer, &key, &stats_type,
388 :     &stats_quant, &stats_length, sse);
389 : edgomez 558 enctime = msecond() - enctime;
390 :    
391 : edgomez 913 /* Write the Frame statistics */
392 : edgomez 932
393 : suxen_drol 938 printf("%5d: key=%i, time=%6.0f, length=%7d",
394 : edgomez 932 !result ? input_num : -1,
395 : suxen_drol 919 key,
396 : edgomez 932 (float) enctime,
397 :     (int) m4v_size);
398 : edgomez 851
399 : edgomez 932 if (stats_type > 0) { /* !XVID_TYPE_NOTHING */
400 : suxen_drol 919
401 : edgomez 932 switch (stats_type) {
402 :     case XVID_TYPE_IVOP:
403 :     type = "I";
404 :     break;
405 :     case XVID_TYPE_PVOP:
406 :     type = "P";
407 :     break;
408 :     case XVID_TYPE_BVOP:
409 :     type = "B";
410 :     break;
411 :     case XVID_TYPE_SVOP:
412 :     type = "S";
413 :     break;
414 :     default:
415 :     type = "U";
416 :     break;
417 :     }
418 : suxen_drol 919
419 : edgomez 932 printf(" | type=%s, quant=%2d, length=%7d", type, stats_quant,
420 :     stats_length);
421 : suxen_drol 923
422 : edgomez 932 #define SSE2PSNR(sse, width, height) ((!(sse))?0.0f : 48.131f - 10*(float)log10((float)(sse)/((float)((width)*(height)))))
423 : suxen_drol 923
424 : edgomez 932 if (ARG_STATS) {
425 :     printf(", psnr y = %2.2f, psnr u = %2.2f, psnr v = %2.2f",
426 :     SSE2PSNR(sse[0], XDIM, YDIM),
427 :     SSE2PSNR(sse[1], XDIM/2, YDIM/2),
428 :     SSE2PSNR(sse[2], XDIM/2, YDIM/2));
429 :     }
430 :    
431 : edgomez 916 }
432 :    
433 : edgomez 932 #undef SSE2PSNR
434 :    
435 : edgomez 916 printf("\n");
436 :    
437 : edgomez 932 if (m4v_size < 0) {
438 :     break;
439 :     }
440 : suxen_drol 919
441 : edgomez 851 /* Update encoding time stats */
442 : edgomez 558 totalenctime += enctime;
443 :     totalsize += m4v_size;
444 :    
445 : edgomez 728 /*****************************************************************************
446 :     * Save stream to file
447 :     ****************************************************************************/
448 :    
449 : edgomez 932 if (m4v_size > 0 && ARG_SAVEMPEGSTREAM) {
450 : edgomez 558 /* Save single files */
451 :     if (out_file == NULL) {
452 : suxen_drol 920 sprintf(filename, "%sframe%05d.m4v", filepath, output_num);
453 : edgomez 558 out_file = fopen(filename, "wb");
454 :     fwrite(mp4_buffer, m4v_size, 1, out_file);
455 :     fclose(out_file);
456 :     out_file = NULL;
457 : edgomez 932 output_num++;
458 :     } else {
459 : edgomez 558
460 :     /* Write mp4 data */
461 : edgomez 851 fwrite(mp4_buffer, 1, m4v_size, out_file);
462 : edgomez 558
463 :     }
464 :     }
465 :    
466 : suxen_drol 920 input_num++;
467 : edgomez 918
468 : edgomez 932 /* Read the header if it's pgm stream */
469 :     if (!result && ARG_INPUTTYPE)
470 : suxen_drol 920 result = read_pgmheader(in_file);
471 : edgomez 558
472 : suxen_drol 920 } while (1);
473 : edgomez 558
474 : edgomez 932
475 :    
476 : edgomez 558 /*****************************************************************************
477 :     * Calculate totals and averages for output, print results
478 :     ****************************************************************************/
479 : chl 376
480 : suxen_drol 926 printf("Tot: enctime(ms) =%7.2f, length(bytes) = %7d\n",
481 : edgomez 932 totalenctime, (int) totalsize);
482 : suxen_drol 926
483 : edgomez 932 if (input_num > 0) {
484 :     totalsize /= input_num;
485 :     totalenctime /= input_num;
486 :     } else {
487 :     totalsize = -1;
488 :     totalenctime = -1;
489 :     }
490 : chl 376
491 : edgomez 851 printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d\n",
492 : edgomez 932 totalenctime, 1000 / totalenctime, (int) totalsize);
493 : chl 376
494 : edgomez 913
495 : edgomez 558 /*****************************************************************************
496 :     * XviD PART Stop
497 :     ****************************************************************************/
498 : chl 376
499 : edgomez 932 release_all:
500 : chl 376
501 : edgomez 932 if (enc_handle) {
502 : suxen_drol 920 result = enc_stop();
503 : edgomez 932 if (result)
504 :     fprintf(stderr, "Encore RELEASE problem return value %d\n",
505 :     result);
506 : edgomez 558 }
507 : chl 376
508 : edgomez 932 if (in_file)
509 : edgomez 728 fclose(in_file);
510 : edgomez 932 if (out_file)
511 : edgomez 558 fclose(out_file);
512 :    
513 : edgomez 932 free_all_memory:
514 : edgomez 558 free(out_buffer);
515 :     free(mp4_buffer);
516 :     free(in_buffer);
517 :    
518 : edgomez 932 return (0);
519 : edgomez 558
520 :     }
521 :    
522 :    
523 :     /*****************************************************************************
524 :     * "statistical" functions
525 :     *
526 :     * these are not needed for encoding or decoding, but for measuring
527 :     * time and quality, there in nothing specific to XviD in these
528 :     *
529 :     *****************************************************************************/
530 :    
531 :     /* Return time elapsed time in miliseconds since the program started */
532 : edgomez 932 static double
533 :     msecond()
534 :     {
535 : edgomez 824 #ifndef WIN32
536 : edgomez 932 struct timeval tv;
537 :    
538 : chl 376 gettimeofday(&tv, 0);
539 : edgomez 932 return (tv.tv_sec * 1.0e3 + tv.tv_usec * 1.0e-3);
540 : edgomez 558 #else
541 :     clock_t clk;
542 : edgomez 932
543 : edgomez 558 clk = clock();
544 : edgomez 932 return (clk * 1000 / CLOCKS_PER_SEC);
545 : edgomez 558 #endif
546 : chl 376 }
547 :    
548 : edgomez 558 /*****************************************************************************
549 :     * Usage message
550 :     *****************************************************************************/
551 : chl 376
552 : edgomez 932 static void
553 :     usage()
554 : edgomez 558 {
555 : edgomez 932 fprintf(stderr, "Usage : xvid_stat [OPTIONS]\n\n");
556 :     fprintf(stderr, "Input options:\n");
557 :     fprintf(stderr, " -i string : input filename (default=stdin)\n");
558 :     fprintf(stderr, " -type integer: input data type (yuv=0, pgm=1)\n");
559 :     fprintf(stderr, " -w integer: frame width ([1.2048])\n");
560 :     fprintf(stderr, " -h integer: frame height ([1.2048])\n");
561 :     fprintf(stderr, " -nframes integer: number of frames to encode\n");
562 :     fprintf(stderr, "\n");
563 :     fprintf(stderr, "Output options:\n");
564 :     fprintf(stderr, " -dump : save decoder output\n");
565 :     fprintf(stderr, " -save : save mpeg4 raw stream\n");
566 :     fprintf(stderr, " -o string: output filename\n");
567 :     fprintf(stderr, "\n");
568 :     fprintf(stderr, "Bitrate options:\n");
569 :     fprintf(stderr, " -bitrate integer: target bitrate (>0 | default=900kbit)\n");
570 :     fprintf(stderr, " -quant integer: fixed quantizer (disables -b setting)\n");
571 :     fprintf(stderr, " -max_bframes integer: max bframes (default=0)\n");
572 :     fprintf(stderr, " -bquant_ratio integer: bframe quantizer ratio (default=150)\n");
573 :     fprintf(stderr, " -bquant_offset integer: bframe quantizer offset (default=100)\n");
574 :     fprintf(stderr, " -framerate float : target framerate (>0)\n");
575 : suxen_drol 942 fprintf(stderr, " -pass1 filename : stats filename\n");
576 :     fprintf(stderr, " -pass2 filename1 filename2 : stats amd scaled-stats filename\n");
577 : edgomez 932 fprintf(stderr, "\n");
578 :     fprintf(stderr, "Other options\n");
579 :     fprintf(stderr, " -asm : use assembly optmized code\n");
580 :     fprintf(stderr, " -quality integer: quality ([0..5])\n");
581 :     fprintf(stderr, " -packed : packed mode\n");
582 :     fprintf(stderr, " -lumimasking : use lumimasking algorithm\n");
583 :     fprintf(stderr, " -stats : print stats about encoded frames\n");
584 :     fprintf(stderr, " -debug : print all MB quantizers\n");
585 :     fprintf(stderr, " -help : prints this help message\n");
586 : edgomez 558 }
587 :    
588 :     /*****************************************************************************
589 :     * Input and output functions
590 :     *
591 :     * the are small and simple routines to read and write PGM and YUV
592 :     * image. It's just for convenience, again nothing specific to XviD
593 :     *
594 :     *****************************************************************************/
595 :    
596 : edgomez 932 static int
597 :     read_pgmheader(FILE * handle)
598 :     {
599 :     int bytes, xsize, ysize, depth;
600 : chl 376 char dummy[2];
601 :    
602 : edgomez 932 bytes = fread(dummy, 1, 2, handle);
603 : edgomez 558
604 : edgomez 932 if ((bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5'))
605 :     return (1);
606 :    
607 :     fscanf(handle, "%d %d %d", &xsize, &ysize, &depth);
608 :     if ((xsize > 1440) || (ysize > 2880) || (depth != 255)) {
609 :     fprintf(stderr, "%d %d %d\n", xsize, ysize, depth);
610 :     return (2);
611 : chl 376 }
612 : edgomez 932 if ((XDIM == 0) || (YDIM == 0)) {
613 :     XDIM = xsize;
614 :     YDIM = ysize * 2 / 3;
615 : chl 376 }
616 :    
617 : edgomez 932 return (0);
618 : chl 376 }
619 :    
620 : edgomez 932 static int
621 :     read_pgmdata(FILE * handle,
622 :     unsigned char *image)
623 :     {
624 : edgomez 558 int i;
625 : chl 376 char dummy;
626 : edgomez 932
627 : edgomez 558 unsigned char *y = image;
628 : edgomez 932 unsigned char *u = image + XDIM * YDIM;
629 :     unsigned char *v = image + XDIM * YDIM + XDIM / 2 * YDIM / 2;
630 : chl 376
631 : edgomez 558 /* read Y component of picture */
632 : edgomez 932 fread(y, 1, XDIM * YDIM, handle);
633 :    
634 :     for (i = 0; i < YDIM / 2; i++) {
635 : edgomez 558 /* read U */
636 : edgomez 932 fread(u, 1, XDIM / 2, handle);
637 : edgomez 558
638 :     /* read V */
639 : edgomez 932 fread(v, 1, XDIM / 2, handle);
640 : edgomez 558
641 :     /* Update pointers */
642 : edgomez 932 u += XDIM / 2;
643 :     v += XDIM / 2;
644 : chl 376 }
645 : edgomez 558
646 : edgomez 932 /* I don't know why, but this seems needed */
647 : edgomez 558 fread(&dummy, 1, 1, handle);
648 :    
649 : edgomez 932 return (0);
650 : chl 376 }
651 :    
652 : edgomez 932 static int
653 :     read_yuvdata(FILE * handle,
654 :     unsigned char *image)
655 : edgomez 558 {
656 : edgomez 932
657 :     if (fread(image, 1, IMAGE_SIZE(XDIM, YDIM), handle) !=
658 :     (unsigned int) IMAGE_SIZE(XDIM, YDIM))
659 :     return (1);
660 :     else
661 :     return (0);
662 : chl 376 }
663 :    
664 : edgomez 558 /*****************************************************************************
665 :     * Routines for encoding: init encoder, frame step, release encoder
666 :     ****************************************************************************/
667 : chl 376
668 : suxen_drol 919 /* sample plugin */
669 :    
670 : edgomez 932 int
671 :     rawenc_debug(void *handle,
672 :     int opt,
673 :     void *param1,
674 :     void *param2)
675 : suxen_drol 919 {
676 : edgomez 932 switch (opt) {
677 :     case XVID_PLG_INFO:
678 :     {
679 :     xvid_plg_info_t *info = (xvid_plg_info_t *) param1;
680 : suxen_drol 926
681 : edgomez 932 info->flags = XVID_REQDQUANTS;
682 :     return 0;
683 :     }
684 : suxen_drol 919
685 : edgomez 932 case XVID_PLG_CREATE:
686 :     case XVID_PLG_DESTROY:
687 :     case XVID_PLG_BEFORE:
688 :     return 0;
689 : suxen_drol 926
690 : edgomez 932 case XVID_PLG_AFTER:
691 :     {
692 :     xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
693 :     int i, j;
694 : suxen_drol 919
695 : edgomez 932 printf("---[ frame: %5i quant: %2i length: %6i ]---\n",
696 :     data->frame_num, data->quant, data->length);
697 :     for (j = 0; j < data->mb_height; j++) {
698 :     for (i = 0; i < data->mb_width; i++)
699 :     printf("%2i ", data->dquant[j * data->dquant_stride + i]);
700 :     printf("\n");
701 :     }
702 :    
703 :     return 0;
704 :     }
705 :     }
706 :    
707 :     return XVID_ERR_FAIL;
708 : suxen_drol 919 }
709 :    
710 :    
711 : chl 376 #define FRAMERATE_INCR 1001
712 :    
713 : suxen_drol 938
714 : edgomez 558 /* Initialize encoder for first use, pass all needed parameters to the codec */
715 : edgomez 932 static int
716 :     enc_init(int use_assembler)
717 : edgomez 558 {
718 : chl 376 int xerr;
719 : suxen_drol 938 xvid_plugin_cbr_t cbr;
720 :     xvid_plugin_2pass1_t rc2pass1;
721 : suxen_drol 942 xvid_plugin_2pass2_t rc2pass2;
722 :     xvid_enc_plugin_t plugins[6];
723 : edgomez 932 xvid_gbl_init_t xvid_gbl_init;
724 : edgomez 909 xvid_enc_create_t xvid_enc_create;
725 : chl 376
726 : edgomez 909 /*------------------------------------------------------------------------
727 :     * XviD core initialization
728 :     *----------------------------------------------------------------------*/
729 :    
730 : edgomez 932 /* Set version -- version checking will done by xvidcore */
731 :     memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init));
732 : edgomez 909 xvid_gbl_init.version = XVID_VERSION;
733 : edgomez 932
734 :    
735 : edgomez 909 /* Do we have to enable ASM optimizations ? */
736 : edgomez 932 if (use_assembler) {
737 : chl 376
738 : suxen_drol 860 #ifdef ARCH_IS_IA64
739 : edgomez 909 xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
740 : chl 376 #else
741 : edgomez 909 xvid_gbl_init.cpu_flags = 0;
742 : chl 376 #endif
743 : edgomez 932 } else {
744 : edgomez 909 xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
745 : edgomez 558 }
746 : chl 376
747 : edgomez 909 /* Initialize XviD core -- Should be done once per __process__ */
748 :     xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
749 : chl 376
750 : edgomez 909 /*------------------------------------------------------------------------
751 :     * XviD encoder initialization
752 :     *----------------------------------------------------------------------*/
753 :    
754 :     /* Version again */
755 : edgomez 932 memset(&xvid_enc_create, 0, sizeof(xvid_enc_create));
756 : edgomez 909 xvid_enc_create.version = XVID_VERSION;
757 :    
758 :     /* Width and Height of input frames */
759 :     xvid_enc_create.width = XDIM;
760 :     xvid_enc_create.height = YDIM;
761 :    
762 : edgomez 932 /* init plugins */
763 : suxen_drol 919
764 : edgomez 932 xvid_enc_create.plugins = plugins;
765 :     xvid_enc_create.num_plugins = 0;
766 : suxen_drol 926
767 : suxen_drol 938 if (ARG_BITRATE) {
768 :     cbr.version = XVID_VERSION;
769 :     memset(&cbr, 0, sizeof(xvid_plugin_cbr_t));
770 :     cbr.bitrate = ARG_BITRATE;
771 :    
772 :     plugins[xvid_enc_create.num_plugins].func = xvid_plugin_cbr;
773 :     plugins[xvid_enc_create.num_plugins].param = &cbr;
774 :     xvid_enc_create.num_plugins++;
775 :     }
776 :    
777 : suxen_drol 942 if (ARG_PASS1 && ARG_PASS2) {
778 :     rc2pass2.version = XVID_VERSION;
779 :     memset(&rc2pass2, 0, sizeof(xvid_plugin_2pass2_t));
780 :     rc2pass2.filename1 = ARG_PASS1;
781 :     rc2pass2.filename2 = ARG_PASS2;
782 :    
783 :     plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2;
784 :     plugins[xvid_enc_create.num_plugins].param = &rc2pass2;
785 :     xvid_enc_create.num_plugins++;
786 :     } else if (ARG_PASS1) {
787 : suxen_drol 938 rc2pass1.version = XVID_VERSION;
788 :     memset(&rc2pass1, 0, sizeof(xvid_plugin_2pass1_t));
789 :     rc2pass1.filename = ARG_PASS1;
790 :    
791 :     plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass1;
792 :     plugins[xvid_enc_create.num_plugins].param = &rc2pass1;
793 :     xvid_enc_create.num_plugins++;
794 :     }
795 :    
796 : suxen_drol 942
797 :     if (ARG_LUMIMASKING) {
798 : edgomez 932 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_lumimasking;
799 :     plugins[xvid_enc_create.num_plugins].param = NULL;
800 :     xvid_enc_create.num_plugins++;
801 :     }
802 : suxen_drol 920
803 : edgomez 932 if (ARG_DUMP) {
804 :     plugins[xvid_enc_create.num_plugins].func = xvid_plugin_dump;
805 :     plugins[xvid_enc_create.num_plugins].param = NULL;
806 :     xvid_enc_create.num_plugins++;
807 :     }
808 : suxen_drol 926
809 : edgomez 932 if (ARG_DEBUG) {
810 :     plugins[xvid_enc_create.num_plugins].func = rawenc_debug;
811 :     plugins[xvid_enc_create.num_plugins].param = NULL;
812 :     xvid_enc_create.num_plugins++;
813 :     }
814 :    
815 : edgomez 909 /* No fancy thread tests */
816 :     xvid_enc_create.num_threads = 0;
817 :    
818 :     /* Frame rate - Do some quick float fps = fincr/fbase hack */
819 : edgomez 932 if ((ARG_FRAMERATE - (int) ARG_FRAMERATE) < SMALL_EPS) {
820 : edgomez 909 xvid_enc_create.fincr = 1;
821 : edgomez 932 xvid_enc_create.fbase = (int) ARG_FRAMERATE;
822 : edgomez 909 } else {
823 :     xvid_enc_create.fincr = FRAMERATE_INCR;
824 : edgomez 932 xvid_enc_create.fbase = (int) (FRAMERATE_INCR * ARG_FRAMERATE);
825 : chl 376 }
826 :    
827 : edgomez 909 /* Maximum key frame interval */
828 : edgomez 932 xvid_enc_create.max_key_interval = (int) ARG_FRAMERATE *10;
829 : edgomez 909
830 :     /* Bframes settings */
831 :     xvid_enc_create.max_bframes = ARG_MAXBFRAMES;
832 :     xvid_enc_create.bquant_ratio = ARG_BQRATIO;
833 : edgomez 932 xvid_enc_create.bquant_offset = ARG_BQOFFSET;
834 : edgomez 909
835 :     /* Dropping ratio frame -- we don't need that */
836 :     xvid_enc_create.frame_drop_ratio = 0;
837 :    
838 :     /* Global encoder options */
839 : suxen_drol 919 xvid_enc_create.global = 0;
840 : edgomez 932 if (ARG_PACKED) xvid_enc_create.global |=XVID_PACKED;
841 :     if (ARG_STATS) xvid_enc_create.global |=XVID_EXTRASTATS_ENABLE;
842 : edgomez 909
843 : edgomez 558 /* I use a small value here, since will not encode whole movies, but short clips */
844 : edgomez 909 xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
845 : chl 376
846 : edgomez 909 /* Retrieve the encoder instance from the structure */
847 :     enc_handle = xvid_enc_create.handle;
848 : chl 376
849 : edgomez 932 return (xerr);
850 : chl 376 }
851 :    
852 : edgomez 932 static int
853 :     enc_stop()
854 : edgomez 558 {
855 :     int xerr;
856 : chl 376
857 : edgomez 909 /* Destroy the encoder instance */
858 : chl 376 xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);
859 : edgomez 558
860 : edgomez 932 return (xerr);
861 : chl 376 }
862 :    
863 : edgomez 932 static int
864 :     enc_main(unsigned char *image,
865 :     unsigned char *bitstream,
866 :     int *key,
867 :     int *stats_type,
868 :     int *stats_quant,
869 :     int *stats_length,
870 :     int sse[3])
871 : edgomez 558 {
872 : edgomez 909 int ret;
873 : chl 376
874 : edgomez 909 xvid_enc_frame_t xvid_enc_frame;
875 : suxen_drol 919 xvid_enc_stats_t xvid_enc_stats;
876 : chl 376
877 : edgomez 909 /* Version for the frame and the stats */
878 : edgomez 932 memset(&xvid_enc_frame, 0, sizeof(xvid_enc_frame));
879 : edgomez 909 xvid_enc_frame.version = XVID_VERSION;
880 : edgomez 932
881 :     memset(&xvid_enc_stats, 0, sizeof(xvid_enc_stats));
882 : suxen_drol 919 xvid_enc_stats.version = XVID_VERSION;
883 : edgomez 932
884 : edgomez 909 /* Bind output buffer */
885 :     xvid_enc_frame.bitstream = bitstream;
886 :     xvid_enc_frame.length = -1;
887 : chl 376
888 : edgomez 909 /* Initialize input image fields */
889 : edgomez 932 if (image) {
890 :     xvid_enc_frame.input.plane[0] = image;
891 :     xvid_enc_frame.input.csp = XVID_CSP_I420;
892 :     xvid_enc_frame.input.stride[0] = XDIM;
893 :     } else {
894 :     xvid_enc_frame.input.csp = XVID_CSP_NULL;
895 :     }
896 : chl 376
897 : edgomez 909 /* Set up core's general features */
898 :     xvid_enc_frame.vol_flags = vol_presets[ARG_QUALITY];
899 : edgomez 932 if (ARG_STATS)
900 :     xvid_enc_frame.vol_flags |= XVID_EXTRASTATS;
901 : chl 376
902 : edgomez 909 /* Set up core's general features */
903 :     xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];
904 : edgomez 728
905 : edgomez 909 /* Frame type -- let core decide for us */
906 : edgomez 932 xvid_enc_frame.type = XVID_TYPE_AUTO;
907 : edgomez 728
908 : edgomez 909 /* Force the right quantizer */
909 : edgomez 932 xvid_enc_frame.quant = ARG_QUANTI;
910 :    
911 : edgomez 909 /* Set up motion estimation flags */
912 :     xvid_enc_frame.motion = motion_presets[ARG_QUALITY];
913 : edgomez 728
914 : edgomez 909 /* We don't use special matrices */
915 :     xvid_enc_frame.quant_intra_matrix = NULL;
916 :     xvid_enc_frame.quant_inter_matrix = NULL;
917 : chl 376
918 : edgomez 913 /* Encode the frame */
919 : edgomez 932 ret =
920 :     xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame,
921 :     &xvid_enc_stats);
922 : edgomez 728
923 : edgomez 932 *key = (xvid_enc_frame.out_flags & XVID_KEYFRAME);
924 : suxen_drol 919 *stats_type = xvid_enc_stats.type;
925 : edgomez 932 *stats_quant = xvid_enc_stats.quant;
926 :     *stats_length = xvid_enc_stats.length;
927 :     sse[0] = xvid_enc_stats.sse_y;
928 :     sse[1] = xvid_enc_stats.sse_u;
929 :     sse[2] = xvid_enc_stats.sse_v;
930 : chl 376
931 : edgomez 932 return (ret);
932 : chl 376 }

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