[cvs] / xvidcore / examples / xvid_encraw.c Repository:
ViewVC logotype

Annotation of /xvidcore/examples/xvid_encraw.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11.2.19 - (view) (download)

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

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