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

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