[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.14 - (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 : edgomez 1.11.2.14 * $Id: xvid_encraw.c,v 1.11.2.13 2003/03/25 22:53:57 edgomez 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 :     0,
56 : edgomez 1.11.2.14 XVID_ME_HALFPELREFINE16,
57 :     XVID_ME_HALFPELREFINE16,
58 :     XVID_ME_HALFPELREFINE16 | XVID_ME_HALFPELREFINE8,
59 :     XVID_ME_HALFPELREFINE16 | XVID_ME_HALFPELREFINE8 | XVID_ME_EXTSEARCH16 |
60 :     XVID_ME_USESQUARES16,
61 :     XVID_ME_HALFPELREFINE16 | XVID_ME_HALFPELREFINE8 | XVID_ME_EXTSEARCH16 |
62 :     XVID_ME_USESQUARES16 | XVID_ME_CHROMA16 | XVID_ME_CHROMA8,
63 : edgomez 1.2 };
64 :    
65 : edgomez 1.11.2.1 static xvid_vol_t const vol_presets[] = {
66 : edgomez 1.11.2.14 XVID_VOL_MPEGQUANT,
67 : edgomez 1.11.2.1 0,
68 :     0,
69 : edgomez 1.11.2.14 XVID_VOL_QUARTERPEL,
70 :     XVID_VOL_QUARTERPEL | XVID_VOL_GMC,
71 : edgomez 1.11.2.9 0
72 : edgomez 1.11.2.1 };
73 :    
74 :     static xvid_vop_t const vop_presets[] = {
75 : edgomez 1.11.2.14 XVID_VOP_DYNAMIC_BFRAMES,
76 :     XVID_VOP_DYNAMIC_BFRAMES,
77 :     XVID_VOP_DYNAMIC_BFRAMES | XVID_VOP_HALFPEL,
78 :     XVID_VOP_DYNAMIC_BFRAMES | XVID_VOP_HALFPEL | XVID_VOP_INTER4V,
79 :     XVID_VOP_DYNAMIC_BFRAMES | XVID_VOP_HALFPEL | XVID_VOP_INTER4V | XVID_VOP_HQACPRED,
80 :     XVID_VOP_DYNAMIC_BFRAMES | XVID_VOP_HALFPEL | XVID_VOP_HQACPRED |
81 :     XVID_VOP_MODEDECISION_BITS
82 : edgomez 1.2 };
83 : chl 1.1
84 : edgomez 1.2 /*****************************************************************************
85 :     * Command line global variables
86 :     ****************************************************************************/
87 :    
88 :     /* Maximum number of frames to encode */
89 :     #define ABS_MAXFRAMENR 9999
90 :    
91 : edgomez 1.11.2.9 static int ARG_STATS = 0;
92 :     static int ARG_DUMP = 0;
93 :     static int ARG_LUMIMASKING = 0;
94 : suxen_drol 1.11.2.11 static int ARG_BITRATE = 0;
95 : edgomez 1.11.2.13 static char *ARG_PASS1 = 0;
96 :     static char *ARG_PASS2 = 0;
97 :     static float ARG_QUANTI = 0.0f;
98 : edgomez 1.11.2.9 static int ARG_QUALITY = 5;
99 : edgomez 1.2 static float ARG_FRAMERATE = 25.00f;
100 : edgomez 1.11.2.9 static int ARG_MAXFRAMENR = ABS_MAXFRAMENR;
101 : edgomez 1.2 static char *ARG_INPUTFILE = NULL;
102 : edgomez 1.11.2.9 static int ARG_INPUTTYPE = 0;
103 :     static int ARG_SAVEMPEGSTREAM = 0;
104 : edgomez 1.2 static char *ARG_OUTPUTFILE = NULL;
105 : edgomez 1.11.2.9 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 1.2 #define IMAGE_SIZE(x,y) ((x)*(y)*3/2)
114 :    
115 :     #define MAX(A,B) ( ((A)>(B)) ? (A) : (B) )
116 : edgomez 1.11.2.1 #define SMALL_EPS (1e-10)
117 : edgomez 1.2
118 :     #define SWAP(a) ( (((a)&0x000000ff)<<24) | (((a)&0x0000ff00)<<8) | \
119 :     (((a)&0x00ff0000)>>8) | (((a)&0xff000000)>>24) )
120 :    
121 :     /****************************************************************************
122 :     * Nasty global vars ;-)
123 :     ***************************************************************************/
124 :    
125 : suxen_drol 1.11.2.6 static int i;
126 : edgomez 1.2
127 :     /* the path where to save output */
128 :     static char filepath[256] = "./";
129 :    
130 :     /* 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 1.11.2.9 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 1.2
150 :     /* Encoder related functions */
151 :     static int enc_init(int use_assembler);
152 :     static int enc_stop();
153 : edgomez 1.11.2.9 static int enc_main(unsigned char *image,
154 :     unsigned char *bitstream,
155 :     int *key,
156 : suxen_drol 1.11.2.5 int *stats_type,
157 : edgomez 1.11.2.9 int *stats_quant,
158 :     int *stats_length,
159 : edgomez 1.11.2.2 int stats[3]);
160 : edgomez 1.2
161 :     /*****************************************************************************
162 :     * Main function
163 :     ****************************************************************************/
164 :    
165 : edgomez 1.11.2.9 int
166 :     main(int argc,
167 :     char *argv[])
168 : edgomez 1.2 {
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 1.11.2.9 double totalenctime = 0.;
176 :    
177 : suxen_drol 1.11.2.5 int totalsize;
178 : suxen_drol 1.11.2.6 int result;
179 : suxen_drol 1.11.2.5 int m4v_size;
180 : edgomez 1.11.2.9 int key;
181 : suxen_drol 1.11.2.5 int stats_type;
182 : edgomez 1.11.2.9 int stats_quant;
183 :     int stats_length;
184 :     int use_assembler = 0;
185 :    
186 :     int input_num;
187 :     int output_num;
188 :    
189 : edgomez 1.2 char filename[256];
190 : edgomez 1.11.2.9
191 : edgomez 1.2 FILE *in_file = stdin;
192 :     FILE *out_file = NULL;
193 :    
194 : edgomez 1.7 printf("xvid_encraw - raw mpeg4 bitstream encoder ");
195 : edgomez 1.10 printf("written by Christoph Lampert 2002-2003\n\n");
196 : chl 1.1
197 : edgomez 1.2 /*****************************************************************************
198 :     * Command line parsing
199 :     ****************************************************************************/
200 : chl 1.1
201 : edgomez 1.11.2.9 for (i = 1; i < argc; i++) {
202 :    
203 :     if (strcmp("-asm", argv[i]) == 0) {
204 : edgomez 1.2 use_assembler = 1;
205 : edgomez 1.11.2.9 } else if (strcmp("-w", argv[i]) == 0 && i < argc - 1) {
206 : edgomez 1.2 i++;
207 :     XDIM = atoi(argv[i]);
208 : edgomez 1.11.2.9 } else if (strcmp("-h", argv[i]) == 0 && i < argc - 1) {
209 : edgomez 1.2 i++;
210 :     YDIM = atoi(argv[i]);
211 : edgomez 1.11.2.9 } else if (strcmp("-bitrate", argv[i]) == 0 && i < argc - 1) {
212 : edgomez 1.2 i++;
213 :     ARG_BITRATE = atoi(argv[i]);
214 : suxen_drol 1.11.2.11 } else if (strcmp("-pass1", argv[i]) == 0 && i < argc - 1) {
215 :     i++;
216 :     ARG_PASS1 = argv[i];
217 : suxen_drol 1.11.2.12 } else if (strcmp("-pass2", argv[i]) == 0 && i < argc - 2) {
218 :     i++;
219 :     ARG_PASS1 = argv[i];
220 : edgomez 1.11.2.13 i++;
221 :     ARG_PASS2 = argv[i];
222 : edgomez 1.11.2.9 } else if (strcmp("-max_bframes", argv[i]) == 0 && i < argc - 1) {
223 : edgomez 1.10 i++;
224 :     ARG_MAXBFRAMES = atoi(argv[i]);
225 : edgomez 1.11.2.9 } 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 1.10 i++;
229 :     ARG_BQRATIO = atoi(argv[i]);
230 : edgomez 1.11.2.9 } else if (strcmp("-bquant_offset", argv[i]) == 0 && i < argc - 1) {
231 : edgomez 1.10 i++;
232 :     ARG_BQOFFSET = atoi(argv[i]);
233 : edgomez 1.11.2.9 } else if (strcmp("-quality", argv[i]) == 0 && i < argc - 1) {
234 : edgomez 1.2 i++;
235 :     ARG_QUALITY = atoi(argv[i]);
236 : edgomez 1.11.2.9 } else if (strcmp("-framerate", argv[i]) == 0 && i < argc - 1) {
237 : edgomez 1.2 i++;
238 : edgomez 1.11.2.9 ARG_FRAMERATE = (float) atof(argv[i]);
239 :     } else if (strcmp("-i", argv[i]) == 0 && i < argc - 1) {
240 : edgomez 1.2 i++;
241 :     ARG_INPUTFILE = argv[i];
242 : edgomez 1.11.2.9 } else if (strcmp("-stats", argv[i]) == 0) {
243 : edgomez 1.11.2.3 ARG_STATS = 1;
244 : edgomez 1.11.2.9 } else if (strcmp("-dump", argv[i]) == 0) {
245 : suxen_drol 1.11.2.6 ARG_DUMP = 1;
246 : edgomez 1.11.2.9 } else if (strcmp("-lumimasking", argv[i]) == 0) {
247 : suxen_drol 1.11.2.8 ARG_LUMIMASKING = 1;
248 : edgomez 1.11.2.9 } else if (strcmp("-type", argv[i]) == 0 && i < argc - 1) {
249 : edgomez 1.2 i++;
250 :     ARG_INPUTTYPE = atoi(argv[i]);
251 : edgomez 1.11.2.9 } else if (strcmp("-nframes", argv[i]) == 0 && i < argc - 1) {
252 : edgomez 1.2 i++;
253 : edgomez 1.11.2.9 ARG_MAXFRAMENR = atoi(argv[i]);
254 :     } else if (strcmp("-quant", argv[i]) == 0 && i < argc - 1) {
255 : edgomez 1.2 i++;
256 : edgomez 1.11.2.13 ARG_QUANTI = (float) atof(argv[i]);
257 : edgomez 1.11.2.9 } else if (strcmp("-save", argv[i]) == 0) {
258 : edgomez 1.11.2.3 ARG_SAVEMPEGSTREAM = 1;
259 : edgomez 1.11.2.9 } else if (strcmp("-debug", argv[i]) == 0) {
260 :     ARG_DEBUG = 1;
261 :     } else if (strcmp("-o", argv[i]) == 0 && i < argc - 1) {
262 : edgomez 1.2 i++;
263 :     ARG_OUTPUTFILE = argv[i];
264 : edgomez 1.11.2.9 } else if (strcmp("-help", argv[i])) {
265 : edgomez 1.2 usage();
266 : edgomez 1.11.2.9 return (0);
267 :     } else {
268 : edgomez 1.2 usage();
269 :     exit(-1);
270 :     }
271 : edgomez 1.11.2.9
272 : edgomez 1.2 }
273 : edgomez 1.11.2.9
274 : edgomez 1.2 /*****************************************************************************
275 :     * Arguments checking
276 :     ****************************************************************************/
277 :    
278 : edgomez 1.11.2.9 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 1.2 }
283 : edgomez 1.11.2.9
284 :     if (ARG_QUALITY < 0 || ARG_QUALITY > 5) {
285 :     fprintf(stderr, "Wrong Quality\n");
286 :     return (-1);
287 : edgomez 1.2 }
288 : chl 1.1
289 : edgomez 1.11.2.9 if (ARG_FRAMERATE <= 0) {
290 :     fprintf(stderr, "Wrong Framerate %s \n", argv[5]);
291 :     return (-1);
292 : edgomez 1.2 }
293 : chl 1.1
294 : edgomez 1.11.2.9 if (ARG_MAXFRAMENR <= 0) {
295 :     fprintf(stderr, "Wrong number of frames\n");
296 :     return (-1);
297 : edgomez 1.6 }
298 :    
299 : edgomez 1.11.2.9 if (ARG_INPUTFILE == NULL || strcmp(ARG_INPUTFILE, "stdin") == 0) {
300 : edgomez 1.2 in_file = stdin;
301 : edgomez 1.11.2.9 } else {
302 : chl 1.1
303 : edgomez 1.2 in_file = fopen(ARG_INPUTFILE, "rb");
304 :     if (in_file == NULL) {
305 :     fprintf(stderr, "Error opening input file %s\n", ARG_INPUTFILE);
306 : edgomez 1.11.2.9 return (-1);
307 : edgomez 1.2 }
308 :     }
309 :    
310 :     if (ARG_INPUTTYPE) {
311 :     if (read_pgmheader(in_file)) {
312 : edgomez 1.11.2.9 fprintf(stderr,
313 :     "Wrong input format, I want YUV encapsulated in PGM\n");
314 :     return (-1);
315 : edgomez 1.2 }
316 :     }
317 :    
318 :     /* now we know the sizes, so allocate memory */
319 : edgomez 1.11.2.9 in_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM, YDIM));
320 : edgomez 1.2 if (!in_buffer)
321 :     goto free_all_memory;
322 :    
323 :     /* this should really be enough memory ! */
324 : edgomez 1.11.2.9 mp4_buffer = (unsigned char *) malloc(IMAGE_SIZE(XDIM, YDIM) * 2);
325 : edgomez 1.2 if (!mp4_buffer)
326 : edgomez 1.11.2.9 goto free_all_memory;
327 : edgomez 1.2
328 :     /*****************************************************************************
329 :     * XviD PART Start
330 :     ****************************************************************************/
331 :    
332 :    
333 : suxen_drol 1.11.2.6 result = enc_init(use_assembler);
334 : edgomez 1.11.2.9 if (result) {
335 : suxen_drol 1.11.2.6 fprintf(stderr, "Encore INIT problem, return value %d\n", result);
336 : edgomez 1.2 goto release_all;
337 :     }
338 :    
339 :     /*****************************************************************************
340 :     * Main loop
341 :     ****************************************************************************/
342 :    
343 : edgomez 1.10 if (ARG_SAVEMPEGSTREAM && ARG_OUTPUTFILE) {
344 : edgomez 1.2
345 : edgomez 1.11.2.9 if ((out_file = fopen(ARG_OUTPUTFILE, "w+b")) == NULL) {
346 : edgomez 1.2 fprintf(stderr, "Error opening output file %s\n", ARG_OUTPUTFILE);
347 :     goto release_all;
348 :     }
349 :    
350 : edgomez 1.11.2.9 } else {
351 : edgomez 1.2 out_file = NULL;
352 :     }
353 :    
354 :     /*****************************************************************************
355 :     * Encoding loop
356 :     ****************************************************************************/
357 :    
358 :     totalsize = 0;
359 :    
360 : edgomez 1.11.2.9 result = 0;
361 : suxen_drol 1.11.2.6
362 : edgomez 1.11.2.9 input_num = 0; /* input frame counter */
363 :     output_num = 0; /* output frame counter */
364 : suxen_drol 1.11.2.6
365 : edgomez 1.2 do {
366 :    
367 : edgomez 1.11.2.2 char *type;
368 : edgomez 1.11.2.9 int sse[3];
369 : edgomez 1.11.2.2
370 : edgomez 1.11.2.9 if (input_num >= ARG_MAXFRAMENR) {
371 :     result = 1;
372 :     }
373 :    
374 :     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 : edgomez 1.2
384 :     /*****************************************************************************
385 :     * Encode and decode this frame
386 :     ****************************************************************************/
387 :    
388 :     enctime = msecond();
389 : edgomez 1.11.2.9 m4v_size =
390 :     enc_main(!result ? in_buffer : 0, mp4_buffer, &key, &stats_type,
391 :     &stats_quant, &stats_length, sse);
392 : edgomez 1.2 enctime = msecond() - enctime;
393 :    
394 : edgomez 1.11.2.2 /* Write the Frame statistics */
395 : edgomez 1.11.2.9
396 : edgomez 1.11.2.13 printf("%5d: key=%i, time=%6.0f, length=%7d", !result ? input_num : -1,
397 :     key, (float) enctime, (int) m4v_size);
398 : edgomez 1.11.2.3
399 : edgomez 1.11.2.9 if (stats_type > 0) { /* !XVID_TYPE_NOTHING */
400 : suxen_drol 1.11.2.5
401 : edgomez 1.11.2.9 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 :    
419 :     printf(" | type=%s, quant=%2d, length=%7d", type, stats_quant,
420 :     stats_length);
421 :    
422 :     #define SSE2PSNR(sse, width, height) ((!(sse))?0.0f : 48.131f - 10*(float)log10((float)(sse)/((float)((width)*(height)))))
423 :    
424 :     if (ARG_STATS) {
425 :     printf(", psnr y = %2.2f, psnr u = %2.2f, psnr v = %2.2f",
426 : edgomez 1.11.2.13 SSE2PSNR(sse[0], XDIM, YDIM), SSE2PSNR(sse[1], XDIM / 2,
427 :     YDIM / 2),
428 :     SSE2PSNR(sse[2], XDIM / 2, YDIM / 2));
429 : edgomez 1.11.2.9 }
430 : suxen_drol 1.11.2.7
431 : edgomez 1.11.2.3 }
432 : edgomez 1.11.2.9 #undef SSE2PSNR
433 :    
434 : edgomez 1.11.2.3 printf("\n");
435 : edgomez 1.10
436 : edgomez 1.11.2.9 if (m4v_size < 0) {
437 :     break;
438 :     }
439 : suxen_drol 1.11.2.5
440 : edgomez 1.10 /* Update encoding time stats */
441 : edgomez 1.2 totalenctime += enctime;
442 :     totalsize += m4v_size;
443 :    
444 : edgomez 1.6 /*****************************************************************************
445 :     * Save stream to file
446 :     ****************************************************************************/
447 :    
448 : edgomez 1.11.2.9 if (m4v_size > 0 && ARG_SAVEMPEGSTREAM) {
449 : edgomez 1.2 /* Save single files */
450 :     if (out_file == NULL) {
451 : suxen_drol 1.11.2.6 sprintf(filename, "%sframe%05d.m4v", filepath, output_num);
452 : edgomez 1.2 out_file = fopen(filename, "wb");
453 :     fwrite(mp4_buffer, m4v_size, 1, out_file);
454 :     fclose(out_file);
455 :     out_file = NULL;
456 : edgomez 1.11.2.9 output_num++;
457 :     } else {
458 : edgomez 1.2
459 :     /* Write mp4 data */
460 : edgomez 1.10 fwrite(mp4_buffer, 1, m4v_size, out_file);
461 : edgomez 1.2
462 :     }
463 :     }
464 :    
465 : suxen_drol 1.11.2.6 input_num++;
466 : edgomez 1.11.2.4
467 : edgomez 1.11.2.9 /* Read the header if it's pgm stream */
468 :     if (!result && ARG_INPUTTYPE)
469 : suxen_drol 1.11.2.6 result = read_pgmheader(in_file);
470 : chl 1.1
471 : suxen_drol 1.11.2.6 } while (1);
472 : chl 1.1
473 : edgomez 1.11.2.9
474 :    
475 : edgomez 1.2 /*****************************************************************************
476 :     * Calculate totals and averages for output, print results
477 :     ****************************************************************************/
478 : chl 1.1
479 : suxen_drol 1.11.2.8 printf("Tot: enctime(ms) =%7.2f, length(bytes) = %7d\n",
480 : edgomez 1.11.2.9 totalenctime, (int) totalsize);
481 : suxen_drol 1.11.2.8
482 : edgomez 1.11.2.9 if (input_num > 0) {
483 :     totalsize /= input_num;
484 :     totalenctime /= input_num;
485 :     } else {
486 :     totalsize = -1;
487 :     totalenctime = -1;
488 :     }
489 : edgomez 1.2
490 : edgomez 1.10 printf("Avg: enctime(ms) =%7.2f, fps =%7.2f, length(bytes) = %7d\n",
491 : edgomez 1.11.2.9 totalenctime, 1000 / totalenctime, (int) totalsize);
492 : edgomez 1.2
493 : edgomez 1.11.2.2
494 : edgomez 1.2 /*****************************************************************************
495 :     * XviD PART Stop
496 :     ****************************************************************************/
497 :    
498 : edgomez 1.11.2.9 release_all:
499 : edgomez 1.2
500 : edgomez 1.11.2.9 if (enc_handle) {
501 : suxen_drol 1.11.2.6 result = enc_stop();
502 : edgomez 1.11.2.9 if (result)
503 :     fprintf(stderr, "Encore RELEASE problem return value %d\n",
504 :     result);
505 : edgomez 1.2 }
506 : chl 1.1
507 : edgomez 1.11.2.9 if (in_file)
508 : edgomez 1.6 fclose(in_file);
509 : edgomez 1.11.2.9 if (out_file)
510 : edgomez 1.2 fclose(out_file);
511 : chl 1.1
512 : edgomez 1.11.2.9 free_all_memory:
513 : edgomez 1.2 free(out_buffer);
514 :     free(mp4_buffer);
515 :     free(in_buffer);
516 : chl 1.1
517 : edgomez 1.11.2.9 return (0);
518 : edgomez 1.2
519 :     }
520 : chl 1.1
521 :    
522 : edgomez 1.2 /*****************************************************************************
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 1.11.2.9 static double
532 :     msecond()
533 :     {
534 : edgomez 1.8 #ifndef WIN32
535 : edgomez 1.11.2.9 struct timeval tv;
536 :    
537 : chl 1.1 gettimeofday(&tv, 0);
538 : edgomez 1.11.2.9 return (tv.tv_sec * 1.0e3 + tv.tv_usec * 1.0e-3);
539 : edgomez 1.2 #else
540 :     clock_t clk;
541 : edgomez 1.11.2.9
542 : edgomez 1.2 clk = clock();
543 : edgomez 1.11.2.9 return (clk * 1000 / CLOCKS_PER_SEC);
544 : edgomez 1.2 #endif
545 : chl 1.1 }
546 :    
547 : edgomez 1.2 /*****************************************************************************
548 :     * Usage message
549 :     *****************************************************************************/
550 :    
551 : edgomez 1.11.2.9 static void
552 :     usage()
553 : edgomez 1.2 {
554 : edgomez 1.11.2.9 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 1.11.2.13 fprintf(stderr, " -o string: output filename\n");
566 : edgomez 1.11.2.9 fprintf(stderr, "\n");
567 : edgomez 1.11.2.13 fprintf(stderr, "BFrames options:\n");
568 : edgomez 1.11.2.9 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 : edgomez 1.11.2.13 fprintf(stderr, "\n");
572 :     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 : edgomez 1.11.2.9 fprintf(stderr, "\n");
579 :     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 1.11.2.13 fprintf(stderr, " -debug : print all MB dquants\n");
586 : edgomez 1.11.2.9 fprintf(stderr, " -help : prints this help message\n");
587 : edgomez 1.2 }
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 1.11.2.9 static int
598 :     read_pgmheader(FILE * handle)
599 :     {
600 :     int bytes, xsize, ysize, depth;
601 : chl 1.1 char dummy[2];
602 :    
603 : edgomez 1.11.2.9 bytes = fread(dummy, 1, 2, handle);
604 :    
605 :     if ((bytes < 2) || (dummy[0] != 'P') || (dummy[1] != '5'))
606 :     return (1);
607 : edgomez 1.2
608 : edgomez 1.11.2.9 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 1.1 }
613 : edgomez 1.11.2.9 if ((XDIM == 0) || (YDIM == 0)) {
614 :     XDIM = xsize;
615 :     YDIM = ysize * 2 / 3;
616 : chl 1.1 }
617 :    
618 : edgomez 1.11.2.9 return (0);
619 : chl 1.1 }
620 :    
621 : edgomez 1.11.2.9 static int
622 :     read_pgmdata(FILE * handle,
623 :     unsigned char *image)
624 :     {
625 : edgomez 1.2 int i;
626 : chl 1.1 char dummy;
627 : edgomez 1.11.2.9
628 : edgomez 1.2 unsigned char *y = image;
629 : edgomez 1.11.2.9 unsigned char *u = image + XDIM * YDIM;
630 :     unsigned char *v = image + XDIM * YDIM + XDIM / 2 * YDIM / 2;
631 : chl 1.1
632 : edgomez 1.2 /* read Y component of picture */
633 : edgomez 1.11.2.9 fread(y, 1, XDIM * YDIM, handle);
634 :    
635 :     for (i = 0; i < YDIM / 2; i++) {
636 : edgomez 1.2 /* read U */
637 : edgomez 1.11.2.9 fread(u, 1, XDIM / 2, handle);
638 : edgomez 1.2
639 :     /* read V */
640 : edgomez 1.11.2.9 fread(v, 1, XDIM / 2, handle);
641 : edgomez 1.2
642 :     /* Update pointers */
643 : edgomez 1.11.2.9 u += XDIM / 2;
644 :     v += XDIM / 2;
645 : chl 1.1 }
646 : edgomez 1.2
647 : edgomez 1.11.2.9 /* I don't know why, but this seems needed */
648 : edgomez 1.2 fread(&dummy, 1, 1, handle);
649 :    
650 : edgomez 1.11.2.9 return (0);
651 : chl 1.1 }
652 :    
653 : edgomez 1.11.2.9 static int
654 :     read_yuvdata(FILE * handle,
655 :     unsigned char *image)
656 : edgomez 1.2 {
657 : edgomez 1.11.2.9
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 1.1 }
664 :    
665 : edgomez 1.2 /*****************************************************************************
666 :     * Routines for encoding: init encoder, frame step, release encoder
667 :     ****************************************************************************/
668 : chl 1.1
669 : suxen_drol 1.11.2.5 /* sample plugin */
670 :    
671 : edgomez 1.11.2.9 int
672 :     rawenc_debug(void *handle,
673 :     int opt,
674 :     void *param1,
675 :     void *param2)
676 : suxen_drol 1.11.2.5 {
677 : edgomez 1.11.2.9 switch (opt) {
678 :     case XVID_PLG_INFO:
679 :     {
680 :     xvid_plg_info_t *info = (xvid_plg_info_t *) param1;
681 :    
682 :     info->flags = XVID_REQDQUANTS;
683 :     return 0;
684 :     }
685 : suxen_drol 1.11.2.5
686 : edgomez 1.11.2.9 case XVID_PLG_CREATE:
687 :     case XVID_PLG_DESTROY:
688 :     case XVID_PLG_BEFORE:
689 :     return 0;
690 :    
691 :     case XVID_PLG_AFTER:
692 :     {
693 :     xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
694 :     int i, j;
695 :    
696 :     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 1.11.2.5 }
710 :    
711 :    
712 : chl 1.1 #define FRAMERATE_INCR 1001
713 :    
714 : suxen_drol 1.11.2.11
715 : edgomez 1.2 /* Initialize encoder for first use, pass all needed parameters to the codec */
716 : edgomez 1.11.2.9 static int
717 :     enc_init(int use_assembler)
718 : edgomez 1.2 {
719 : chl 1.1 int xerr;
720 : edgomez 1.11.2.13 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 1.11.2.9 xvid_gbl_init_t xvid_gbl_init;
726 : edgomez 1.11.2.1 xvid_enc_create_t xvid_enc_create;
727 :    
728 :     /*------------------------------------------------------------------------
729 :     * XviD core initialization
730 :     *----------------------------------------------------------------------*/
731 : chl 1.1
732 : edgomez 1.11.2.9 /* Set version -- version checking will done by xvidcore */
733 :     memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init));
734 : edgomez 1.11.2.1 xvid_gbl_init.version = XVID_VERSION;
735 : edgomez 1.11.2.9
736 :    
737 : edgomez 1.11.2.1 /* Do we have to enable ASM optimizations ? */
738 : edgomez 1.11.2.9 if (use_assembler) {
739 : chl 1.1
740 : suxen_drol 1.11 #ifdef ARCH_IS_IA64
741 : edgomez 1.11.2.1 xvid_gbl_init.cpu_flags = XVID_CPU_FORCE | XVID_CPU_IA64;
742 : chl 1.1 #else
743 : edgomez 1.11.2.1 xvid_gbl_init.cpu_flags = 0;
744 : chl 1.1 #endif
745 : edgomez 1.11.2.9 } else {
746 : edgomez 1.11.2.1 xvid_gbl_init.cpu_flags = XVID_CPU_FORCE;
747 : edgomez 1.2 }
748 : chl 1.1
749 : edgomez 1.11.2.1 /* Initialize XviD core -- Should be done once per __process__ */
750 :     xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
751 : chl 1.1
752 : edgomez 1.11.2.1 /*------------------------------------------------------------------------
753 :     * XviD encoder initialization
754 :     *----------------------------------------------------------------------*/
755 :    
756 :     /* Version again */
757 : edgomez 1.11.2.9 memset(&xvid_enc_create, 0, sizeof(xvid_enc_create));
758 : edgomez 1.11.2.1 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 1.11.2.9 /* init plugins */
765 :    
766 :     xvid_enc_create.plugins = plugins;
767 :     xvid_enc_create.num_plugins = 0;
768 : suxen_drol 1.11.2.11
769 : edgomez 1.11.2.13 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 1.11.2.11
774 : edgomez 1.11.2.13 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_cbr;
775 : suxen_drol 1.11.2.11 plugins[xvid_enc_create.num_plugins].param = &cbr;
776 :     xvid_enc_create.num_plugins++;
777 : edgomez 1.11.2.13 }
778 : suxen_drol 1.11.2.11
779 : edgomez 1.11.2.13 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 :    
785 :     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 : suxen_drol 1.11.2.12
790 : edgomez 1.11.2.13 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 1.11.2.12 plugins[xvid_enc_create.num_plugins].param = &rc2pass2;
798 :     xvid_enc_create.num_plugins++;
799 : edgomez 1.11.2.13 } 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 1.11.2.11
804 : edgomez 1.11.2.13 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass1;
805 : suxen_drol 1.11.2.11 plugins[xvid_enc_create.num_plugins].param = &rc2pass1;
806 :     xvid_enc_create.num_plugins++;
807 : edgomez 1.11.2.13 }
808 : suxen_drol 1.11.2.12
809 : edgomez 1.11.2.13 if (ARG_LUMIMASKING) {
810 : edgomez 1.11.2.9 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 :    
815 :     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 :    
821 :     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 : suxen_drol 1.11.2.8
827 : edgomez 1.11.2.1 /* 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 1.11.2.9 if ((ARG_FRAMERATE - (int) ARG_FRAMERATE) < SMALL_EPS) {
832 : edgomez 1.11.2.1 xvid_enc_create.fincr = 1;
833 : edgomez 1.11.2.9 xvid_enc_create.fbase = (int) ARG_FRAMERATE;
834 : edgomez 1.11.2.1 } else {
835 :     xvid_enc_create.fincr = FRAMERATE_INCR;
836 : edgomez 1.11.2.9 xvid_enc_create.fbase = (int) (FRAMERATE_INCR * ARG_FRAMERATE);
837 : chl 1.1 }
838 : edgomez 1.11.2.1
839 :     /* Maximum key frame interval */
840 : edgomez 1.11.2.9 xvid_enc_create.max_key_interval = (int) ARG_FRAMERATE *10;
841 : edgomez 1.11.2.1
842 :     /* Bframes settings */
843 :     xvid_enc_create.max_bframes = ARG_MAXBFRAMES;
844 :     xvid_enc_create.bquant_ratio = ARG_BQRATIO;
845 : edgomez 1.11.2.9 xvid_enc_create.bquant_offset = ARG_BQOFFSET;
846 : edgomez 1.11.2.1
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 1.11.2.5 xvid_enc_create.global = 0;
852 : edgomez 1.11.2.13
853 :     if (ARG_PACKED)
854 : edgomez 1.11.2.14 xvid_enc_create.global |=XVID_GLOBAL_PACKED;
855 : edgomez 1.11.2.13
856 :     if (ARG_STATS)
857 : edgomez 1.11.2.14 xvid_enc_create.global |=XVID_GLOBAL_EXTRASTATS_ENABLE;
858 : chl 1.1
859 : edgomez 1.2 /* I use a small value here, since will not encode whole movies, but short clips */
860 : edgomez 1.11.2.1 xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
861 : chl 1.1
862 : edgomez 1.11.2.1 /* Retrieve the encoder instance from the structure */
863 :     enc_handle = xvid_enc_create.handle;
864 : chl 1.1
865 : edgomez 1.11.2.9 return (xerr);
866 : chl 1.1 }
867 :    
868 : edgomez 1.11.2.9 static int
869 :     enc_stop()
870 : edgomez 1.2 {
871 :     int xerr;
872 : chl 1.1
873 : edgomez 1.11.2.1 /* Destroy the encoder instance */
874 : chl 1.1 xerr = xvid_encore(enc_handle, XVID_ENC_DESTROY, NULL, NULL);
875 : edgomez 1.2
876 : edgomez 1.11.2.9 return (xerr);
877 : chl 1.1 }
878 :    
879 : edgomez 1.11.2.9 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 1.2 {
888 : edgomez 1.11.2.1 int ret;
889 : chl 1.1
890 : edgomez 1.11.2.1 xvid_enc_frame_t xvid_enc_frame;
891 : suxen_drol 1.11.2.5 xvid_enc_stats_t xvid_enc_stats;
892 : chl 1.1
893 : edgomez 1.11.2.1 /* Version for the frame and the stats */
894 : edgomez 1.11.2.9 memset(&xvid_enc_frame, 0, sizeof(xvid_enc_frame));
895 : edgomez 1.11.2.1 xvid_enc_frame.version = XVID_VERSION;
896 : edgomez 1.11.2.9
897 :     memset(&xvid_enc_stats, 0, sizeof(xvid_enc_stats));
898 : suxen_drol 1.11.2.5 xvid_enc_stats.version = XVID_VERSION;
899 : edgomez 1.11.2.9
900 : edgomez 1.11.2.1 /* Bind output buffer */
901 :     xvid_enc_frame.bitstream = bitstream;
902 :     xvid_enc_frame.length = -1;
903 : chl 1.1
904 : edgomez 1.11.2.1 /* Initialize input image fields */
905 : edgomez 1.11.2.9 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 1.1
913 : edgomez 1.11.2.1 /* Set up core's general features */
914 :     xvid_enc_frame.vol_flags = vol_presets[ARG_QUALITY];
915 : edgomez 1.11.2.9 if (ARG_STATS)
916 : edgomez 1.11.2.14 xvid_enc_frame.vol_flags |= XVID_VOL_EXTRASTATS;
917 : chl 1.1
918 : edgomez 1.11.2.1 /* Set up core's general features */
919 :     xvid_enc_frame.vop_flags = vop_presets[ARG_QUALITY];
920 : edgomez 1.6
921 : edgomez 1.11.2.1 /* Frame type -- let core decide for us */
922 : edgomez 1.11.2.9 xvid_enc_frame.type = XVID_TYPE_AUTO;
923 : edgomez 1.6
924 : edgomez 1.11.2.13 /* Force the right quantizer -- It is internally managed by RC plugins */
925 :     xvid_enc_frame.quant = 0;
926 : edgomez 1.11.2.9
927 : edgomez 1.11.2.1 /* Set up motion estimation flags */
928 :     xvid_enc_frame.motion = motion_presets[ARG_QUALITY];
929 : edgomez 1.6
930 : edgomez 1.11.2.1 /* We don't use special matrices */
931 :     xvid_enc_frame.quant_intra_matrix = NULL;
932 :     xvid_enc_frame.quant_inter_matrix = NULL;
933 : edgomez 1.6
934 : edgomez 1.11.2.2 /* Encode the frame */
935 : edgomez 1.11.2.9 ret =
936 :     xvid_encore(enc_handle, XVID_ENC_ENCODE, &xvid_enc_frame,
937 :     &xvid_enc_stats);
938 : chl 1.1
939 : edgomez 1.11.2.9 *key = (xvid_enc_frame.out_flags & XVID_KEYFRAME);
940 : suxen_drol 1.11.2.5 *stats_type = xvid_enc_stats.type;
941 : edgomez 1.11.2.9 *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 1.1
947 : edgomez 1.11.2.9 return (ret);
948 : chl 1.1 }

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