Mercurial > mplayer.hg
annotate libmpcodecs/ve_xvid4.c @ 14615:f1c2f7046748
Remove overly outdated entries, update a few others.
author | diego |
---|---|
date | Sun, 30 Jan 2005 23:51:18 +0000 |
parents | acf3241be19b |
children | 5723c4b2a2ea |
rev | line source |
---|---|
11437 | 1 /***************************************************************************** |
2 * | |
13610 | 3 * - XviD 1.x export module for mplayer/mencoder - |
11437 | 4 * |
13610 | 5 * Copyright(C) 2003 Marco Belli <elcabesa@inwind.it> |
6 * 2003-2004 Edouard Gomez <ed.gomez@free.fr> | |
11437 | 7 * |
8 * 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 * | |
13 * 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 * | |
18 * 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 ****************************************************************************/ | |
23 | |
24 /***************************************************************************** | |
25 * Includes | |
26 ****************************************************************************/ | |
27 | |
28 #include <stdio.h> | |
29 #include <stdlib.h> | |
30 #include <string.h> | |
31 #include <errno.h> | |
32 #include <math.h> | |
33 #include <limits.h> | |
11920 | 34 #include <time.h> |
11437 | 35 |
36 #include "../config.h" | |
37 #include "../mp_msg.h" | |
38 | |
39 #ifdef HAVE_XVID4 | |
40 | |
41 #include "codec-cfg.h" | |
42 #include "stream.h" | |
43 #include "demuxer.h" | |
44 #include "stheader.h" | |
45 | |
46 #include "muxer.h" | |
47 | |
48 #include "img_format.h" | |
49 #include "mp_image.h" | |
50 #include "vf.h" | |
51 | |
52 #include <xvid.h> | |
53 #include <stdio.h> | |
54 #include <stdarg.h> | |
55 #include <limits.h> | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
56 #include <assert.h> |
11437 | 57 |
58 #include "m_option.h" | |
59 | |
60 #define XVID_FIRST_PASS_FILENAME "xvid-twopass.stats" | |
61 #define FINE (!0) | |
62 #define BAD (!FINE) | |
63 | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
64 // Code taken from Libavcodec and ve_lavc.c to handle Aspect Ratio calculation |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
65 |
13610 | 66 typedef struct xvid_rational_s{ |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
67 int num; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
68 int den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
69 } XVIDRational; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
70 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
71 #define MAX(a,b) ((a) > (b) ? (a) : (b)) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
72 #define ABS(a) ((a) >= 0 ? (a) : (-(a))) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
73 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
74 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
75 static int64_t xvid_gcd(int64_t a, int64_t b){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
76 if(b) return xvid_gcd(b, a%b); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
77 else return a; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
78 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
79 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
80 static int xvid_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
81 int exact=1, sign=0; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
82 int64_t gcd; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
83 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
84 assert(den != 0); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
85 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
86 if(den < 0){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
87 den= -den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
88 nom= -nom; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
89 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
90 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
91 if(nom < 0){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
92 nom= -nom; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
93 sign= 1; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
94 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
95 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
96 gcd = xvid_gcd(nom, den); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
97 nom /= gcd; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
98 den /= gcd; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
99 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
100 if(nom > max || den > max){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
101 XVIDRational a0={0,1}, a1={1,0}; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
102 exact=0; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
103 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
104 for(;;){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
105 int64_t x= nom / den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
106 int64_t a2n= x*a1.num + a0.num; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
107 int64_t a2d= x*a1.den + a0.den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
108 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
109 if(a2n > max || a2d > max) break; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
110 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
111 nom %= den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
112 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
113 a0= a1; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
114 a1= (XVIDRational){a2n, a2d}; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
115 if(nom==0) break; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
116 x= nom; nom=den; den=x; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
117 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
118 nom= a1.num; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
119 den= a1.den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
120 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
121 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
122 assert(xvid_gcd(nom, den) == 1); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
123 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
124 if(sign) nom= -nom; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
125 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
126 *dst_nom = nom; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
127 *dst_den = den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
128 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
129 return exact; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
130 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
131 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
132 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
133 static XVIDRational xvid_d2q(double d, int max){ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
134 XVIDRational a; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
135 int exponent= MAX( (int)(log(ABS(d) + 1e-20)/log(2)), 0); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
136 int64_t den= 1LL << (61 - exponent); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
137 xvid_reduce(&a.num, &a.den, (int64_t)(d * den + 0.5), den, max); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
138 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
139 return a; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
140 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
141 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
142 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
143 |
11437 | 144 /***************************************************************************** |
145 * Configuration options | |
146 ****************************************************************************/ | |
147 | |
148 static int xvidenc_bitrate = 0; | |
149 static int xvidenc_pass = 0; | |
150 static float xvidenc_quantizer = 0; | |
151 | |
152 static int xvidenc_packed = 0; | |
153 static int xvidenc_closed_gop = 1; | |
154 static int xvidenc_interlaced = 0; | |
155 static int xvidenc_quarterpel = 0; | |
156 static int xvidenc_gmc = 0; | |
157 static int xvidenc_trellis = 0; | |
158 static int xvidenc_cartoon = 0; | |
159 static int xvidenc_hqacpred = 1; | |
160 static int xvidenc_chromame = 0; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
161 static int xvidenc_chroma_opt = 0; |
11437 | 162 static int xvidenc_vhq = 0; |
13610 | 163 static int xvidenc_bvhq = 0; |
11437 | 164 static int xvidenc_motion = 6; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
165 static int xvidenc_turbo = 0; |
11437 | 166 static int xvidenc_stats = 0; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
167 static int xvidenc_max_key_interval = 0; /* Let xvidcore set a 10s interval by default */ |
11437 | 168 static int xvidenc_frame_drop_ratio = 0; |
169 static int xvidenc_greyscale = 0; | |
11920 | 170 static int xvidenc_debug = 0; |
171 static int xvidenc_psnr = 0; | |
11437 | 172 |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
173 static int xvidenc_max_bframes = 2; |
11437 | 174 static int xvidenc_bquant_ratio = 150; |
175 static int xvidenc_bquant_offset = 100; | |
176 static int xvidenc_bframe_threshold = 0; | |
177 | |
178 static int xvidenc_min_quant[3] = {2, 2, 2}; | |
179 static int xvidenc_max_quant[3] = {31, 31, 31}; | |
180 static char *xvidenc_intra_matrix_file = NULL; | |
181 static char *xvidenc_inter_matrix_file = NULL; | |
182 static char *xvidenc_quant_method = NULL; | |
183 | |
184 static int xvidenc_cbr_reaction_delay_factor = 0; | |
185 static int xvidenc_cbr_averaging_period = 0; | |
186 static int xvidenc_cbr_buffer = 0; | |
187 | |
188 static int xvidenc_vbr_keyframe_boost = 0; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
189 static int xvidenc_vbr_overflow_control_strength = 5; |
11437 | 190 static int xvidenc_vbr_curve_compression_high = 0; |
191 static int xvidenc_vbr_curve_compression_low = 0; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
192 static int xvidenc_vbr_max_overflow_improvement = 5; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
193 static int xvidenc_vbr_max_overflow_degradation = 5; |
11437 | 194 static int xvidenc_vbr_kfreduction = 0; |
11586 | 195 static int xvidenc_vbr_kfthreshold = 0; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
196 static int xvidenc_vbr_container_frame_overhead = 24; /* mencoder uses AVI container */ |
11437 | 197 |
198 static char *xvidenc_par = NULL; | |
199 static int xvidenc_par_width = 0; | |
200 static int xvidenc_par_height = 0; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
201 static float xvidenc_dar_aspect = 0.0f; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
202 static int xvidenc_autoaspect = 0; |
11437 | 203 |
204 m_option_t xvidencopts_conf[] = | |
205 { | |
206 /* Standard things mencoder should be able to treat directly */ | |
207 {"bitrate", &xvidenc_bitrate, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
208 {"pass", &xvidenc_pass, CONF_TYPE_INT, CONF_RANGE, 1, 2, NULL}, | |
209 {"fixed_quant", &xvidenc_quantizer, CONF_TYPE_FLOAT, CONF_RANGE, 1, 31, NULL}, | |
210 | |
211 /* Features */ | |
212 {"quant_type", &xvidenc_quant_method, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
213 {"me_quality", &xvidenc_motion, CONF_TYPE_INT, CONF_RANGE, 0, 6, NULL}, | |
214 {"chroma_me", &xvidenc_chromame, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
215 {"nochroma_me", &xvidenc_chromame, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
216 {"chroma_opt", &xvidenc_chroma_opt, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
217 {"nochroma_opt", &xvidenc_chroma_opt, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 218 {"vhq", &xvidenc_vhq, CONF_TYPE_INT, CONF_RANGE, 0, 4, NULL}, |
13610 | 219 {"bvhq", &xvidenc_bvhq, CONF_TYPE_INT, CONF_RANGE, 0, 1, NULL}, |
11437 | 220 {"max_bframes", &xvidenc_max_bframes, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
221 {"bquant_ratio", &xvidenc_bquant_ratio, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL}, | |
222 {"bquant_offset", &xvidenc_bquant_offset, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL}, | |
223 {"bf_threshold", &xvidenc_bframe_threshold, CONF_TYPE_INT, CONF_RANGE, -255, 255, NULL}, | |
224 {"qpel", &xvidenc_quarterpel, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
225 {"noqpel", &xvidenc_quarterpel, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 226 {"gmc", &xvidenc_gmc, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
227 {"nogmc", &xvidenc_gmc, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 228 {"trellis", &xvidenc_trellis, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
229 {"notrellis", &xvidenc_trellis, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 230 {"packed", &xvidenc_packed, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
231 {"nopacked", &xvidenc_packed, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 232 {"closed_gop", &xvidenc_closed_gop, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
233 {"noclosed_gop", &xvidenc_closed_gop, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11491 | 234 {"interlacing", &xvidenc_interlaced, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
235 {"nointerlacing", &xvidenc_interlaced, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 236 {"cartoon", &xvidenc_cartoon, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
237 {"nocartoon", &xvidenc_cartoon, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 238 {"hq_ac", &xvidenc_hqacpred, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
239 {"nohq_ac", &xvidenc_hqacpred, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 240 {"frame_drop_ratio", &xvidenc_frame_drop_ratio, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, |
241 {"max_key_interval", &xvidenc_max_key_interval, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
242 {"greyscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
243 {"nogreyscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
244 {"turbo", &xvidenc_turbo, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
11920 | 245 {"debug", &xvidenc_debug, CONF_TYPE_INT , 0 ,0,-1,NULL}, |
11437 | 246 {"stats", &xvidenc_stats, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
11920 | 247 {"psnr", &xvidenc_psnr , CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
11437 | 248 |
249 | |
250 /* section [quantizer] */ | |
251 {"min_iquant", &xvidenc_min_quant[0], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
252 {"max_iquant", &xvidenc_max_quant[0], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
253 {"min_pquant", &xvidenc_min_quant[1], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
254 {"max_pquant", &xvidenc_max_quant[1], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
255 {"min_bquant", &xvidenc_min_quant[2], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
256 {"max_bquant", &xvidenc_max_quant[2], CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
257 {"quant_intra_matrix", &xvidenc_intra_matrix_file, CONF_TYPE_STRING, 0, 0, 100, NULL}, | |
258 {"quant_inter_matrix", &xvidenc_inter_matrix_file, CONF_TYPE_STRING, 0, 0, 100, NULL}, | |
259 | |
260 /* section [cbr] */ | |
11491 | 261 {"rc_reaction_delay_factor", &xvidenc_cbr_reaction_delay_factor, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, |
262 {"rc_averaging_period", &xvidenc_cbr_averaging_period, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
263 {"rc_buffer", &xvidenc_cbr_buffer, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, | |
11437 | 264 |
265 /* section [vbr] */ | |
266 {"keyframe_boost", &xvidenc_vbr_keyframe_boost, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
267 {"curve_compression_high", &xvidenc_vbr_curve_compression_high, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
268 {"curve_compression_low", &xvidenc_vbr_curve_compression_low, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
269 {"overflow_control_strength", &xvidenc_vbr_overflow_control_strength, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
270 {"max_overflow_improvement", &xvidenc_vbr_max_overflow_improvement, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
271 {"max_overflow_degradation", &xvidenc_vbr_max_overflow_degradation, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
272 {"kfreduction", &xvidenc_vbr_kfreduction, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL}, | |
11586 | 273 {"kfthreshold", &xvidenc_vbr_kfthreshold, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, |
11437 | 274 {"container_frame_overhead", &xvidenc_vbr_container_frame_overhead, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, |
275 | |
276 /* Section Aspect Ratio */ | |
277 {"par", &xvidenc_par, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
278 {"par_width", &xvidenc_par_width, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL}, | |
279 {"par_height", &xvidenc_par_height, CONF_TYPE_INT, CONF_RANGE, 0, 255, NULL}, | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
280 {"aspect", &xvidenc_dar_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.1, 9.99, NULL}, |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
281 {"autoaspect", &xvidenc_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
13853
5a786c7e4df4
have each XviD's option flag have its (no)counterpart
gpoirier
parents:
13675
diff
changeset
|
282 {"noautoaspect", &xvidenc_autoaspect, CONF_TYPE_FLAG, 0, 1, 0, NULL}, |
11437 | 283 |
284 /* End of the config array */ | |
285 {NULL, 0, 0, 0, 0, 0, NULL} | |
286 }; | |
287 | |
288 /***************************************************************************** | |
289 * Module private data | |
290 ****************************************************************************/ | |
291 | |
292 typedef struct _xvid_mplayer_module_t | |
293 { | |
294 /* Instance related global vars */ | |
295 void *instance; | |
296 xvid_gbl_init_t init; | |
297 xvid_enc_create_t create; | |
298 xvid_enc_frame_t frame; | |
299 xvid_plugin_single_t onepass; | |
300 xvid_plugin_2pass1_t pass1; | |
301 xvid_plugin_2pass2_t pass2; | |
302 | |
303 /* This data must survive local block scope, so here it is */ | |
304 xvid_enc_plugin_t plugins[7]; | |
305 xvid_enc_zone_t zones[1]; | |
306 | |
307 /* MPEG4 stream buffer */ | |
308 muxer_stream_t *mux; | |
309 | |
310 /* Stats accumulators */ | |
311 int frames; | |
312 long long sse_y; | |
313 long long sse_u; | |
314 long long sse_v; | |
315 | |
316 /* Min & Max PSNR */ | |
317 int min_sse_y; | |
318 int min_sse_u; | |
319 int min_sse_v; | |
11920 | 320 int min_framenum; |
11437 | 321 int max_sse_y; |
322 int max_sse_u; | |
323 int max_sse_v; | |
11920 | 324 int max_framenum; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
325 |
11920 | 326 int pixels; |
13610 | 327 |
328 /* DAR/PAR and all that thingies */ | |
329 int d_width; | |
330 int d_height; | |
331 FILE *fvstats; | |
11437 | 332 } xvid_mplayer_module_t; |
333 | |
334 static void dispatch_settings(xvid_mplayer_module_t *mod); | |
335 static int set_create_struct(xvid_mplayer_module_t *mod); | |
336 static int set_frame_struct(xvid_mplayer_module_t *mod, mp_image_t *mpi); | |
13610 | 337 static void update_stats(xvid_mplayer_module_t *mod, xvid_enc_stats_t *stats); |
338 static void print_stats(xvid_mplayer_module_t *mod); | |
339 static void flush_internal_buffers(xvid_mplayer_module_t *mod); | |
340 static const char *par_string(int parcode); | |
11437 | 341 static const char *errorstring(int err); |
342 | |
343 /***************************************************************************** | |
344 * Video Filter API function definitions | |
345 ****************************************************************************/ | |
346 | |
347 /*============================================================================ | |
348 * config | |
349 *==========================================================================*/ | |
350 | |
351 static int | |
352 config(struct vf_instance_s* vf, | |
353 int width, int height, int d_width, int d_height, | |
354 unsigned int flags, unsigned int outfmt) | |
355 { | |
356 int err; | |
357 xvid_mplayer_module_t *mod = (xvid_mplayer_module_t *)vf->priv; | |
358 | |
359 /* Complete the muxer initialization */ | |
360 mod->mux->bih->biWidth = width; | |
361 mod->mux->bih->biHeight = height; | |
362 mod->mux->bih->biSizeImage = | |
13610 | 363 mod->mux->bih->biWidth * mod->mux->bih->biHeight * 3 / 2; |
12061 | 364 mod->mux->aspect = (float)d_width/d_height; |
11437 | 365 |
366 /* Message the FourCC type */ | |
367 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
368 "videocodec: XviD (%dx%d fourcc=%x [%.4s])\n", | |
369 width, height, mod->mux->bih->biCompression, | |
370 (char *)&mod->mux->bih->biCompression); | |
371 | |
13610 | 372 /* Total number of pixels per frame required for PSNR */ |
373 mod->pixels = mod->mux->bih->biWidth*mod->mux->bih->biHeight; | |
374 | |
11437 | 375 /*-------------------------------------------------------------------- |
376 * Dispatch all module settings to XviD structures | |
377 *------------------------------------------------------------------*/ | |
378 | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
379 mod->d_width = d_width; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
380 mod->d_height = d_height; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
381 |
11437 | 382 dispatch_settings(mod); |
383 | |
384 /*-------------------------------------------------------------------- | |
385 * Set remaining information in the xvid_enc_create_t structure | |
386 *------------------------------------------------------------------*/ | |
387 | |
388 if(set_create_struct(mod) == BAD) | |
389 return(BAD); | |
390 | |
391 /*-------------------------------------------------------------------- | |
392 * Encoder instance creation | |
393 *------------------------------------------------------------------*/ | |
394 | |
395 err = xvid_encore(NULL, XVID_ENC_CREATE, &mod->create, NULL); | |
396 | |
397 if(err<0) { | |
398 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
399 "xvid: xvidcore returned a '%s' error\n", errorstring(err)); | |
400 return(BAD); | |
401 } | |
402 | |
403 /* Store the encoder instance into the private data */ | |
404 mod->instance = mod->create.handle; | |
405 | |
406 return(FINE); | |
407 } | |
408 | |
409 /*============================================================================ | |
410 * uninit | |
411 *==========================================================================*/ | |
412 | |
413 static void | |
414 uninit(struct vf_instance_s* vf) | |
415 { | |
416 | |
417 xvid_mplayer_module_t *mod = (xvid_mplayer_module_t *)vf->priv; | |
418 | |
419 /* Destroy xvid instance */ | |
420 xvid_encore(mod->instance, XVID_ENC_DESTROY, NULL, NULL); | |
421 | |
13610 | 422 /* Display stats (if any) */ |
423 print_stats(mod); | |
11437 | 424 |
13610 | 425 /* Close PSNR file if ever opened */ |
426 if (mod->fvstats) { | |
427 fclose(mod->fvstats); | |
428 mod->fvstats = NULL; | |
11437 | 429 } |
430 | |
13610 | 431 /* Free allocated memory */ |
432 if(mod->frame.quant_intra_matrix) | |
433 free(mod->frame.quant_intra_matrix); | |
434 | |
435 if(mod->frame.quant_inter_matrix) | |
436 free(mod->frame.quant_inter_matrix); | |
437 | |
438 if(mod->mux->bih) | |
439 free(mod->mux->bih); | |
440 | |
441 free(vf->priv); | |
442 vf->priv=NULL; | |
11437 | 443 |
444 return; | |
445 } | |
446 | |
447 /*============================================================================ | |
448 * control | |
449 *==========================================================================*/ | |
450 | |
451 static int | |
452 control(struct vf_instance_s* vf, int request, void* data) | |
453 { | |
13610 | 454 xvid_mplayer_module_t *mod = (xvid_mplayer_module_t *)vf->priv; |
455 | |
456 switch(request){ | |
457 case VFCTRL_FLUSH_FRAMES: | |
458 if(mod)/*paranoid*/ | |
459 flush_internal_buffers(mod); | |
460 break; | |
461 } | |
11437 | 462 return(CONTROL_UNKNOWN); |
463 } | |
464 | |
465 /*============================================================================ | |
466 * query_format | |
467 *==========================================================================*/ | |
468 | |
469 static int | |
470 query_format(struct vf_instance_s* vf, unsigned int fmt) | |
471 { | |
472 switch(fmt){ | |
473 case IMGFMT_YV12: | |
474 case IMGFMT_IYUV: | |
475 case IMGFMT_I420: | |
476 return(VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW); | |
477 case IMGFMT_YUY2: | |
478 case IMGFMT_UYVY: | |
479 return(VFCAP_CSP_SUPPORTED); | |
480 } | |
481 return(BAD); | |
482 } | |
483 | |
484 /*============================================================================ | |
485 * put_image | |
486 *==========================================================================*/ | |
487 | |
488 static int | |
489 put_image(struct vf_instance_s* vf, mp_image_t *mpi) | |
490 { | |
491 int size; | |
492 xvid_enc_stats_t stats; | |
493 xvid_mplayer_module_t *mod = (xvid_mplayer_module_t *)vf->priv; | |
494 | |
495 /* Prepare the stats */ | |
496 memset(&stats,0,sizeof( xvid_enc_stats_t)); | |
497 stats.version = XVID_VERSION; | |
498 | |
499 /* ------------------------------------------------------------------- | |
500 * Set remaining information in the xvid_enc_frame_t structure | |
501 * NB: all the other struct members were initialized by | |
502 * dispatch_settings | |
503 * -----------------------------------------------------------------*/ | |
504 | |
505 if(set_frame_struct(mod, mpi) == BAD) | |
506 return(BAD); | |
507 | |
508 /* ------------------------------------------------------------------- | |
509 * Encode the frame | |
510 * ---------------------------------------------------------------- */ | |
511 | |
512 size = xvid_encore(mod->instance, XVID_ENC_ENCODE, &mod->frame, &stats); | |
513 | |
514 /* Analyse the returned value */ | |
515 if(size<0) { | |
516 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
517 "xvid: xvidcore returned a '%s' error\n", errorstring(size)); | |
518 return(BAD); | |
519 } | |
520 | |
521 /* If size is == 0, we're done with that frame */ | |
522 if(size == 0) return(FINE); | |
523 | |
13610 | 524 /* xvidcore returns stats about encoded frame in an asynchronous way |
525 * accumulate these stats */ | |
526 update_stats(mod, &stats); | |
11437 | 527 |
528 /* xvidcore outputed bitstream -- mux it */ | |
529 muxer_write_chunk(mod->mux, | |
530 size, | |
531 (mod->frame.out_flags & XVID_KEYFRAME)?0x10:0); | |
532 | |
533 return(FINE); | |
534 } | |
535 | |
536 /*============================================================================ | |
537 * vf_open | |
538 *==========================================================================*/ | |
539 | |
540 static int | |
541 vf_open(vf_instance_t *vf, char* args) | |
542 { | |
543 xvid_mplayer_module_t *mod; | |
544 xvid_gbl_init_t xvid_gbl_init; | |
545 xvid_gbl_info_t xvid_gbl_info; | |
546 | |
547 /* Setting libmpcodec module API pointers */ | |
548 vf->config = config; | |
549 vf->control = control; | |
550 vf->uninit = uninit; | |
551 vf->query_format = query_format; | |
552 vf->put_image = put_image; | |
553 | |
554 /* Allocate the private part of the codec module */ | |
555 vf->priv = malloc(sizeof(xvid_mplayer_module_t)); | |
556 mod = (xvid_mplayer_module_t*)vf->priv; | |
557 | |
558 if(mod == NULL) { | |
559 mp_msg(MSGT_MENCODER,MSGL_ERR, | |
560 "xvid: memory allocation failure (private data)\n"); | |
561 return(BAD); | |
562 } | |
563 | |
564 /* Initialize the module to zeros */ | |
565 memset(mod, 0, sizeof(xvid_mplayer_module_t)); | |
566 mod->min_sse_y = mod->min_sse_u = mod->min_sse_v = INT_MAX; | |
567 mod->max_sse_y = mod->max_sse_u = mod->max_sse_v = INT_MIN; | |
568 | |
569 /* Bind the Muxer */ | |
570 mod->mux = (muxer_stream_t*)args; | |
571 | |
572 /* Initialize muxer BITMAP header */ | |
14549
acf3241be19b
Initialized BITMAPINFOHEADER to 0 to avoid problems, esp. windows has problems
reimar
parents:
13853
diff
changeset
|
573 mod->mux->bih = calloc(1, sizeof(BITMAPINFOHEADER)); |
11437 | 574 |
575 if(mod->mux->bih == NULL) { | |
576 mp_msg(MSGT_MENCODER,MSGL_ERR, | |
577 "xvid: memory allocation failure (BITMAP header)\n"); | |
578 return(BAD); | |
579 } | |
580 | |
581 mod->mux->bih->biSize = sizeof(BITMAPINFOHEADER); | |
582 mod->mux->bih->biWidth = 0; | |
583 mod->mux->bih->biHeight = 0; | |
584 mod->mux->bih->biPlanes = 1; | |
13610 | 585 mod->mux->bih->biBitCount = 12; |
11437 | 586 mod->mux->bih->biCompression = mmioFOURCC('X','V','I','D'); |
587 | |
588 /* Retrieve information about the host XviD library */ | |
589 memset(&xvid_gbl_info, 0, sizeof(xvid_gbl_info_t)); | |
590 xvid_gbl_info.version = XVID_VERSION; | |
591 | |
592 if (xvid_global(NULL, XVID_GBL_INFO, &xvid_gbl_info, NULL) < 0) { | |
13610 | 593 mp_msg(MSGT_MENCODER,MSGL_WARN, "xvid: could not get information about the library\n"); |
11437 | 594 } else { |
595 mp_msg(MSGT_MENCODER,MSGL_INFO, "xvid: using library version %d.%d.%d (build %s)\n", | |
596 XVID_VERSION_MAJOR(xvid_gbl_info.actual_version), | |
597 XVID_VERSION_MINOR(xvid_gbl_info.actual_version), | |
598 XVID_VERSION_PATCH(xvid_gbl_info.actual_version), | |
599 xvid_gbl_info.build); | |
600 } | |
601 | |
602 /* Initialize the xvid_gbl_init structure */ | |
603 memset(&xvid_gbl_init, 0, sizeof(xvid_gbl_init_t)); | |
604 xvid_gbl_init.version = XVID_VERSION; | |
11920 | 605 xvid_gbl_init.debug = xvidenc_debug; |
11437 | 606 |
607 /* Initialize the xvidcore library */ | |
608 if (xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL) < 0) { | |
609 mp_msg(MSGT_MENCODER,MSGL_ERR, "xvid: initialisation failure\n"); | |
610 return(BAD); | |
611 } | |
612 | |
613 return(FINE); | |
614 } | |
615 | |
616 /***************************************************************************** | |
617 * Helper functions | |
618 ****************************************************************************/ | |
619 | |
620 static void *read_matrix(unsigned char *filename); | |
621 | |
622 static void dispatch_settings(xvid_mplayer_module_t *mod) | |
623 { | |
624 xvid_enc_create_t *create = &mod->create; | |
625 xvid_enc_frame_t *frame = &mod->frame; | |
626 xvid_plugin_single_t *onepass = &mod->onepass; | |
627 xvid_plugin_2pass2_t *pass2 = &mod->pass2; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
628 XVIDRational ar; |
11437 | 629 |
630 const int motion_presets[7] = | |
631 { | |
632 0, | |
633 0, | |
634 0, | |
635 0, | |
636 XVID_ME_HALFPELREFINE16, | |
637 XVID_ME_HALFPELREFINE16 | XVID_ME_ADVANCEDDIAMOND16, | |
638 XVID_ME_HALFPELREFINE16 | XVID_ME_EXTSEARCH16 | | |
639 XVID_ME_HALFPELREFINE8 | XVID_ME_USESQUARES16 | |
640 }; | |
641 | |
642 | |
643 /* ------------------------------------------------------------------- | |
644 * Dispatch all settings having an impact on the "create" structure | |
645 * This includes plugins as they are passed to encore through the | |
646 * create structure | |
647 * -----------------------------------------------------------------*/ | |
648 | |
649 /* ------------------------------------------------------------------- | |
650 * The create structure | |
651 * ---------------------------------------------------------------- */ | |
652 | |
653 create->global = 0; | |
654 | |
655 if(xvidenc_packed) | |
656 create->global |= XVID_GLOBAL_PACKED; | |
657 | |
658 if(xvidenc_closed_gop) | |
659 create->global |= XVID_GLOBAL_CLOSED_GOP; | |
660 | |
11920 | 661 if(xvidenc_psnr) |
662 xvidenc_stats = 1; | |
663 | |
11437 | 664 if(xvidenc_stats) |
665 create->global |= XVID_GLOBAL_EXTRASTATS_ENABLE; | |
666 | |
667 create->num_zones = 0; | |
668 create->zones = NULL; | |
669 create->num_plugins = 0; | |
670 create->plugins = NULL; | |
671 create->num_threads = 0; | |
672 create->max_bframes = xvidenc_max_bframes; | |
673 create->bquant_ratio = xvidenc_bquant_ratio; | |
674 create->bquant_offset = xvidenc_bquant_offset; | |
675 create->max_key_interval = xvidenc_max_key_interval; | |
676 create->frame_drop_ratio = xvidenc_frame_drop_ratio; | |
677 create->min_quant[0] = xvidenc_min_quant[0]; | |
678 create->min_quant[1] = xvidenc_min_quant[1]; | |
679 create->min_quant[2] = xvidenc_min_quant[2]; | |
680 create->max_quant[0] = xvidenc_max_quant[0]; | |
681 create->max_quant[1] = xvidenc_max_quant[1]; | |
682 create->max_quant[2] = xvidenc_max_quant[2]; | |
683 | |
684 | |
685 /* ------------------------------------------------------------------- | |
686 * The single pass plugin | |
687 * ---------------------------------------------------------------- */ | |
688 | |
13675
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
689 if (xvidenc_bitrate > 16000) onepass->bitrate = xvidenc_bitrate; |
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
690 else onepass->bitrate = xvidenc_bitrate*1000; |
11437 | 691 onepass->reaction_delay_factor = xvidenc_cbr_reaction_delay_factor; |
692 onepass->averaging_period = xvidenc_cbr_averaging_period; | |
693 onepass->buffer = xvidenc_cbr_buffer; | |
694 | |
695 /* ------------------------------------------------------------------- | |
696 * The pass2 plugin | |
697 * ---------------------------------------------------------------- */ | |
698 | |
699 pass2->keyframe_boost = xvidenc_vbr_keyframe_boost; | |
700 pass2->overflow_control_strength = xvidenc_vbr_overflow_control_strength; | |
701 pass2->curve_compression_high = xvidenc_vbr_curve_compression_high; | |
702 pass2->curve_compression_low = xvidenc_vbr_curve_compression_low; | |
703 pass2->max_overflow_improvement = xvidenc_vbr_max_overflow_improvement; | |
704 pass2->max_overflow_degradation = xvidenc_vbr_max_overflow_degradation; | |
705 pass2->kfreduction = xvidenc_vbr_kfreduction; | |
11586 | 706 pass2->kfthreshold = xvidenc_vbr_kfthreshold; |
11437 | 707 pass2->container_frame_overhead = xvidenc_vbr_container_frame_overhead; |
708 | |
709 /* ------------------------------------------------------------------- | |
710 * The frame structure | |
711 * ---------------------------------------------------------------- */ | |
712 frame->vol_flags = 0; | |
713 frame->vop_flags = 0; | |
714 frame->motion = 0; | |
715 | |
716 frame->vop_flags |= XVID_VOP_HALFPEL; | |
717 frame->motion |= motion_presets[xvidenc_motion]; | |
718 | |
719 if(xvidenc_stats) | |
720 frame->vol_flags |= XVID_VOL_EXTRASTATS; | |
721 | |
722 if(xvidenc_greyscale) | |
723 frame->vop_flags |= XVID_VOP_GREYSCALE; | |
724 | |
725 if(xvidenc_cartoon) { | |
726 frame->vop_flags |= XVID_VOP_CARTOON; | |
727 frame->motion |= XVID_ME_DETECT_STATIC_MOTION; | |
728 } | |
729 | |
730 if(xvidenc_intra_matrix_file != NULL) { | |
731 frame->quant_intra_matrix = (unsigned char*)read_matrix(xvidenc_intra_matrix_file); | |
732 if(frame->quant_intra_matrix != NULL) { | |
13610 | 733 mp_msg(MSGT_MENCODER, MSGL_INFO, "xvid: Loaded Intra matrix (switching to mpeg quantization type)\n"); |
11437 | 734 if(xvidenc_quant_method) free(xvidenc_quant_method); |
735 xvidenc_quant_method = strdup("mpeg"); | |
736 } | |
737 } | |
738 if(xvidenc_inter_matrix_file != NULL) { | |
739 frame->quant_inter_matrix = read_matrix(xvidenc_inter_matrix_file); | |
740 if(frame->quant_inter_matrix) { | |
13610 | 741 mp_msg(MSGT_MENCODER, MSGL_INFO, "\nxvid: Loaded Inter matrix (switching to mpeg quantization type)\n"); |
11437 | 742 if(xvidenc_quant_method) free(xvidenc_quant_method); |
743 xvidenc_quant_method = strdup("mpeg"); | |
744 } | |
745 } | |
746 if(xvidenc_quant_method != NULL && !strcasecmp(xvidenc_quant_method, "mpeg")) { | |
747 frame->vol_flags |= XVID_VOL_MPEGQUANT; | |
748 } | |
749 if(xvidenc_quarterpel) { | |
750 frame->vol_flags |= XVID_VOL_QUARTERPEL; | |
751 frame->motion |= XVID_ME_QUARTERPELREFINE16; | |
752 frame->motion |= XVID_ME_QUARTERPELREFINE8; | |
753 } | |
754 if(xvidenc_gmc) { | |
755 frame->vol_flags |= XVID_VOL_GMC; | |
756 frame->motion |= XVID_ME_GME_REFINE; | |
757 } | |
758 if(xvidenc_interlaced) { | |
759 frame->vol_flags |= XVID_VOL_INTERLACING; | |
760 } | |
761 if(xvidenc_trellis) { | |
762 frame->vop_flags |= XVID_VOP_TRELLISQUANT; | |
763 } | |
764 if(xvidenc_hqacpred) { | |
765 frame->vop_flags |= XVID_VOP_HQACPRED; | |
766 } | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
767 if(xvidenc_chroma_opt) { |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
768 frame->vop_flags |= XVID_VOP_CHROMAOPT; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
769 } |
11437 | 770 if(xvidenc_motion > 4) { |
771 frame->vop_flags |= XVID_VOP_INTER4V; | |
772 } | |
773 if(xvidenc_chromame) { | |
774 frame->motion |= XVID_ME_CHROMA_PVOP; | |
775 frame->motion |= XVID_ME_CHROMA_BVOP; | |
776 } | |
777 if(xvidenc_vhq >= 1) { | |
778 frame->vop_flags |= XVID_VOP_MODEDECISION_RD; | |
779 } | |
780 if(xvidenc_vhq >= 2) { | |
781 frame->motion |= XVID_ME_HALFPELREFINE16_RD; | |
782 frame->motion |= XVID_ME_QUARTERPELREFINE16_RD; | |
783 } | |
784 if(xvidenc_vhq >= 3) { | |
785 frame->motion |= XVID_ME_HALFPELREFINE8_RD; | |
786 frame->motion |= XVID_ME_QUARTERPELREFINE8_RD; | |
787 frame->motion |= XVID_ME_CHECKPREDICTION_RD; | |
788 } | |
789 if(xvidenc_vhq >= 4) { | |
790 frame->motion |= XVID_ME_EXTSEARCH_RD; | |
791 } | |
13610 | 792 if(xvidenc_bvhq >= 1) { |
793 #if XVID_API >= XVID_MAKE_API(4,1) | |
794 frame->vop_flags |= XVID_VOP_RD_BVOP; | |
795 #endif | |
796 } | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
797 if(xvidenc_turbo) { |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
798 frame->motion |= XVID_ME_FASTREFINE16; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
799 frame->motion |= XVID_ME_FASTREFINE8; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
800 frame->motion |= XVID_ME_SKIP_DELTASEARCH; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
801 frame->motion |= XVID_ME_FAST_MODEINTERPOLATE; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
802 frame->motion |= XVID_ME_BFRAME_EARLYSTOP; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
803 } |
11437 | 804 |
805 /* motion level == 0 means no motion search which is equivalent to | |
806 * intra coding only */ | |
807 if(xvidenc_motion == 0) { | |
808 frame->type = XVID_TYPE_IVOP; | |
809 } else { | |
810 frame->type = XVID_TYPE_AUTO; | |
811 } | |
812 | |
813 frame->bframe_threshold = xvidenc_bframe_threshold; | |
814 | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
815 /* PAR related initialization */ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
816 frame->par = XVID_PAR_11_VGA; /* Default */ |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
817 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
818 if(xvidenc_dar_aspect > 0) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
819 ar = xvid_d2q(xvidenc_dar_aspect * mod->mux->bih->biHeight / mod->mux->bih->biWidth, 255); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
820 else if(xvidenc_autoaspect) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
821 ar = xvid_d2q((float)mod->d_width / mod->d_height * mod->mux->bih->biHeight / mod->mux->bih->biWidth, 255); |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
822 else ar.num = ar.den = 0; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
823 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
824 if(ar.den != 0) { |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
825 if(ar.num == 12 && ar.den == 11) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
826 frame->par = XVID_PAR_43_PAL; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
827 else if(ar.num == 10 && ar.den == 11) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
828 frame->par = XVID_PAR_43_NTSC; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
829 else if(ar.num == 16 && ar.den == 11) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
830 frame->par = XVID_PAR_169_PAL; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
831 else if(ar.num == 40 && ar.den == 33) |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
832 frame->par = XVID_PAR_169_NTSC; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
833 else |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
834 { |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
835 frame->par = XVID_PAR_EXT; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
836 frame->par_width = ar.num; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
837 frame->par_height= ar.den; |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
838 } |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
839 |
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
840 } else if(xvidenc_par != NULL) { |
11437 | 841 if(strcasecmp(xvidenc_par, "pal43") == 0) |
842 frame->par = XVID_PAR_43_PAL; | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
843 else if(strcasecmp(xvidenc_par, "pal169") == 0) |
11437 | 844 frame->par = XVID_PAR_169_PAL; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
845 else if(strcasecmp(xvidenc_par, "ntsc43") == 0) |
11437 | 846 frame->par = XVID_PAR_43_NTSC; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
847 else if(strcasecmp(xvidenc_par, "ntsc169") == 0) |
11437 | 848 frame->par = XVID_PAR_169_NTSC; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
849 else if(strcasecmp(xvidenc_par, "ext") == 0) |
11437 | 850 frame->par = XVID_PAR_EXT; |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
851 |
11437 | 852 if(frame->par == XVID_PAR_EXT) { |
853 if(xvidenc_par_width) | |
854 frame->par_width = xvidenc_par_width; | |
855 else | |
856 frame->par_width = 1; | |
857 | |
858 if(xvidenc_par_height) | |
859 frame->par_height = xvidenc_par_height; | |
860 else | |
861 frame->par_height = 1; | |
862 } | |
11912
8eb96d751dcd
new options - aspect,autoaspect,turbo,chroma_opt. patch by Nico <nsabbi@tiscali.it> and Edouard Gomez
iive
parents:
11586
diff
changeset
|
863 } |
13610 | 864 |
865 /* Display par information */ | |
866 mp_msg(MSGT_MENCODER, MSGL_INFO, "xvid: par=%d/%d (%s), displayed=%dx%d, sampled=%dx%d\n", | |
867 ar.num, ar.den, par_string(frame->par), | |
868 mod->d_width, mod->d_height, mod->mux->bih->biWidth, mod->mux->bih->biHeight); | |
11437 | 869 return; |
870 } | |
871 | |
872 static int set_create_struct(xvid_mplayer_module_t *mod) | |
873 { | |
874 int pass; | |
875 xvid_enc_create_t *create = &mod->create; | |
876 | |
877 /* Most of the structure is initialized by dispatch settings, only a | |
878 * few things are missing */ | |
879 create->version = XVID_VERSION; | |
880 | |
881 /* Width and Height */ | |
882 create->width = mod->mux->bih->biWidth; | |
883 create->height = mod->mux->bih->biHeight; | |
884 | |
885 /* FPS */ | |
886 create->fincr = mod->mux->h.dwScale; | |
887 create->fbase = mod->mux->h.dwRate; | |
888 | |
889 /* Encodings zones */ | |
890 memset(mod->zones, 0, sizeof(mod->zones)); | |
891 create->zones = mod->zones; | |
892 create->num_zones = 0; | |
893 | |
894 /* Plugins */ | |
895 memset(mod->plugins, 0, sizeof(mod->plugins)); | |
896 create->plugins = mod->plugins; | |
897 create->num_plugins = 0; | |
898 | |
899 /* ------------------------------------------------------------------- | |
900 * Initialize and bind the right rate controller plugin | |
901 * ---------------------------------------------------------------- */ | |
902 | |
903 /* First we try to sort out configuration conflicts */ | |
904 if(xvidenc_quantizer != 0 && (xvidenc_bitrate || xvidenc_pass)) { | |
905 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
906 "xvid: you can't mix Fixed Quantizer Rate Control" | |
907 " with other Rate Control mechanisms\n"); | |
908 return(BAD); | |
909 } | |
910 | |
911 if(xvidenc_bitrate != 0 && xvidenc_pass == 1) { | |
13610 | 912 mp_msg(MSGT_MENCODER, MSGL_WARN, |
11437 | 913 "xvid: bitrate setting is ignored during first pass\n"); |
914 } | |
915 | |
916 /* Sort out which sort of pass we are supposed to do | |
917 * pass == 1<<0 CBR | |
918 * pass == 1<<1 Two pass first pass | |
919 * pass == 1<<2 Two pass second pass | |
920 * pass == 1<<3 Constant quantizer | |
921 */ | |
922 #define MODE_CBR (1<<0) | |
923 #define MODE_2PASS1 (1<<1) | |
924 #define MODE_2PASS2 (1<<2) | |
925 #define MODE_QUANT (1<<3) | |
926 | |
927 pass = 0; | |
928 | |
929 if(xvidenc_bitrate != 0 && xvidenc_pass == 0) | |
930 pass |= MODE_CBR; | |
931 | |
932 if(xvidenc_pass == 1) | |
933 pass |= MODE_2PASS1; | |
934 | |
935 if(xvidenc_bitrate != 0 && xvidenc_pass == 2) | |
936 pass |= MODE_2PASS2; | |
937 | |
938 if(xvidenc_quantizer != 0 && xvidenc_pass == 0) | |
939 pass |= MODE_QUANT; | |
940 | |
941 /* We must be in at least one RC mode */ | |
942 if(pass == 0) { | |
943 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
944 "xvid: you must specify one or a valid combination of " | |
945 "'bitrate', 'pass', 'quantizer' settings\n"); | |
946 return(BAD); | |
947 } | |
948 | |
949 /* Sanity checking */ | |
950 if(pass != MODE_CBR && pass != MODE_QUANT && | |
951 pass != MODE_2PASS1 && pass != MODE_2PASS2) { | |
952 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
953 "xvid: this code should not be reached - fill a bug " | |
954 "report\n"); | |
955 return(BAD); | |
956 } | |
957 | |
958 /* This is a single pass encoding: either a CBR pass or a constant | |
959 * quantizer pass */ | |
960 if(pass == MODE_CBR || pass == MODE_QUANT) { | |
961 xvid_plugin_single_t *onepass = &mod->onepass; | |
962 | |
963 /* There is not much left to initialize after dispatch settings */ | |
964 onepass->version = XVID_VERSION; | |
13675
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
965 if (xvidenc_bitrate > 16000) onepass->bitrate = xvidenc_bitrate; |
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
966 else onepass->bitrate = xvidenc_bitrate*1000; |
11437 | 967 |
968 /* Quantizer mode uses the same plugin, we have only to define | |
969 * a constant quantizer zone beginning at frame 0 */ | |
970 if(pass == MODE_QUANT) { | |
11929 | 971 XVIDRational squant; |
972 squant = xvid_d2q(xvidenc_quantizer,128); | |
11437 | 973 |
974 create->zones[create->num_zones].mode = XVID_ZONE_QUANT; | |
975 create->zones[create->num_zones].frame = 0; | |
12806 | 976 create->zones[create->num_zones].increment = squant.num; |
977 create->zones[create->num_zones].base = squant.den; | |
11437 | 978 create->num_zones++; |
979 | |
980 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
981 "xvid: Fixed Quant Rate Control -- quantizer=%d/%d=%2.2f\n", | |
11929 | 982 squant.num, |
983 squant.den, | |
984 (float)(squant.num)/(float)(squant.den)); | |
11437 | 985 |
986 } else { | |
987 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
988 "xvid: CBR Rate Control -- bitrate=%dkbit/s\n", | |
13675
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
989 xvidenc_bitrate>16000?xvidenc_bitrate/1000:xvidenc_bitrate); |
11437 | 990 } |
991 | |
992 create->plugins[create->num_plugins].func = xvid_plugin_single; | |
993 create->plugins[create->num_plugins].param = onepass; | |
994 create->num_plugins++; | |
995 } | |
996 | |
997 /* This is the first pass of a Two pass process */ | |
998 if(pass == MODE_2PASS1) { | |
999 xvid_plugin_2pass1_t *pass1 = &mod->pass1; | |
1000 | |
1001 /* There is not much to initialize for this plugin */ | |
1002 pass1->version = XVID_VERSION; | |
1003 pass1->filename = XVID_FIRST_PASS_FILENAME; | |
1004 | |
1005 create->plugins[create->num_plugins].func = xvid_plugin_2pass1; | |
1006 create->plugins[create->num_plugins].param = pass1; | |
1007 create->num_plugins++; | |
1008 | |
1009 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1010 "xvid: 2Pass Rate Control -- 1st pass\n"); | |
1011 } | |
1012 | |
1013 /* This is the second pass of a Two pass process */ | |
1014 if(pass == MODE_2PASS2) { | |
1015 xvid_plugin_2pass2_t *pass2 = &mod->pass2; | |
1016 | |
1017 /* There is not much left to initialize after dispatch settings */ | |
1018 pass2->version = XVID_VERSION; | |
1019 pass2->filename = XVID_FIRST_PASS_FILENAME; | |
1020 | |
1021 /* Positive bitrate values are bitrates as usual but if the | |
1022 * value is negative it is considered as being a total size | |
1023 * to reach (in kilobytes) */ | |
1024 if(xvidenc_bitrate > 0) { | |
13675
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
1025 if(xvidenc_bitrate > 16000) pass2->bitrate = xvidenc_bitrate; |
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
1026 else pass2->bitrate = xvidenc_bitrate*1000; |
11437 | 1027 mp_msg(MSGT_MENCODER, MSGL_INFO, |
1028 "xvid: 2Pass Rate Control -- 2nd pass -- bitrate=%dkbit/s\n", | |
13675
d4cba4c4c54c
Bitrate setting option in ve_xvid4.c doesn't follow the rules described
rathann
parents:
13610
diff
changeset
|
1029 xvidenc_bitrate>16000?xvidenc_bitrate/1000:xvidenc_bitrate); |
11437 | 1030 } else { |
1031 pass2->bitrate = xvidenc_bitrate; | |
1032 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1033 "xvid: 2Pass Rate Control -- 2nd pass -- total size=%dkB\n", | |
1034 -xvidenc_bitrate); | |
1035 } | |
1036 | |
1037 create->plugins[create->num_plugins].func = xvid_plugin_2pass2; | |
1038 create->plugins[create->num_plugins].param = pass2; | |
1039 create->num_plugins++; | |
1040 } | |
1041 | |
1042 return(FINE); | |
1043 } | |
1044 | |
1045 static int set_frame_struct(xvid_mplayer_module_t *mod, mp_image_t *mpi) | |
1046 { | |
1047 xvid_enc_frame_t *frame = &mod->frame; | |
1048 | |
1049 /* Most of the initialization is done during dispatch_settings */ | |
1050 frame->version = XVID_VERSION; | |
1051 | |
1052 /* Bind output buffer */ | |
1053 frame->bitstream = mod->mux->buffer; | |
1054 frame->length = -1; | |
1055 | |
1056 /* Frame format */ | |
1057 switch(mpi->imgfmt) { | |
1058 case IMGFMT_YV12: | |
1059 case IMGFMT_IYUV: | |
1060 case IMGFMT_I420: | |
1061 frame->input.csp = XVID_CSP_USER; | |
1062 break; | |
1063 case IMGFMT_YUY2: | |
1064 frame->input.csp = XVID_CSP_YUY2; | |
1065 break; | |
1066 case IMGFMT_UYVY: | |
1067 frame->input.csp = XVID_CSP_UYVY; | |
1068 break; | |
1069 default: | |
1070 mp_msg(MSGT_MENCODER, MSGL_ERR, | |
1071 "xvid: unsupported picture format (%s)!\n", | |
1072 vo_format_name(mpi->imgfmt)); | |
1073 return(BAD); | |
1074 } | |
1075 | |
1076 /* Bind source frame */ | |
1077 frame->input.plane[0] = mpi->planes[0]; | |
1078 frame->input.plane[1] = mpi->planes[1]; | |
1079 frame->input.plane[2] = mpi->planes[2]; | |
1080 frame->input.stride[0] = mpi->stride[0]; | |
1081 frame->input.stride[1] = mpi->stride[1]; | |
1082 frame->input.stride[2] = mpi->stride[2]; | |
1083 | |
1084 /* Force the right quantizer -- It is internally managed by RC | |
1085 * plugins */ | |
1086 frame->quant = 0; | |
1087 | |
1088 return(FINE); | |
1089 } | |
1090 | |
13610 | 1091 static void |
1092 flush_internal_buffers(xvid_mplayer_module_t *mod) | |
1093 { | |
1094 int size; | |
1095 xvid_enc_frame_t *frame = &mod->frame; | |
1096 | |
1097 if (mod->instance == NULL) | |
1098 return;/*encoder not inited*/ | |
1099 | |
1100 /* Init a fake frame to force flushing */ | |
1101 frame->version = XVID_VERSION; | |
1102 frame->bitstream = mod->mux->buffer; | |
1103 frame->length = -1; | |
1104 frame->input.csp = XVID_CSP_NULL; | |
1105 frame->input.plane[0] = NULL; | |
1106 frame->input.plane[1] = NULL; | |
1107 frame->input.plane[2] = NULL; | |
1108 frame->input.stride[0] = 0; | |
1109 frame->input.stride[1] = 0; | |
1110 frame->input.stride[2] = 0; | |
1111 frame->quant = 0; | |
1112 | |
1113 /* Flush encoder buffers caused by bframes usage */ | |
1114 do { | |
1115 xvid_enc_stats_t stats; | |
1116 memset(&stats, 0, sizeof(xvid_enc_stats_t)); | |
1117 stats.version = XVID_VERSION; | |
1118 | |
1119 /* Encode internal buffer */ | |
1120 size = xvid_encore(mod->instance, XVID_ENC_ENCODE, &mod->frame, &stats); | |
1121 | |
1122 if (size>0) { | |
1123 /* Update stats */ | |
1124 update_stats(mod, &stats); | |
1125 | |
1126 /* xvidcore outputed bitstream -- mux it */ | |
1127 muxer_write_chunk(mod->mux, size, | |
1128 (mod->frame.out_flags & XVID_KEYFRAME)?0x10:0); | |
1129 } | |
1130 } while (size>0); | |
1131 } | |
1132 | |
1133 #define SSE2PSNR(sse, nbpixels) \ | |
1134 ((!(sse)) ? 99.99f : 48.131f - 10*(double)log10((double)(sse)/(double)((nbpixels)))) | |
1135 static void | |
1136 update_stats(xvid_mplayer_module_t *mod, xvid_enc_stats_t *stats) | |
1137 { | |
1138 if(xvidenc_stats && stats->type > 0) { | |
1139 mod->sse_y += stats->sse_y; | |
1140 mod->sse_u += stats->sse_u; | |
1141 mod->sse_v += stats->sse_v; | |
1142 | |
1143 if(mod->min_sse_y > stats->sse_y) { | |
1144 mod->min_sse_y = stats->sse_y; | |
1145 mod->min_sse_u = stats->sse_u; | |
1146 mod->min_sse_v = stats->sse_v; | |
1147 mod->min_framenum = mod->frames; | |
1148 } | |
1149 | |
1150 if(mod->max_sse_y < stats->sse_y) { | |
1151 mod->max_sse_y = stats->sse_y; | |
1152 mod->max_sse_u = stats->sse_u; | |
1153 mod->max_sse_v = stats->sse_v; | |
1154 mod->max_framenum = mod->frames; | |
1155 } | |
1156 | |
1157 if (xvidenc_psnr) { | |
1158 if (!mod->fvstats) { | |
1159 char filename[20]; | |
1160 time_t today2; | |
1161 struct tm *today; | |
1162 today2 = time (NULL); | |
1163 today = localtime (&today2); | |
1164 sprintf (filename, "psnr_%02d%02d%02d.log", today->tm_hour, today->tm_min, today->tm_sec); | |
1165 mod->fvstats = fopen (filename,"w"); | |
1166 if (!mod->fvstats) { | |
1167 perror ("fopen"); | |
1168 /* Disable PSNR file output so we don't get here again */ | |
1169 xvidenc_psnr = 0; | |
1170 } | |
1171 } | |
1172 fprintf (mod->fvstats, "%6d, %2d, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
1173 mod->frames, | |
1174 stats->quant, | |
1175 stats->length, | |
1176 SSE2PSNR (stats->sse_y, mod->pixels), | |
1177 SSE2PSNR (stats->sse_u, mod->pixels / 4), | |
1178 SSE2PSNR (stats->sse_v, mod->pixels / 4), | |
1179 SSE2PSNR (stats->sse_y + stats->sse_u + stats->sse_v,(double)mod->pixels * 1.5), | |
1180 stats->type==1?'I':stats->type==2?'P':stats->type==3?'B':stats->type?'S':'?' | |
1181 ); | |
1182 } | |
1183 mod->frames++; | |
1184 } | |
1185 } | |
1186 | |
1187 static void | |
1188 print_stats(xvid_mplayer_module_t *mod) | |
1189 { | |
1190 if (mod->frames) { | |
1191 mod->sse_y /= mod->frames; | |
1192 mod->sse_u /= mod->frames; | |
1193 mod->sse_v /= mod->frames; | |
1194 | |
1195 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1196 "The value 99.99dB is a special value and represents " | |
1197 "the upper range limit\n"); | |
1198 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1199 "xvid: Min PSNR y : %.2f dB, u : %.2f dB, v : %.2f dB, in frame %d\n", | |
1200 SSE2PSNR(mod->max_sse_y, mod->pixels), | |
1201 SSE2PSNR(mod->max_sse_u, mod->pixels/4), | |
1202 SSE2PSNR(mod->max_sse_v, mod->pixels/4), | |
1203 mod->max_framenum); | |
1204 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1205 "xvid: Average PSNR y : %.2f dB, u : %.2f dB, v : %.2f dB, for %d frames\n", | |
1206 SSE2PSNR(mod->sse_y, mod->pixels), | |
1207 SSE2PSNR(mod->sse_u, mod->pixels/4), | |
1208 SSE2PSNR(mod->sse_v, mod->pixels/4), | |
1209 mod->frames); | |
1210 mp_msg(MSGT_MENCODER, MSGL_INFO, | |
1211 "xvid: Max PSNR y : %.2f dB, u : %.2f dB, v : %.2f dB, in frame %d\n", | |
1212 SSE2PSNR(mod->min_sse_y, mod->pixels), | |
1213 SSE2PSNR(mod->min_sse_u, mod->pixels/4), | |
1214 SSE2PSNR(mod->min_sse_v, mod->pixels/4), | |
1215 mod->min_framenum); | |
1216 } | |
1217 } | |
1218 #undef SSE2PSNR | |
1219 | |
11437 | 1220 static void *read_matrix(unsigned char *filename) |
1221 { | |
1222 int i; | |
1223 unsigned char *matrix; | |
1224 FILE *input; | |
1225 | |
1226 /* Allocate matrix space */ | |
1227 if((matrix = malloc(64*sizeof(unsigned char))) == NULL) | |
1228 return(NULL); | |
1229 | |
1230 /* Open the matrix file */ | |
1231 if((input = fopen(filename, "rb")) == NULL) { | |
13610 | 1232 mp_msg(MSGT_MENCODER, MSGL_ERR, |
11437 | 1233 "xvid: Error opening the matrix file %s\n", |
1234 filename); | |
1235 free(matrix); | |
1236 return(NULL); | |
1237 } | |
1238 | |
1239 /* Read the matrix */ | |
1240 for(i=0; i<64; i++) { | |
1241 | |
1242 int value; | |
1243 | |
1244 /* If fscanf fails then get out of the loop */ | |
1245 if(fscanf(input, "%d", &value) != 1) { | |
13610 | 1246 mp_msg(MSGT_MENCODER, MSGL_ERR, |
11437 | 1247 "xvid: Error reading the matrix file %s\n", |
1248 filename); | |
1249 free(matrix); | |
1250 fclose(input); | |
1251 return(NULL); | |
1252 } | |
1253 | |
1254 /* Clamp the value to safe range */ | |
1255 value = (value< 1)?1 :value; | |
1256 value = (value>255)?255:value; | |
1257 matrix[i] = value; | |
1258 } | |
1259 | |
1260 /* Fills the rest with 1 */ | |
1261 while(i<64) matrix[i++] = 1; | |
1262 | |
1263 /* We're done */ | |
1264 fclose(input); | |
1265 | |
1266 return(matrix); | |
1267 | |
1268 } | |
1269 | |
13610 | 1270 |
1271 static const char * | |
1272 par_string(int parcode) | |
1273 { | |
1274 const char *par_string; | |
1275 switch (parcode) { | |
1276 case XVID_PAR_11_VGA: | |
1277 par_string = "vga11"; | |
1278 break; | |
1279 case XVID_PAR_43_PAL: | |
1280 par_string = "pal43"; | |
1281 break; | |
1282 case XVID_PAR_43_NTSC: | |
1283 par_string = "ntsc43"; | |
1284 break; | |
1285 case XVID_PAR_169_PAL: | |
1286 par_string = "pal169"; | |
1287 break; | |
1288 case XVID_PAR_169_NTSC: | |
1289 par_string = "ntsc69"; | |
1290 break; | |
1291 case XVID_PAR_EXT: | |
1292 par_string = "ext"; | |
1293 break; | |
1294 default: | |
1295 par_string = "unknown"; | |
1296 break; | |
1297 } | |
1298 return (par_string); | |
1299 } | |
1300 | |
11437 | 1301 static const char *errorstring(int err) |
1302 { | |
13610 | 1303 const char *error; |
11437 | 1304 switch(err) { |
1305 case XVID_ERR_FAIL: | |
1306 error = "General fault"; | |
1307 break; | |
1308 case XVID_ERR_MEMORY: | |
1309 error = "Memory allocation error"; | |
1310 break; | |
1311 case XVID_ERR_FORMAT: | |
1312 error = "File format error"; | |
1313 break; | |
1314 case XVID_ERR_VERSION: | |
1315 error = "Structure version not supported"; | |
1316 break; | |
1317 case XVID_ERR_END: | |
1318 error = "End of stream reached"; | |
1319 break; | |
1320 default: | |
1321 error = "Unknown"; | |
1322 } | |
1323 | |
13610 | 1324 return(error); |
11437 | 1325 } |
1326 | |
1327 /***************************************************************************** | |
1328 * Module structure definition | |
1329 ****************************************************************************/ | |
1330 | |
1331 vf_info_t ve_info_xvid = { | |
1332 "XviD 1.0 encoder", | |
1333 "xvid", | |
1334 "Marco Belli <elcabesa@inwind.it>, Edouard Gomez <ed.gomez@free.fr>", | |
1335 "No comment", | |
1336 vf_open | |
1337 }; | |
1338 | |
1339 | |
1340 #endif /* HAVE_XVID4 */ | |
1341 | |
1342 /* Please do not change that tag comment. | |
1343 * arch-tag: 42ccc257-0548-4a3e-9617-2876c4e8ac88 mplayer xvid encoder module */ |