Merge svn changes up to r27441
[mplayer.git] / libmpcodecs / ve_lavc.c
blob1904330ac3270c558f129d750208acf6c596963e
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <math.h>
5 #include <limits.h>
6 #include <time.h>
7 #include <assert.h>
9 #if !defined(INFINITY) && defined(HUGE_VAL)
10 #define INFINITY HUGE_VAL
11 #endif
13 #include "config.h"
15 #include "mp_msg.h"
16 #include "help_mp.h"
17 #include "av_opts.h"
19 #include "codec-cfg.h"
20 #include "stream/stream.h"
21 #include "libmpdemux/demuxer.h"
22 #include "libmpdemux/stheader.h"
24 #include "libmpdemux/muxer.h"
26 #include "img_format.h"
27 #include "mp_image.h"
28 #include "vf.h"
30 extern char* passtmpfile;
32 //===========================================================================//
34 #include "libavcodec/avcodec.h"
36 extern int avcodec_initialized;
38 /* video options */
39 static char *lavc_param_vcodec = "mpeg4";
40 static int lavc_param_vbitrate = -1;
41 static int lavc_param_vrate_tolerance = 1000*8;
42 static int lavc_param_mb_decision = 0; /* default is realtime encoding */
43 static int lavc_param_v4mv = 0;
44 static int lavc_param_vme = 4;
45 static float lavc_param_vqscale = -1;
46 static int lavc_param_vqmin = 2;
47 static int lavc_param_vqmax = 31;
48 static int lavc_param_mb_qmin = 2;
49 static int lavc_param_mb_qmax = 31;
50 static float lavc_param_lmin = 2;
51 static float lavc_param_lmax = 31;
52 static float lavc_param_mb_lmin = 2;
53 static float lavc_param_mb_lmax = 31;
54 static int lavc_param_vqdiff = 3;
55 static float lavc_param_vqcompress = 0.5;
56 static float lavc_param_vqblur = 0.5;
57 static float lavc_param_vb_qfactor = 1.25;
58 static float lavc_param_vb_qoffset = 1.25;
59 static float lavc_param_vi_qfactor = 0.8;
60 static float lavc_param_vi_qoffset = 0.0;
61 static int lavc_param_vmax_b_frames = 0;
62 static int lavc_param_keyint = -1;
63 static int lavc_param_vpass = 0;
64 static int lavc_param_vrc_strategy = 0;
65 static int lavc_param_vb_strategy = 0;
66 static int lavc_param_luma_elim_threshold = 0;
67 static int lavc_param_chroma_elim_threshold = 0;
68 static int lavc_param_packet_size= 0;
69 static int lavc_param_strict= -1;
70 static int lavc_param_data_partitioning= 0;
71 static int lavc_param_gray=0;
72 static float lavc_param_rc_qsquish=1.0;
73 static float lavc_param_rc_qmod_amp=0;
74 static int lavc_param_rc_qmod_freq=0;
75 static char *lavc_param_rc_override_string=NULL;
76 static char *lavc_param_rc_eq="tex^qComp";
77 static int lavc_param_rc_buffer_size=0;
78 static float lavc_param_rc_buffer_aggressivity=1.0;
79 static int lavc_param_rc_max_rate=0;
80 static int lavc_param_rc_min_rate=0;
81 static float lavc_param_rc_initial_cplx=0;
82 static float lavc_param_rc_initial_buffer_occupancy=0.9;
83 static int lavc_param_mpeg_quant=0;
84 static int lavc_param_fdct=0;
85 static int lavc_param_idct=0;
86 static char* lavc_param_aspect = NULL;
87 static int lavc_param_autoaspect = 0;
88 static float lavc_param_lumi_masking= 0.0;
89 static float lavc_param_dark_masking= 0.0;
90 static float lavc_param_temporal_cplx_masking= 0.0;
91 static float lavc_param_spatial_cplx_masking= 0.0;
92 static float lavc_param_p_masking= 0.0;
93 static float lavc_param_border_masking= 0.0;
94 static int lavc_param_normalize_aqp= 0;
95 static int lavc_param_interlaced_dct= 0;
96 static int lavc_param_prediction_method= FF_PRED_LEFT;
97 static int lavc_param_format= IMGFMT_YV12;
98 static int lavc_param_debug= 0;
99 static int lavc_param_psnr= 0;
100 static int lavc_param_me_pre_cmp= 0;
101 static int lavc_param_me_cmp= 0;
102 static int lavc_param_me_sub_cmp= 0;
103 static int lavc_param_mb_cmp= 0;
104 #ifdef FF_CMP_VSAD
105 static int lavc_param_ildct_cmp= FF_CMP_VSAD;
106 #endif
107 static int lavc_param_pre_dia_size= 0;
108 static int lavc_param_dia_size= 0;
109 static int lavc_param_qpel= 0;
110 static int lavc_param_trell= 0;
111 static int lavc_param_lowdelay= 0;
112 static int lavc_param_bit_exact = 0;
113 static int lavc_param_aic= 0;
114 static int lavc_param_aiv= 0;
115 static int lavc_param_umv= 0;
116 static int lavc_param_obmc= 0;
117 static int lavc_param_loop= 0;
118 static int lavc_param_last_pred= 0;
119 static int lavc_param_pre_me= 1;
120 static int lavc_param_me_subpel_quality= 8;
121 static int lavc_param_me_range= 0;
122 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS;
123 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS;
124 static int lavc_param_coder= 0;
125 static int lavc_param_context= 0;
126 static char *lavc_param_intra_matrix = NULL;
127 static char *lavc_param_inter_matrix = NULL;
128 static int lavc_param_cbp= 0;
129 static int lavc_param_mv0= 0;
130 static int lavc_param_noise_reduction= 0;
131 static int lavc_param_qns= 0;
132 static int lavc_param_qp_rd= 0;
133 static int lavc_param_inter_threshold= 0;
134 static int lavc_param_sc_threshold= 0;
135 static int lavc_param_ss= 0;
136 static int lavc_param_top= -1;
137 static int lavc_param_alt= 0;
138 static int lavc_param_ilme= 0;
139 static int lavc_param_nssew= 8;
140 static int lavc_param_closed_gop = 0;
141 static int lavc_param_dc_precision = 8;
142 static int lavc_param_threads= 1;
143 static int lavc_param_turbo = 0;
144 static int lavc_param_skip_threshold=0;
145 static int lavc_param_skip_factor=0;
146 static int lavc_param_skip_exp=0;
147 static int lavc_param_skip_cmp=0;
148 static int lavc_param_brd_scale = 0;
149 static int lavc_param_bidir_refine = 0;
150 static int lavc_param_sc_factor = 1;
151 static int lavc_param_video_global_header= 0;
152 static int lavc_param_mv0_threshold = 256;
153 static int lavc_param_refs = 1;
154 static int lavc_param_b_sensitivity = 40;
155 static int lavc_param_level = FF_LEVEL_UNKNOWN;
157 char *lavc_param_acodec = "mp2";
158 int lavc_param_atag = 0;
159 int lavc_param_abitrate = 224;
160 int lavc_param_audio_global_header= 0;
161 static char *lavc_param_avopt = NULL;
163 #include "m_option.h"
165 #ifdef CONFIG_LIBAVCODEC
166 m_option_t lavcopts_conf[]={
167 {"acodec", &lavc_param_acodec, CONF_TYPE_STRING, 0, 0, 0, NULL},
168 {"abitrate", &lavc_param_abitrate, CONF_TYPE_INT, CONF_RANGE, 1, 1000000, NULL},
169 {"atag", &lavc_param_atag, CONF_TYPE_INT, CONF_RANGE, 0, 0xffff, NULL},
170 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL},
171 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
172 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
173 {"vhq", &lavc_param_mb_decision, CONF_TYPE_FLAG, 0, 0, 1, NULL},
174 {"mbd", &lavc_param_mb_decision, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL},
175 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL},
176 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL},
177 {"vqscale", &lavc_param_vqscale, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 255.0, NULL},
178 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
179 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
180 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
181 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
182 {"lmin", &lavc_param_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL},
183 {"lmax", &lavc_param_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL},
184 {"mblmin", &lavc_param_mb_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL},
185 {"mblmax", &lavc_param_mb_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL},
186 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL},
187 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
188 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
189 {"vb_qfactor", &lavc_param_vb_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL},
190 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL},
191 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
192 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
193 {"vb_strategy", &lavc_param_vb_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
194 {"vb_qoffset", &lavc_param_vb_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL},
195 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL},
196 {"vcelim", &lavc_param_chroma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL},
197 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL},
198 {"vstrict", &lavc_param_strict, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL},
199 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
200 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL},
201 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
202 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL},
203 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL},
204 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL},
205 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
206 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
207 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL},
208 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL},
209 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL},
210 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL},
211 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL},
212 {"vrc_buf_size", &lavc_param_rc_buffer_size, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL},
213 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL},
214 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL},
215 {"vrc_init_occupancy", &lavc_param_rc_initial_buffer_occupancy, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
216 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
217 {"aspect", &lavc_param_aspect, CONF_TYPE_STRING, 0, 0, 0, NULL},
218 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL},
219 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
220 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
221 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
222 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
223 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL},
224 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL},
225 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL},
226 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL},
227 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL},
228 {"format", &lavc_param_format, CONF_TYPE_IMGFMT, 0, 0, 0, NULL},
229 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL},
230 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL},
231 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
232 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
233 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
234 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
235 {"skipcmp", &lavc_param_skip_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
236 #ifdef FF_CMP_VSAD
237 {"ildctcmp", &lavc_param_ildct_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
238 #endif
239 {"bit_exact", &lavc_param_bit_exact, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_BITEXACT, NULL},
240 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL},
241 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL},
242 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL},
243 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL},
244 {"lowdelay", &lavc_param_lowdelay, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_LOW_DELAY, NULL},
245 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
246 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL},
247 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL},
248 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL},
249 #ifdef CODEC_FLAG_H263P_AIC
250 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIC, NULL},
251 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL},
252 #endif
253 #ifdef CODEC_FLAG_H263P_AIV
254 {"aiv", &lavc_param_aiv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIV, NULL},
255 #endif
256 #ifdef CODEC_FLAG_OBMC
257 {"obmc", &lavc_param_obmc, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_OBMC, NULL},
258 #endif
259 #ifdef CODEC_FLAG_LOOP_FILTER
260 {"loop", &lavc_param_loop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_LOOP_FILTER, NULL},
261 #endif
262 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL},
263 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL},
264 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
265 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
266 {"intra_matrix", &lavc_param_intra_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL},
267 {"inter_matrix", &lavc_param_inter_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL},
268 {"cbp", &lavc_param_cbp, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CBP_RD, NULL},
269 {"mv0", &lavc_param_mv0, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_MV0, NULL},
270 {"nr", &lavc_param_noise_reduction, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
271 #ifdef CODEC_FLAG_QP_RD
272 {"qprd", &lavc_param_qp_rd, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QP_RD, NULL},
273 #endif
274 #ifdef CODEC_FLAG_H263P_SLICE_STRUCT
275 {"ss", &lavc_param_ss, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_SLICE_STRUCT, NULL},
276 #endif
277 #ifdef CODEC_FLAG_ALT_SCAN
278 {"alt", &lavc_param_alt, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_ALT_SCAN, NULL},
279 #endif
280 #ifdef CODEC_FLAG_INTERLACED_ME
281 {"ilme", &lavc_param_ilme, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_INTERLACED_ME, NULL},
282 #endif
283 #ifdef CODEC_FLAG_CLOSED_GOP
284 {"cgop", &lavc_param_closed_gop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CLOSED_GOP, NULL},
285 #endif
286 {"dc", &lavc_param_dc_precision, CONF_TYPE_INT, CONF_RANGE, 8, 11, NULL},
287 {"border_mask", &lavc_param_border_masking, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
288 {"inter_threshold", &lavc_param_inter_threshold, CONF_TYPE_INT, CONF_RANGE, -1000000, 1000000, NULL},
289 {"sc_threshold", &lavc_param_sc_threshold, CONF_TYPE_INT, CONF_RANGE, -1000000000, 1000000000, NULL},
290 {"top", &lavc_param_top, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL},
291 {"qns", &lavc_param_qns, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
292 {"nssew", &lavc_param_nssew, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
293 {"threads", &lavc_param_threads, CONF_TYPE_INT, CONF_RANGE, 1, 8, NULL},
294 {"turbo", &lavc_param_turbo, CONF_TYPE_FLAG, 0, 0, 1, NULL},
295 {"skip_threshold", &lavc_param_skip_threshold, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
296 {"skip_factor", &lavc_param_skip_factor, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
297 {"skip_exp", &lavc_param_skip_exp, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL},
298 {"brd_scale", &lavc_param_brd_scale, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL},
299 {"bidir_refine", &lavc_param_bidir_refine, CONF_TYPE_INT, CONF_RANGE, 0, 4, NULL},
300 {"sc_factor", &lavc_param_sc_factor, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL},
301 {"vglobal", &lavc_param_video_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL},
302 {"aglobal", &lavc_param_audio_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL},
303 {"mv0_threshold", &lavc_param_mv0_threshold, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL},
304 {"refs", &lavc_param_refs, CONF_TYPE_INT, CONF_RANGE, 1, 16, NULL},
305 {"b_sensitivity", &lavc_param_b_sensitivity, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL},
306 {"level", &lavc_param_level, CONF_TYPE_INT, CONF_RANGE, INT_MIN, INT_MAX, NULL},
307 {"o", &lavc_param_avopt, CONF_TYPE_STRING, 0, 0, 0, NULL},
308 {NULL, NULL, 0, 0, 0, 0, NULL}
310 #endif
312 struct vf_priv_s {
313 muxer_stream_t* mux;
314 AVCodecContext *context;
315 AVFrame *pic;
316 AVCodec *codec;
317 FILE *stats_file;
320 #define stats_file (vf->priv->stats_file)
321 #define mux_v (vf->priv->mux)
322 #define lavc_venc_context (vf->priv->context)
324 static int encode_frame(struct vf_instance* vf, AVFrame *pic, double pts);
326 static int config(struct vf_instance* vf,
327 int width, int height, int d_width, int d_height,
328 unsigned int flags, unsigned int outfmt){
329 int size, i;
330 void *p;
332 mux_v->bih->biWidth=width;
333 mux_v->bih->biHeight=height;
334 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8);
336 mp_msg(MSGT_MENCODER, MSGL_INFO,"videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n",
337 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression,
338 (char *)&mux_v->bih->biCompression);
340 lavc_venc_context->width = width;
341 lavc_venc_context->height = height;
342 if (lavc_param_vbitrate > 16000) /* != -1 */
343 lavc_venc_context->bit_rate = lavc_param_vbitrate;
344 else if (lavc_param_vbitrate >= 0) /* != -1 */
345 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000;
346 else
347 lavc_venc_context->bit_rate = 800000; /* default */
349 mux_v->avg_rate= lavc_venc_context->bit_rate;
351 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000;
352 lavc_venc_context->time_base= (AVRational){mux_v->h.dwScale, mux_v->h.dwRate};
353 lavc_venc_context->qmin= lavc_param_vqmin;
354 lavc_venc_context->qmax= lavc_param_vqmax;
355 lavc_venc_context->mb_qmin= lavc_param_mb_qmin;
356 lavc_venc_context->mb_qmax= lavc_param_mb_qmax;
357 lavc_venc_context->lmin= (int)(FF_QP2LAMBDA * lavc_param_lmin + 0.5);
358 lavc_venc_context->lmax= (int)(FF_QP2LAMBDA * lavc_param_lmax + 0.5);
359 lavc_venc_context->mb_lmin= (int)(FF_QP2LAMBDA * lavc_param_mb_lmin + 0.5);
360 lavc_venc_context->mb_lmax= (int)(FF_QP2LAMBDA * lavc_param_mb_lmax + 0.5);
361 lavc_venc_context->max_qdiff= lavc_param_vqdiff;
362 lavc_venc_context->qcompress= lavc_param_vqcompress;
363 lavc_venc_context->qblur= lavc_param_vqblur;
364 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames;
365 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor;
366 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy;
367 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy;
368 lavc_venc_context->b_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vb_qoffset + 0.5);
369 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold;
370 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold;
371 lavc_venc_context->rtp_payload_size= lavc_param_packet_size;
372 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1;
373 lavc_venc_context->strict_std_compliance= lavc_param_strict;
374 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor;
375 lavc_venc_context->i_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vi_qoffset + 0.5);
376 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish;
377 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp;
378 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq;
379 lavc_venc_context->rc_eq= lavc_param_rc_eq;
381 mux_v->max_rate=
382 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000;
383 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000;
385 mux_v->vbv_size=
386 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000;
388 lavc_venc_context->rc_initial_buffer_occupancy=
389 lavc_venc_context->rc_buffer_size *
390 lavc_param_rc_initial_buffer_occupancy;
391 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity;
392 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx;
393 lavc_venc_context->debug= lavc_param_debug;
394 lavc_venc_context->last_predictor_count= lavc_param_last_pred;
395 lavc_venc_context->pre_me= lavc_param_pre_me;
396 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp;
397 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size;
398 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality;
399 lavc_venc_context->me_range= lavc_param_me_range;
400 lavc_venc_context->intra_quant_bias= lavc_param_ibias;
401 lavc_venc_context->inter_quant_bias= lavc_param_pbias;
402 lavc_venc_context->coder_type= lavc_param_coder;
403 lavc_venc_context->context_model= lavc_param_context;
404 lavc_venc_context->scenechange_threshold= lavc_param_sc_threshold;
405 lavc_venc_context->noise_reduction= lavc_param_noise_reduction;
406 lavc_venc_context->quantizer_noise_shaping= lavc_param_qns;
407 lavc_venc_context->inter_threshold= lavc_param_inter_threshold;
408 lavc_venc_context->nsse_weight= lavc_param_nssew;
409 lavc_venc_context->frame_skip_threshold= lavc_param_skip_threshold;
410 lavc_venc_context->frame_skip_factor= lavc_param_skip_factor;
411 lavc_venc_context->frame_skip_exp= lavc_param_skip_exp;
412 lavc_venc_context->frame_skip_cmp= lavc_param_skip_cmp;
414 if (lavc_param_intra_matrix)
416 char *tmp;
418 lavc_venc_context->intra_matrix =
419 av_malloc(sizeof(*lavc_venc_context->intra_matrix)*64);
421 i = 0;
422 while ((tmp = strsep(&lavc_param_intra_matrix, ",")) && (i < 64))
424 if (!tmp || (tmp && !strlen(tmp)))
425 break;
426 lavc_venc_context->intra_matrix[i++] = atoi(tmp);
429 if (i != 64)
430 av_freep(&lavc_venc_context->intra_matrix);
431 else
432 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified intra matrix\n");
434 if (lavc_param_inter_matrix)
436 char *tmp;
438 lavc_venc_context->inter_matrix =
439 av_malloc(sizeof(*lavc_venc_context->inter_matrix)*64);
441 i = 0;
442 while ((tmp = strsep(&lavc_param_inter_matrix, ",")) && (i < 64))
444 if (!tmp || (tmp && !strlen(tmp)))
445 break;
446 lavc_venc_context->inter_matrix[i++] = atoi(tmp);
449 if (i != 64)
450 av_freep(&lavc_venc_context->inter_matrix);
451 else
452 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified inter matrix\n");
455 p= lavc_param_rc_override_string;
456 for(i=0; p; i++){
457 int start, end, q;
458 int e=sscanf(p, "%d,%d,%d", &start, &end, &q);
459 if(e!=3){
460 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n");
461 return 0;
463 lavc_venc_context->rc_override=
464 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1));
465 lavc_venc_context->rc_override[i].start_frame= start;
466 lavc_venc_context->rc_override[i].end_frame = end;
467 if(q>0){
468 lavc_venc_context->rc_override[i].qscale= q;
469 lavc_venc_context->rc_override[i].quality_factor= 1.0;
471 else{
472 lavc_venc_context->rc_override[i].qscale= 0;
473 lavc_venc_context->rc_override[i].quality_factor= -q/100.0;
475 p= strchr(p, '/');
476 if(p) p++;
478 lavc_venc_context->rc_override_count=i;
480 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant;
482 lavc_venc_context->dct_algo= lavc_param_fdct;
483 lavc_venc_context->idct_algo= lavc_param_idct;
485 lavc_venc_context->lumi_masking= lavc_param_lumi_masking;
486 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking;
487 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking;
488 lavc_venc_context->p_masking= lavc_param_p_masking;
489 lavc_venc_context->dark_masking= lavc_param_dark_masking;
490 lavc_venc_context->border_masking = lavc_param_border_masking;
492 if (lavc_param_aspect != NULL)
494 int par_width, par_height, e;
495 float ratio=0;
497 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height);
498 if(e==2){
499 if(par_height)
500 ratio= (float)par_width / (float)par_height;
501 }else{
502 e= sscanf (lavc_param_aspect, "%f", &ratio);
505 if (e && ratio > 0.1 && ratio < 10.0) {
506 lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 255);
507 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "sample_aspect_ratio: %d/%d\n",
508 lavc_venc_context->sample_aspect_ratio.num,
509 lavc_venc_context->sample_aspect_ratio.den);
510 mux_v->aspect = ratio;
511 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio);
512 } else {
513 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect);
514 return 0;
517 else if (lavc_param_autoaspect) {
518 lavc_venc_context->sample_aspect_ratio = av_d2q((float)d_width/d_height*height / width, 255);
519 mux_v->aspect = (float)d_width/d_height;
522 /* keyframe interval */
523 if (lavc_param_keyint >= 0) /* != -1 */
524 lavc_venc_context->gop_size = lavc_param_keyint;
525 else
526 lavc_venc_context->gop_size = 250; /* default */
528 lavc_venc_context->flags = 0;
529 if (lavc_param_mb_decision)
531 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_HighQualityEncodingSelected);
532 lavc_venc_context->mb_decision= lavc_param_mb_decision;
535 lavc_venc_context->me_cmp= lavc_param_me_cmp;
536 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp;
537 lavc_venc_context->mb_cmp= lavc_param_mb_cmp;
538 #ifdef FF_CMP_VSAD
539 lavc_venc_context->ildct_cmp= lavc_param_ildct_cmp;
540 #endif
541 lavc_venc_context->dia_size= lavc_param_dia_size;
542 lavc_venc_context->flags|= lavc_param_qpel;
543 lavc_venc_context->flags|= lavc_param_trell;
544 lavc_venc_context->flags|= lavc_param_lowdelay;
545 lavc_venc_context->flags|= lavc_param_bit_exact;
546 lavc_venc_context->flags|= lavc_param_aic;
547 lavc_venc_context->flags|= lavc_param_aiv;
548 lavc_venc_context->flags|= lavc_param_umv;
549 lavc_venc_context->flags|= lavc_param_obmc;
550 lavc_venc_context->flags|= lavc_param_loop;
551 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0;
552 lavc_venc_context->flags|= lavc_param_data_partitioning;
553 lavc_venc_context->flags|= lavc_param_cbp;
554 lavc_venc_context->flags|= lavc_param_mv0;
555 lavc_venc_context->flags|= lavc_param_qp_rd;
556 lavc_venc_context->flags|= lavc_param_ss;
557 lavc_venc_context->flags|= lavc_param_alt;
558 lavc_venc_context->flags|= lavc_param_ilme;
559 #ifdef CODEC_FLAG_CLOSED_GOP
560 lavc_venc_context->flags|= lavc_param_closed_gop;
561 #endif
562 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY;
564 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP;
565 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT;
566 lavc_venc_context->flags|= lavc_param_psnr;
567 lavc_venc_context->intra_dc_precision = lavc_param_dc_precision - 8;
568 lavc_venc_context->prediction_method= lavc_param_prediction_method;
569 lavc_venc_context->brd_scale = lavc_param_brd_scale;
570 lavc_venc_context->bidir_refine = lavc_param_bidir_refine;
571 lavc_venc_context->scenechange_factor = lavc_param_sc_factor;
572 if((lavc_param_video_global_header&1)
573 /*|| (video_global_header==0 && (oc->oformat->flags & AVFMT_GLOBALHEADER))*/){
574 lavc_venc_context->flags |= CODEC_FLAG_GLOBAL_HEADER;
576 if(lavc_param_video_global_header&2){
577 lavc_venc_context->flags2 |= CODEC_FLAG2_LOCAL_HEADER;
579 lavc_venc_context->mv0_threshold = lavc_param_mv0_threshold;
580 lavc_venc_context->refs = lavc_param_refs;
581 lavc_venc_context->b_sensitivity = lavc_param_b_sensitivity;
582 lavc_venc_context->level = lavc_param_level;
584 if(lavc_param_avopt){
585 if(parse_avopts(lavc_venc_context, lavc_param_avopt) < 0){
586 mp_msg(MSGT_MENCODER,MSGL_ERR, "Your options /%s/ look like gibberish to me pal\n", lavc_param_avopt);
587 return 0;
591 mux_v->imgfmt = lavc_param_format;
592 switch(lavc_param_format)
594 case IMGFMT_YV12:
595 lavc_venc_context->pix_fmt = PIX_FMT_YUV420P;
596 break;
597 case IMGFMT_422P:
598 lavc_venc_context->pix_fmt = PIX_FMT_YUV422P;
599 break;
600 case IMGFMT_444P:
601 lavc_venc_context->pix_fmt = PIX_FMT_YUV444P;
602 break;
603 case IMGFMT_411P:
604 lavc_venc_context->pix_fmt = PIX_FMT_YUV411P;
605 break;
606 case IMGFMT_YVU9:
607 lavc_venc_context->pix_fmt = PIX_FMT_YUV410P;
608 break;
609 case IMGFMT_BGR32:
610 lavc_venc_context->pix_fmt = PIX_FMT_RGB32;
611 break;
612 default:
613 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", vo_format_name(lavc_param_format));
614 return 0;
617 if(!stats_file) {
618 /* lavc internal 2pass bitrate control */
619 switch(lavc_param_vpass){
620 case 2:
621 case 3:
622 lavc_venc_context->flags|= CODEC_FLAG_PASS2;
623 stats_file= fopen(passtmpfile, "rb");
624 if(stats_file==NULL){
625 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
626 return 0;
628 fseek(stats_file, 0, SEEK_END);
629 size= ftell(stats_file);
630 fseek(stats_file, 0, SEEK_SET);
632 lavc_venc_context->stats_in= av_malloc(size + 1);
633 lavc_venc_context->stats_in[size]=0;
635 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){
636 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile);
637 return 0;
639 if(lavc_param_vpass == 2)
640 break;
641 else
642 fclose(stats_file);
643 /* fall through */
644 case 1:
645 lavc_venc_context->flags|= CODEC_FLAG_PASS1;
646 stats_file= fopen(passtmpfile, "wb");
647 if(stats_file==NULL){
648 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile);
649 return 0;
651 if(lavc_param_turbo && (lavc_param_vpass == 1)) {
652 /* uses SAD comparison functions instead of other hungrier */
653 lavc_venc_context->me_pre_cmp = 0;
654 lavc_venc_context->me_cmp = 0;
655 lavc_venc_context->me_sub_cmp = 0;
656 lavc_venc_context->mb_cmp = 2;
658 /* Disables diamond motion estimation */
659 lavc_venc_context->pre_dia_size = 0;
660 lavc_venc_context->dia_size = 1;
662 lavc_venc_context->quantizer_noise_shaping = 0; // qns=0
663 lavc_venc_context->noise_reduction = 0; // nr=0
664 lavc_venc_context->mb_decision = 0; // mbd=0 ("realtime" encoding)
666 lavc_venc_context->flags &= ~CODEC_FLAG_QPEL;
667 lavc_venc_context->flags &= ~CODEC_FLAG_4MV;
668 lavc_venc_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT;
669 lavc_venc_context->flags &= ~CODEC_FLAG_CBP_RD;
670 lavc_venc_context->flags &= ~CODEC_FLAG_QP_RD;
671 lavc_venc_context->flags &= ~CODEC_FLAG_MV0;
673 break;
677 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme;
679 /* fixed qscale :p */
680 if (lavc_param_vqscale >= 0.0)
682 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_UsingConstantQscale, lavc_param_vqscale);
683 lavc_venc_context->flags |= CODEC_FLAG_QSCALE;
684 lavc_venc_context->global_quality=
685 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * lavc_param_vqscale + 0.5);
688 if(lavc_param_threads > 1)
689 avcodec_thread_init(lavc_venc_context, lavc_param_threads);
691 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) {
692 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec);
693 return 0;
696 if (lavc_venc_context->codec->encode == NULL) {
697 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n");
698 return 0;
701 /* free second pass buffer, its not needed anymore */
702 av_freep(&lavc_venc_context->stats_in);
703 if(lavc_venc_context->bits_per_sample)
704 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample;
705 if(lavc_venc_context->extradata_size){
706 mux_v->bih= realloc(mux_v->bih, sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size);
707 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size);
708 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size;
711 mux_v->decoder_delay = lavc_venc_context->max_b_frames ? 1 : 0;
713 return 1;
716 static int control(struct vf_instance* vf, int request, void* data){
718 switch(request){
719 case VFCTRL_FLUSH_FRAMES:
720 if(vf->priv->codec->capabilities & CODEC_CAP_DELAY)
721 while(encode_frame(vf, NULL, MP_NOPTS_VALUE) > 0);
722 return CONTROL_TRUE;
723 default:
724 return CONTROL_UNKNOWN;
728 static int query_format(struct vf_instance* vf, unsigned int fmt){
729 switch(fmt){
730 case IMGFMT_YV12:
731 case IMGFMT_IYUV:
732 case IMGFMT_I420:
733 if(lavc_param_format == IMGFMT_YV12)
734 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
735 break;
736 case IMGFMT_411P:
737 if(lavc_param_format == IMGFMT_411P)
738 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
739 break;
740 case IMGFMT_422P:
741 if(lavc_param_format == IMGFMT_422P)
742 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
743 break;
744 case IMGFMT_444P:
745 if(lavc_param_format == IMGFMT_444P)
746 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
747 break;
748 case IMGFMT_YVU9:
749 if(lavc_param_format == IMGFMT_YVU9)
750 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
751 break;
752 case IMGFMT_BGR32:
753 if(lavc_param_format == IMGFMT_BGR32)
754 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE;
755 break;
757 return 0;
760 static double psnr(double d){
761 if(d==0) return INFINITY;
762 return -10.0*log(d)/log(10);
765 static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts){
766 AVFrame *pic= vf->priv->pic;
768 pic->data[0]=mpi->planes[0];
769 pic->data[1]=mpi->planes[1];
770 pic->data[2]=mpi->planes[2];
771 pic->linesize[0]=mpi->stride[0];
772 pic->linesize[1]=mpi->stride[1];
773 pic->linesize[2]=mpi->stride[2];
775 if(lavc_param_interlaced_dct){
776 if((mpi->fields & MP_IMGFIELD_ORDERED) && (mpi->fields & MP_IMGFIELD_INTERLACED))
777 pic->top_field_first= !!(mpi->fields & MP_IMGFIELD_TOP_FIRST);
778 else
779 pic->top_field_first= 1;
781 if(lavc_param_top!=-1)
782 pic->top_field_first= lavc_param_top;
785 return encode_frame(vf, pic, pts) >= 0;
788 static int encode_frame(struct vf_instance* vf, AVFrame *pic, double pts){
789 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'};
790 int out_size;
791 double dts;
793 if(pts == MP_NOPTS_VALUE)
794 pts= lavc_venc_context->frame_number * av_q2d(lavc_venc_context->time_base);
796 if(pic){
797 #if 0
798 pic->opaque= malloc(sizeof(pts));
799 memcpy(pic->opaque, &pts, sizeof(pts));
800 #else
801 if(pts != MP_NOPTS_VALUE)
802 pic->pts= floor(pts / av_q2d(lavc_venc_context->time_base) + 0.5);
803 else
804 pic->pts= MP_NOPTS_VALUE;
805 #endif
807 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size,
808 pic);
810 if(pts != MP_NOPTS_VALUE)
811 dts= pts - lavc_venc_context->delay * av_q2d(lavc_venc_context->time_base);
812 else
813 dts= MP_NOPTS_VALUE;
814 #if 0
815 pts= lavc_venc_context->coded_frame->opaque ?
816 *(double*)lavc_venc_context->coded_frame->opaque
817 : MP_NOPTS_VALUE;
818 #else
819 if(lavc_venc_context->coded_frame->pts != MP_NOPTS_VALUE)
820 pts= lavc_venc_context->coded_frame->pts * av_q2d(lavc_venc_context->time_base);
821 else
822 pts= MP_NOPTS_VALUE;
823 assert(MP_NOPTS_VALUE == AV_NOPTS_VALUE);
824 #endif
825 //fprintf(stderr, "ve_lavc %f/%f\n", dts, pts);
826 if(out_size == 0 && lavc_param_skip_threshold==0 && lavc_param_skip_factor==0){
827 ++mux_v->encoder_delay;
828 return 0;
831 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0,
832 dts, pts);
833 free(lavc_venc_context->coded_frame->opaque);
834 lavc_venc_context->coded_frame->opaque= NULL;
836 /* store psnr / pict size / type / qscale */
837 if(lavc_param_psnr){
838 static FILE *fvstats=NULL;
839 char filename[20];
840 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0;
841 double quality=0.0;
842 int8_t *q;
844 if(!fvstats) {
845 time_t today2;
846 struct tm *today;
847 today2 = time(NULL);
848 today = localtime(&today2);
849 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour,
850 today->tm_min, today->tm_sec);
851 fvstats = fopen(filename,"w");
852 if(!fvstats) {
853 perror("fopen");
854 lavc_param_psnr=0; // disable block
855 mp_msg(MSGT_MENCODER,MSGL_ERR,"Can't open %s for writing. Check its permissions.\n",filename);
856 return -1;
857 /*exit(1);*/
861 // average MB quantizer
862 q = lavc_venc_context->coded_frame->qscale_table;
863 if(q) {
864 int x, y;
865 int w = (lavc_venc_context->width+15) >> 4;
866 int h = (lavc_venc_context->height+15) >> 4;
867 for( y = 0; y < h; y++ ) {
868 for( x = 0; x < w; x++ )
869 quality += (double)*(q+x);
870 q += lavc_venc_context->coded_frame->qstride;
872 quality /= w * h;
873 } else
874 quality = lavc_venc_context->coded_frame->quality / (float)FF_QP2LAMBDA;
876 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n",
877 lavc_venc_context->coded_frame->coded_picture_number,
878 quality,
879 out_size,
880 psnr(lavc_venc_context->coded_frame->error[0]/f),
881 psnr(lavc_venc_context->coded_frame->error[1]*4/f),
882 psnr(lavc_venc_context->coded_frame->error[2]*4/f),
883 psnr((lavc_venc_context->coded_frame->error[0]+lavc_venc_context->coded_frame->error[1]+lavc_venc_context->coded_frame->error[2])/(f*1.5)),
884 pict_type_char[lavc_venc_context->coded_frame->pict_type]
887 /* store stats if there are any */
888 if(lavc_venc_context->stats_out && stats_file)
889 fprintf(stats_file, "%s", lavc_venc_context->stats_out);
890 return out_size;
893 static void uninit(struct vf_instance* vf){
895 if(lavc_param_psnr){
896 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0;
897 f*= lavc_venc_context->coded_frame->coded_picture_number;
899 mp_msg(MSGT_MENCODER, MSGL_INFO, "PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n",
900 psnr(lavc_venc_context->error[0]/f),
901 psnr(lavc_venc_context->error[1]*4/f),
902 psnr(lavc_venc_context->error[2]*4/f),
903 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5))
907 av_freep(&lavc_venc_context->intra_matrix);
908 av_freep(&lavc_venc_context->inter_matrix);
910 avcodec_close(lavc_venc_context);
912 if(stats_file) fclose(stats_file);
914 /* free rc_override */
915 av_freep(&lavc_venc_context->rc_override);
917 av_freep(&vf->priv->context);
920 //===========================================================================//
922 static int vf_open(vf_instance_t *vf, char* args){
923 vf->uninit=uninit;
924 vf->config=config;
925 vf->default_caps=VFCAP_CONSTANT;
926 vf->control=control;
927 vf->query_format=query_format;
928 vf->put_image=put_image;
929 vf->priv=malloc(sizeof(struct vf_priv_s));
930 memset(vf->priv,0,sizeof(struct vf_priv_s));
931 vf->priv->mux=(muxer_stream_t*)args;
933 /* XXX: hack: some of the MJPEG decoder DLL's needs exported huffman
934 table, so we define a zero-table, also lavc mjpeg encoder is putting
935 huffman tables into the stream, so no problem */
936 if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "mjpeg"))
938 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+28);
939 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+28);
940 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+28;
942 else if (lavc_param_vcodec && (!strcasecmp(lavc_param_vcodec, "huffyuv")
943 || !strcasecmp(lavc_param_vcodec, "ffvhuff")))
945 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */
946 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000);
947 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000);
948 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000;
950 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1"))
952 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8);
953 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8);
954 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8;
956 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv2"))
958 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8);
959 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8);
960 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8;
962 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2"))
964 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4);
965 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4);
966 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4;
968 else
970 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
971 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER));
972 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
974 mux_v->bih->biWidth=0;
975 mux_v->bih->biHeight=0;
976 mux_v->bih->biPlanes=1;
977 mux_v->bih->biBitCount=24;
978 if (!lavc_param_vcodec)
980 printf("No libavcodec codec specified! It's required!\n");
981 return 0;
984 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video"))
985 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1');
986 else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video"))
987 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2');
988 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p"))
989 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3');
990 else if (!strcasecmp(lavc_param_vcodec, "rv10"))
991 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0');
992 else if (!strcasecmp(lavc_param_vcodec, "mjpeg"))
993 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G');
994 else if (!strcasecmp(lavc_param_vcodec, "ljpeg"))
995 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G');
996 else if (!strcasecmp(lavc_param_vcodec, "mpeg4"))
997 mux_v->bih->biCompression = mmioFOURCC('F', 'M', 'P', '4');
998 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4"))
999 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3');
1000 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2"))
1001 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2');
1002 else if (!strcasecmp(lavc_param_vcodec, "wmv1"))
1003 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1');
1004 else if (!strcasecmp(lavc_param_vcodec, "wmv2"))
1005 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2');
1006 else if (!strcasecmp(lavc_param_vcodec, "huffyuv"))
1007 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U');
1008 else if (!strcasecmp(lavc_param_vcodec, "ffvhuff"))
1009 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', 'H');
1010 else if (!strcasecmp(lavc_param_vcodec, "asv1"))
1011 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1');
1012 else if (!strcasecmp(lavc_param_vcodec, "asv2"))
1013 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '2');
1014 else if (!strcasecmp(lavc_param_vcodec, "ffv1"))
1015 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1');
1016 else if (!strcasecmp(lavc_param_vcodec, "snow"))
1017 mux_v->bih->biCompression = mmioFOURCC('S', 'N', 'O', 'W');
1018 else if (!strcasecmp(lavc_param_vcodec, "flv"))
1019 mux_v->bih->biCompression = mmioFOURCC('F', 'L', 'V', '1');
1020 else if (!strcasecmp(lavc_param_vcodec, "dvvideo"))
1021 mux_v->bih->biCompression = mmioFOURCC('d', 'v', 's', 'd');
1022 else if (!strcasecmp(lavc_param_vcodec, "libx264"))
1023 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '4');
1024 else if (!strcasecmp(lavc_param_vcodec, "libschroedinger"))
1025 mux_v->bih->biCompression = mmioFOURCC('d', 'r', 'a', 'c');
1026 else if (!strcasecmp(lavc_param_vcodec, "libdirac"))
1027 mux_v->bih->biCompression = mmioFOURCC('d', 'r', 'a', 'c');
1028 else
1029 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0],
1030 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */
1032 if (!avcodec_initialized){
1033 avcodec_init();
1034 avcodec_register_all();
1035 avcodec_initialized=1;
1038 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec);
1039 if (!vf->priv->codec) {
1040 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec);
1041 return 0;
1044 vf->priv->pic = avcodec_alloc_frame();
1045 vf->priv->context = avcodec_alloc_context();
1047 return 1;
1050 vf_info_t ve_info_lavc = {
1051 "libavcodec encoder",
1052 "lavc",
1053 "A'rpi, Alex, Michael",
1054 "for internal use by mencoder",
1055 vf_open
1058 //===========================================================================//