Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 11261:835822ce4bb1
-vop ---> -vf
author | diego |
---|---|
date | Sat, 25 Oct 2003 18:44:41 +0000 |
parents | 9a3230a5ef38 |
children | 222d2661f373 |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
8237 | 4 #include <math.h> |
8347 | 5 #include <time.h> |
5550 | 6 |
8371
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
7 #if !defined(INFINITY) && defined(HUGE_VAL) |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
8 #define INFINITY HUGE_VAL |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
9 #endif |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
10 |
5550 | 11 #include "../config.h" |
12 | |
13 #ifdef USE_LIBAVCODEC | |
14 | |
15 #include "../mp_msg.h" | |
16 #include "../help_mp.h" | |
17 | |
18 #include "codec-cfg.h" | |
19 #include "stream.h" | |
20 #include "demuxer.h" | |
21 #include "stheader.h" | |
22 | |
8585 | 23 #include "muxer.h" |
5550 | 24 |
5607 | 25 #include "img_format.h" |
26 #include "mp_image.h" | |
5550 | 27 #include "vf.h" |
28 | |
7090
43d7b60bd7f4
fixing compilation without divx4 patch by (Rmi Guyomarch <rguyom at pobox dot com>)
michael
parents:
7089
diff
changeset
|
29 extern char* passtmpfile; |
5550 | 30 |
31 //===========================================================================// | |
32 | |
33 #ifdef USE_LIBAVCODEC_SO | |
7004 | 34 #include <ffmpeg/avcodec.h> |
5550 | 35 #else |
36 #include "libavcodec/avcodec.h" | |
37 #endif | |
38 | |
8339 | 39 #if LIBAVCODEC_BUILD < 4641 |
11000 | 40 #error we do not support libavcodec prior to build 4641, get the latest libavcodec CVS |
5778 | 41 #endif |
42 | |
9508 | 43 #if LIBAVCODEC_BUILD < 4659 |
7088 | 44 #warning your version of libavcodec is old, u might want to get a newer one |
45 #endif | |
46 | |
8413 | 47 #if LIBAVCODEC_BUILD < 4645 |
48 #define AVFrame AVVideoFrame | |
49 #define coded_frame coded_picture | |
50 #endif | |
51 | |
5550 | 52 extern int avcodec_inited; |
53 | |
54 /* video options */ | |
7555 | 55 static char *lavc_param_vcodec = "mpeg4"; |
5550 | 56 static int lavc_param_vbitrate = -1; |
7088 | 57 static int lavc_param_vrate_tolerance = 1000*8; |
10498 | 58 static int lavc_param_mb_decision = 0; /* default is realtime encoding */ |
5550 | 59 static int lavc_param_v4mv = 0; |
5556 | 60 static int lavc_param_vme = 4; |
11032 | 61 static float lavc_param_vqscale = 0.0; |
7088 | 62 static int lavc_param_vqmin = 2; |
63 static int lavc_param_vqmax = 31; | |
8492 | 64 static int lavc_param_mb_qmin = 2; |
65 static int lavc_param_mb_qmax = 31; | |
11032 | 66 static float lavc_param_lmin = 2; |
67 static float lavc_param_lmax = 31; | |
5550 | 68 static int lavc_param_vqdiff = 3; |
69 static float lavc_param_vqcompress = 0.5; | |
70 static float lavc_param_vqblur = 0.5; | |
7088 | 71 static float lavc_param_vb_qfactor = 1.25; |
72 static float lavc_param_vb_qoffset = 1.25; | |
73 static float lavc_param_vi_qfactor = 0.8; | |
74 static float lavc_param_vi_qoffset = 0.0; | |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
75 static int lavc_param_vmax_b_frames = 0; |
5550 | 76 static int lavc_param_keyint = -1; |
5778 | 77 static int lavc_param_vpass = 0; |
78 static int lavc_param_vrc_strategy = 2; | |
79 static int lavc_param_vb_strategy = 0; | |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
80 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
81 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
82 static int lavc_param_packet_size= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
83 static int lavc_param_strict= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
84 static int lavc_param_data_partitioning= 0; |
6461 | 85 static int lavc_param_gray=0; |
7088 | 86 static float lavc_param_rc_qsquish=1.0; |
87 static float lavc_param_rc_qmod_amp=0; | |
88 static int lavc_param_rc_qmod_freq=0; | |
89 static char *lavc_param_rc_override_string=NULL; | |
90 static char *lavc_param_rc_eq="tex^qComp"; | |
91 static int lavc_param_rc_buffer_size=0; | |
92 static float lavc_param_rc_buffer_aggressivity=1.0; | |
93 static int lavc_param_rc_max_rate=0; | |
94 static int lavc_param_rc_min_rate=0; | |
95 static float lavc_param_rc_initial_cplx=0; | |
6944 | 96 static int lavc_param_mpeg_quant=0; |
7152 | 97 static int lavc_param_fdct=0; |
7564 | 98 static int lavc_param_idct=0; |
8237 | 99 static char* lavc_param_aspect = NULL; |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
100 static int lavc_param_autoaspect = 0; |
7490 | 101 static float lavc_param_lumi_masking= 0.0; |
7496 | 102 static float lavc_param_dark_masking= 0.0; |
7490 | 103 static float lavc_param_temporal_cplx_masking= 0.0; |
104 static float lavc_param_spatial_cplx_masking= 0.0; | |
105 static float lavc_param_p_masking= 0.0; | |
106 static int lavc_param_normalize_aqp= 0; | |
7504 | 107 static int lavc_param_interlaced_dct= 0; |
8190 | 108 static int lavc_param_prediction_method= FF_PRED_LEFT; |
10778 | 109 static int lavc_param_format= IMGFMT_YV12; |
8341 | 110 static int lavc_param_debug= 0; |
8347 | 111 static int lavc_param_psnr= 0; |
8803 | 112 static int lavc_param_me_pre_cmp= 0; |
8587 | 113 static int lavc_param_me_cmp= 0; |
114 static int lavc_param_me_sub_cmp= 0; | |
115 static int lavc_param_mb_cmp= 0; | |
8803 | 116 static int lavc_param_pre_dia_size= 0; |
8587 | 117 static int lavc_param_dia_size= 0; |
118 static int lavc_param_qpel= 0; | |
8684 | 119 static int lavc_param_trell= 0; |
9536 | 120 static int lavc_param_aic= 0; |
121 static int lavc_param_umv= 0; | |
8695 | 122 static int lavc_param_last_pred= 0; |
8709 | 123 static int lavc_param_pre_me= 1; |
8803 | 124 static int lavc_param_me_subpel_quality= 8; |
9508 | 125 static int lavc_param_me_range= 0; |
9645 | 126 #if LIBAVCODEC_BUILD >= 4663 |
127 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS; | |
128 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS; | |
129 #endif | |
10291 | 130 static int lavc_param_coder= 0; |
131 static int lavc_param_context= 0; | |
10779 | 132 static char *lavc_param_intra_matrix = NULL; |
133 static char *lavc_param_inter_matrix = NULL; | |
10963 | 134 static int lavc_param_cbp= 0; |
10974 | 135 static int lavc_param_mv0= 0; |
5550 | 136 |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10498
diff
changeset
|
137 #include "m_option.h" |
5550 | 138 |
139 #ifdef USE_LIBAVCODEC | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10498
diff
changeset
|
140 m_option_t lavcopts_conf[]={ |
5550 | 141 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
142 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
143 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
10498 | 144 {"vhq", &lavc_param_mb_decision, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
145 {"mbd", &lavc_param_mb_decision, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, | |
5550 | 146 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
147 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
11032 | 148 {"vqscale", &lavc_param_vqscale, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
5550 | 149 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
150 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 151 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
152 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
11032 | 153 {"lmin", &lavc_param_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
154 {"lmax", &lavc_param_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, | |
5550 | 155 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
156 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
157 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 158 {"vb_qfactor", &lavc_param_vb_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
159 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 160 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
161 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
8413 | 162 {"vb_strategy", &lavc_param_vb_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
163 {"vb_qoffset", &lavc_param_vb_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, |
7039
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7038
diff
changeset
|
164 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 165 {"vcelim", &lavc_param_chroma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
166 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 167 {"vstrict", &lavc_param_strict, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
168 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 169 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 170 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 171 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 172 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
173 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
174 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
175 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
176 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
177 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
178 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
179 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
180 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
11245
9a3230a5ef38
100l patch by (Tilmann Bitterberg <transcode at tibit dot org>)
michael
parents:
11195
diff
changeset
|
181 {"vrc_buf_size", &lavc_param_rc_buffer_size, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, |
7088 | 182 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, |
183 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
7152 | 184 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 185 {"aspect", &lavc_param_aspect, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
186 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7490 | 187 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
188 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
189 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
190 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
191 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 192 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 193 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 194 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 195 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
10778 | 196 {"format", &lavc_param_format, CONF_TYPE_IMGFMT, 0, 0, 0, NULL}, |
8341 | 197 #if LIBAVCODEC_BUILD >= 4642 |
198 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, | |
199 #endif | |
8347 | 200 #if LIBAVCODEC_BUILD >= 4643 |
201 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, | |
202 #endif | |
8803 | 203 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 204 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
205 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
206 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
8803 | 207 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 208 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 209 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
8684 | 210 #if LIBAVCODEC_BUILD >= 4648 |
211 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL}, | |
212 #endif | |
8695 | 213 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 214 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 215 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
9508 | 216 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL}, |
9536 | 217 #ifdef CODEC_FLAG_H263P_AIC |
218 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIC, NULL}, | |
219 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL}, | |
220 #endif | |
9645 | 221 #if LIBAVCODEC_BUILD >= 4663 |
222 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
223 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
224 #endif | |
10291 | 225 #if LIBAVCODEC_BUILD >= 4669 |
226 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
227 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
228 #endif | |
10779 | 229 #if LIBAVCODEC_BUILD >= 4675 |
230 {"intra_matrix", &lavc_param_intra_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
231 {"inter_matrix", &lavc_param_inter_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
232 #endif | |
10963 | 233 #if LIBAVCODEC_BUILD >= 4681 |
234 {"cbp", &lavc_param_cbp, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CBP_RD, NULL}, | |
235 #endif | |
10974 | 236 #if LIBAVCODEC_BUILD >= 4683 |
237 {"mv0", &lavc_param_mv0, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_MV0, NULL}, | |
238 #endif | |
5550 | 239 {NULL, NULL, 0, 0, 0, 0, NULL} |
240 }; | |
241 #endif | |
242 | |
243 struct vf_priv_s { | |
8585 | 244 muxer_stream_t* mux; |
7444 | 245 AVCodecContext *context; |
8413 | 246 AVFrame *pic; |
5550 | 247 AVCodec *codec; |
7088 | 248 FILE *stats_file; |
5550 | 249 }; |
250 | |
7088 | 251 #define stats_file (vf->priv->stats_file) |
5550 | 252 #define mux_v (vf->priv->mux) |
253 #define lavc_venc_context (vf->priv->context) | |
254 | |
11032 | 255 #if LIBAVCODEC_BUILD < 4684 |
256 #define FF_QP2LAMBDA 1 | |
257 #endif | |
258 | |
5550 | 259 static int config(struct vf_instance_s* vf, |
260 int width, int height, int d_width, int d_height, | |
261 unsigned int flags, unsigned int outfmt){ | |
7088 | 262 int size, i; |
263 void *p; | |
264 | |
5550 | 265 mux_v->bih->biWidth=width; |
266 mux_v->bih->biHeight=height; | |
267 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
268 | |
269 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
270 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
271 (char *)&mux_v->bih->biCompression); | |
272 | |
7444 | 273 lavc_venc_context->width = width; |
274 lavc_venc_context->height = height; | |
5677
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
275 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 276 lavc_venc_context->bit_rate = lavc_param_vbitrate; |
5677
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
277 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 278 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 279 else |
7444 | 280 lavc_venc_context->bit_rate = 800000; /* default */ |
281 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
9571 | 282 #if LIBAVCODEC_BUILD >= 4662 |
283 lavc_venc_context->frame_rate = mux_v->h.dwRate; | |
284 lavc_venc_context->frame_rate_base = mux_v->h.dwScale; | |
285 #else | |
286 lavc_venc_context->frame_rate = mux_v->h.dwRate*FRAME_RATE_BASE/mux_v->h.dwScale; | |
287 #endif | |
7444 | 288 lavc_venc_context->qmin= lavc_param_vqmin; |
289 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 290 #if LIBAVCODEC_BUILD >= 4646 |
291 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; | |
292 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
293 #endif | |
11032 | 294 #if LIBAVCODEC_BUILD >= 4684 |
295 lavc_venc_context->lmin= (int)(FF_QP2LAMBDA * lavc_param_lmin + 0.5); | |
296 lavc_venc_context->lmax= (int)(FF_QP2LAMBDA * lavc_param_lmax + 0.5); | |
297 #endif | |
7444 | 298 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
299 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
300 lavc_venc_context->qblur= lavc_param_vqblur; | |
301 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
302 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
303 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
304 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
305 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset; | |
306 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; | |
307 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
308 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
309 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
310 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
311 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
312 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset; | |
313 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; | |
314 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
315 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
316 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
317 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; | |
318 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
319 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; | |
320 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; | |
321 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 322 #if LIBAVCODEC_BUILD >= 4642 |
323 lavc_venc_context->debug= lavc_param_debug; | |
324 #endif | |
8695 | 325 #if LIBAVCODEC_BUILD >= 4649 |
326 lavc_venc_context->last_predictor_count= lavc_param_last_pred; | |
327 #endif | |
8709 | 328 #if LIBAVCODEC_BUILD >= 4650 |
329 lavc_venc_context->pre_me= lavc_param_pre_me; | |
330 #endif | |
8803 | 331 #if LIBAVCODEC_BUILD >= 4651 |
332 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; | |
333 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
334 #endif | |
335 #if LIBAVCODEC_BUILD >= 4652 | |
336 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
337 #endif | |
9508 | 338 #if LIBAVCODEC_BUILD >= 4659 |
339 lavc_venc_context->me_range= lavc_param_me_range; | |
340 #endif | |
9645 | 341 #if LIBAVCODEC_BUILD >= 4663 |
342 lavc_venc_context->intra_quant_bias= lavc_param_ibias; | |
343 lavc_venc_context->inter_quant_bias= lavc_param_pbias; | |
344 #endif | |
10291 | 345 #if LIBAVCODEC_BUILD >= 4669 |
346 lavc_venc_context->coder_type= lavc_param_coder; | |
347 lavc_venc_context->context_model= lavc_param_context; | |
348 #endif | |
10779 | 349 #if LIBAVCODEC_BUILD >= 4675 |
350 if (lavc_param_intra_matrix) | |
351 { | |
352 char *tmp; | |
353 | |
354 lavc_venc_context->intra_matrix = | |
355 malloc(sizeof(*lavc_venc_context->intra_matrix)*64); | |
356 | |
357 i = 0; | |
358 while ((tmp = strsep(&lavc_param_intra_matrix, ",")) && (i < 64)) | |
359 { | |
360 if (!tmp || (tmp && !strlen(tmp))) | |
361 break; | |
362 lavc_venc_context->intra_matrix[i++] = atoi(tmp); | |
363 } | |
364 | |
365 if (i != 64) | |
366 { | |
367 free(lavc_venc_context->intra_matrix); | |
368 lavc_venc_context->intra_matrix = NULL; | |
369 } | |
370 else | |
371 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified intra matrix\n"); | |
372 } | |
373 if (lavc_param_inter_matrix) | |
374 { | |
375 char *tmp; | |
376 | |
377 lavc_venc_context->inter_matrix = | |
378 malloc(sizeof(*lavc_venc_context->inter_matrix)*64); | |
379 | |
380 i = 0; | |
381 while ((tmp = strsep(&lavc_param_inter_matrix, ",")) && (i < 64)) | |
382 { | |
383 if (!tmp || (tmp && !strlen(tmp))) | |
384 break; | |
385 lavc_venc_context->inter_matrix[i++] = atoi(tmp); | |
386 } | |
387 | |
388 if (i != 64) | |
389 { | |
390 free(lavc_venc_context->inter_matrix); | |
391 lavc_venc_context->inter_matrix = NULL; | |
392 } | |
393 else | |
394 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified inter matrix\n"); | |
395 } | |
396 #endif | |
9508 | 397 |
7088 | 398 p= lavc_param_rc_override_string; |
399 for(i=0; p; i++){ | |
400 int start, end, q; | |
401 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
402 if(e!=3){ | |
403 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
404 return 0; | |
405 } | |
7444 | 406 lavc_venc_context->rc_override= |
407 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
408 lavc_venc_context->rc_override[i].start_frame= start; | |
409 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 410 if(q>0){ |
7444 | 411 lavc_venc_context->rc_override[i].qscale= q; |
412 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 413 } |
414 else{ | |
7444 | 415 lavc_venc_context->rc_override[i].qscale= 0; |
416 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 417 } |
418 p= strchr(p, '/'); | |
419 if(p) p++; | |
420 } | |
7444 | 421 lavc_venc_context->rc_override_count=i; |
7088 | 422 |
7444 | 423 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 424 |
7444 | 425 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 426 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 427 |
7490 | 428 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
429 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
430 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
431 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 432 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
7490 | 433 |
8237 | 434 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
435 { |
8237 | 436 int par_width, par_height, e; |
437 float ratio=0; | |
438 | |
439 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); | |
440 if(e==2){ | |
441 if(par_height) | |
442 ratio= (float)par_width / (float)par_height; | |
443 }else{ | |
444 e= sscanf (lavc_param_aspect, "%f", &ratio); | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
445 } |
8237 | 446 |
447 if (e && ratio > 0.1 && ratio < 10.0) { | |
11194 | 448 #if LIBAVCODEC_BUILD >= 4687 |
11195
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
449 lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 255); |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
450 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "sample_aspect_ratio: %d/%d\n", |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
451 lavc_venc_context->sample_aspect_ratio.num, |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
452 lavc_venc_context->sample_aspect_ratio.den); |
11194 | 453 #else |
8237 | 454 lavc_venc_context->aspect_ratio= ratio; |
11194 | 455 #endif |
8237 | 456 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); |
457 } else { | |
458 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
459 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
460 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
461 } |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
462 else if (lavc_param_autoaspect) |
11194 | 463 #if LIBAVCODEC_BUILD >= 4687 |
464 lavc_venc_context->sample_aspect_ratio = av_d2q((float)d_width/d_height*height / width, 30000); | |
465 #else | |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
466 lavc_venc_context->aspect_ratio = (float)d_width/d_height; |
11194 | 467 #endif |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
468 |
5550 | 469 /* keyframe interval */ |
470 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 471 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 472 else |
7444 | 473 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 474 |
10498 | 475 lavc_venc_context->flags = 0; |
476 if (lavc_param_mb_decision) | |
5550 | 477 { |
478 printf("High quality encoding selected (non real time)!\n"); | |
10498 | 479 #if LIBAVCODEC_BUILD < 4673 |
480 lavc_venc_context->flags = CODEC_FLAG_HQ; | |
481 #else | |
482 lavc_venc_context->mb_decision= lavc_param_mb_decision; | |
483 #endif | |
5550 | 484 } |
485 | |
8587 | 486 #if LIBAVCODEC_BUILD >= 4647 |
487 lavc_venc_context->me_cmp= lavc_param_me_cmp; | |
488 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
489 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
490 lavc_venc_context->dia_size= lavc_param_dia_size; | |
491 lavc_venc_context->flags|= lavc_param_qpel; | |
492 #endif | |
8684 | 493 #if LIBAVCODEC_BUILD >= 4648 |
494 lavc_venc_context->flags|= lavc_param_trell; | |
495 #endif | |
9536 | 496 lavc_venc_context->flags|= lavc_param_aic; |
497 lavc_venc_context->flags|= lavc_param_umv; | |
7444 | 498 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
499 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
10963 | 500 lavc_venc_context->flags|= lavc_param_cbp; |
10974 | 501 lavc_venc_context->flags|= lavc_param_mv0; |
7444 | 502 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; |
6461 | 503 |
7490 | 504 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 505 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 506 #if LIBAVCODEC_BUILD >= 4643 |
507 lavc_venc_context->flags|= lavc_param_psnr; | |
508 #endif | |
8190 | 509 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
10778 | 510 switch(lavc_param_format) |
511 { | |
512 case IMGFMT_YV12: | |
513 lavc_venc_context->pix_fmt = PIX_FMT_YUV420P; | |
514 break; | |
515 case IMGFMT_422P: | |
516 lavc_venc_context->pix_fmt = PIX_FMT_YUV422P; | |
517 break; | |
518 case IMGFMT_444P: | |
519 lavc_venc_context->pix_fmt = PIX_FMT_YUV444P; | |
520 break; | |
521 case IMGFMT_411P: | |
522 lavc_venc_context->pix_fmt = PIX_FMT_YUV411P; | |
523 break; | |
524 case IMGFMT_YVU9: | |
525 lavc_venc_context->pix_fmt = PIX_FMT_YUV410P; | |
526 break; | |
527 case IMGFMT_BGR32: | |
528 lavc_venc_context->pix_fmt = PIX_FMT_RGBA32; | |
529 break; | |
530 default: | |
531 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", vo_format_name(lavc_param_format)); | |
532 return 0; | |
8190 | 533 } |
10302 | 534 |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
535 if(!stats_file) { |
5778 | 536 /* lavc internal 2pass bitrate control */ |
6673 | 537 switch(lavc_param_vpass){ |
7088 | 538 case 1: |
7444 | 539 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
10881
6c3555f4c5c3
fix 2-pass encoding with libavcodec onwin32, patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10848
diff
changeset
|
540 stats_file= fopen(passtmpfile, "wb"); |
7088 | 541 if(stats_file==NULL){ |
542 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
543 return 0; | |
544 } | |
545 break; | |
546 case 2: | |
7444 | 547 lavc_venc_context->flags|= CODEC_FLAG_PASS2; |
10881
6c3555f4c5c3
fix 2-pass encoding with libavcodec onwin32, patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10848
diff
changeset
|
548 stats_file= fopen(passtmpfile, "rb"); |
7088 | 549 if(stats_file==NULL){ |
550 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
551 return 0; | |
552 } | |
553 fseek(stats_file, 0, SEEK_END); | |
554 size= ftell(stats_file); | |
555 fseek(stats_file, 0, SEEK_SET); | |
556 | |
7444 | 557 lavc_venc_context->stats_in= malloc(size + 1); |
558 lavc_venc_context->stats_in[size]=0; | |
7088 | 559 |
7444 | 560 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 561 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
562 return 0; | |
7089 | 563 } |
7088 | 564 break; |
6673 | 565 } |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
566 } |
5778 | 567 |
7444 | 568 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 569 |
570 /* fixed qscale :p */ | |
571 if (lavc_param_vqscale) | |
572 { | |
11032 | 573 printf("Using constant qscale = %f (VBR)\n", lavc_param_vqscale); |
7444 | 574 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
10131 | 575 #if LIBAVCODEC_BUILD >= 4668 |
11032 | 576 lavc_venc_context->global_quality= |
10131 | 577 #endif |
11032 | 578 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * lavc_param_vqscale + 0.5); |
5550 | 579 } |
580 | |
7444 | 581 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 582 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
583 return 0; | |
584 } | |
585 | |
7444 | 586 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 587 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
588 return 0; | |
589 } | |
7088 | 590 |
591 /* free second pass buffer, its not needed anymore */ | |
7444 | 592 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in); |
593 lavc_venc_context->stats_in= NULL; | |
8190 | 594 if(lavc_venc_context->bits_per_sample) |
595 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
596 if(lavc_venc_context->extradata_size){ | |
597 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); | |
598 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
599 } | |
7088 | 600 |
5550 | 601 return 1; |
602 } | |
603 | |
604 static int control(struct vf_instance_s* vf, int request, void* data){ | |
605 | |
606 return CONTROL_UNKNOWN; | |
607 } | |
608 | |
609 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
610 switch(fmt){ | |
611 case IMGFMT_YV12: | |
612 case IMGFMT_IYUV: | |
613 case IMGFMT_I420: | |
10778 | 614 if(lavc_param_format == IMGFMT_YV12) |
8190 | 615 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
616 break; | |
10293 | 617 case IMGFMT_411P: |
10778 | 618 if(lavc_param_format == IMGFMT_411P) |
10293 | 619 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
620 break; | |
8190 | 621 case IMGFMT_422P: |
10778 | 622 if(lavc_param_format == IMGFMT_422P) |
8190 | 623 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
624 break; | |
10293 | 625 case IMGFMT_444P: |
10778 | 626 if(lavc_param_format == IMGFMT_444P) |
10293 | 627 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
628 break; | |
629 case IMGFMT_YVU9: | |
10778 | 630 if(lavc_param_format == IMGFMT_YVU9) |
10293 | 631 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
632 break; | |
10302 | 633 case IMGFMT_BGR32: |
10778 | 634 if(lavc_param_format == IMGFMT_BGR32) |
10302 | 635 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
636 break; | |
5550 | 637 } |
638 return 0; | |
639 } | |
640 | |
8347 | 641 static double psnr(double d){ |
642 if(d==0) return INFINITY; | |
643 return -10.0*log(d)/log(10); | |
644 } | |
645 | |
7368 | 646 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
8347 | 647 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
5550 | 648 int out_size; |
8413 | 649 AVFrame *pic= vf->priv->pic; |
5550 | 650 |
8339 | 651 pic->data[0]=mpi->planes[0]; |
652 pic->data[1]=mpi->planes[1]; | |
653 pic->data[2]=mpi->planes[2]; | |
654 pic->linesize[0]=mpi->stride[0]; | |
655 pic->linesize[1]=mpi->stride[1]; | |
656 pic->linesize[2]=mpi->stride[2]; | |
5550 | 657 |
7444 | 658 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 659 pic); |
5550 | 660 |
9536 | 661 |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8803
diff
changeset
|
662 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0); |
8413 | 663 |
8347 | 664 #if LIBAVCODEC_BUILD >= 4643 |
665 /* store psnr / pict size / type / qscale */ | |
666 if(lavc_param_psnr){ | |
667 static FILE *fvstats=NULL; | |
668 char filename[20]; | |
669 static long long int all_len=0; | |
670 static int frame_number=0; | |
671 static double all_frametime=0.0; | |
8413 | 672 AVFrame *pic= lavc_venc_context->coded_frame; |
8347 | 673 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
674 double quality=0.0; |
9868 | 675 int8_t *q; |
8347 | 676 |
677 if(!fvstats) { | |
678 time_t today2; | |
679 struct tm *today; | |
680 today2 = time(NULL); | |
681 today = localtime(&today2); | |
682 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
683 today->tm_min, today->tm_sec); | |
684 fvstats = fopen(filename,"w"); | |
685 if(!fvstats) { | |
686 perror("fopen"); | |
687 lavc_param_psnr=0; // disable block | |
688 /*exit(1);*/ | |
689 } | |
690 } | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
691 |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
692 // average MB quantizer |
9868 | 693 q = lavc_venc_context->coded_frame->qscale_table; |
694 if(q) { | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
695 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
696 int w = (lavc_venc_context->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
697 int h = (lavc_venc_context->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
698 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
699 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
700 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
701 q += lavc_venc_context->coded_frame->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
702 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
703 quality /= w * h; |
9868 | 704 } else |
11032 | 705 quality = lavc_venc_context->coded_frame->quality / (float)FF_QP2LAMBDA; |
8347 | 706 |
707 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 708 lavc_venc_context->coded_frame->coded_picture_number, |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
709 quality, |
8347 | 710 out_size, |
8413 | 711 psnr(lavc_venc_context->coded_frame->error[0]/f), |
712 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
713 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
714 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)), | |
715 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 716 ); |
717 } | |
718 #endif | |
7088 | 719 /* store stats if there are any */ |
7444 | 720 if(lavc_venc_context->stats_out && stats_file) |
721 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
7368 | 722 return 1; |
5550 | 723 } |
724 | |
5551 | 725 static void uninit(struct vf_instance_s* vf){ |
8347 | 726 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
727 | |
728 #if LIBAVCODEC_BUILD >= 4643 | |
729 if(lavc_param_psnr){ | |
730 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
8413 | 731 f*= lavc_venc_context->coded_frame->coded_picture_number; |
8347 | 732 |
733 printf("PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", | |
734 psnr(lavc_venc_context->error[0]/f), | |
735 psnr(lavc_venc_context->error[1]*4/f), | |
736 psnr(lavc_venc_context->error[2]*4/f), | |
737 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
738 ); | |
739 } | |
740 #endif | |
741 | |
10779 | 742 #if LIBAVCODEC_BUILD >= 4675 |
743 if (lavc_venc_context->intra_matrix) | |
744 free(lavc_venc_context->intra_matrix); | |
745 lavc_venc_context->intra_matrix = NULL; | |
746 if (lavc_venc_context->inter_matrix) | |
747 free(lavc_venc_context->inter_matrix); | |
748 lavc_venc_context->inter_matrix = NULL; | |
749 #endif | |
750 | |
7444 | 751 avcodec_close(lavc_venc_context); |
7088 | 752 |
753 if(stats_file) fclose(stats_file); | |
7089 | 754 |
7088 | 755 /* free rc_override */ |
7444 | 756 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override); |
757 lavc_venc_context->rc_override= NULL; | |
758 | |
759 if(vf->priv->context) free(vf->priv->context); | |
760 vf->priv->context= NULL; | |
5551 | 761 } |
762 | |
5550 | 763 //===========================================================================// |
764 | |
765 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 766 vf->uninit=uninit; |
5550 | 767 vf->config=config; |
768 vf->control=control; | |
769 vf->query_format=query_format; | |
770 vf->put_image=put_image; | |
771 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
772 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 773 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 774 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
775 /* XXX: hack: some of the MJPEG decoder DLL's needs exported huffman |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
776 table, so we define a zero-table, also lavc mjpeg encoder is putting |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
777 huffman tables into the stream, so no problem */ |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
778 if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "mjpeg")) |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
779 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
780 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+28); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
781 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+28); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
782 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+28; |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
783 } |
8190 | 784 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "huffyuv")) |
785 { | |
786 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
787 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
788 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
789 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
790 } | |
10131 | 791 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1")) |
792 { | |
793 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
794 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
795 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
796 } | |
10777 | 797 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv2")) |
798 { | |
799 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
800 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
801 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
802 } | |
8587 | 803 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
804 { | |
805 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
806 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
807 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
808 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
809 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
810 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
811 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
812 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
813 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
814 } |
5550 | 815 mux_v->bih->biWidth=0; |
816 mux_v->bih->biHeight=0; | |
817 mux_v->bih->biPlanes=1; | |
818 mux_v->bih->biBitCount=24; | |
819 if (!lavc_param_vcodec) | |
820 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
821 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 822 return 0; |
823 } | |
824 | |
825 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
826 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
10699 | 827 else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video")) |
828 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2'); | |
5550 | 829 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) |
830 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
831 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
832 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
833 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
834 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
10302 | 835 else if (!strcasecmp(lavc_param_vcodec, "ljpeg")) |
836 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G'); | |
5550 | 837 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) |
838 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
839 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
840 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 841 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
842 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 843 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
844 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 845 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
846 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 847 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
848 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
10131 | 849 else if (!strcasecmp(lavc_param_vcodec, "asv1")) |
850 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1'); | |
10777 | 851 else if (!strcasecmp(lavc_param_vcodec, "asv2")) |
852 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '2'); | |
10264 | 853 else if (!strcasecmp(lavc_param_vcodec, "ffv1")) |
854 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1'); | |
5550 | 855 else |
856 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
857 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
858 | |
859 if (!avcodec_inited){ | |
860 avcodec_init(); | |
861 avcodec_register_all(); | |
862 avcodec_inited=1; | |
863 } | |
864 | |
865 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
866 if (!vf->priv->codec) { | |
867 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
868 return 0; | |
869 } | |
870 | |
8413 | 871 #if LIBAVCODEC_BUILD >= 4645 |
872 vf->priv->pic = avcodec_alloc_frame(); | |
873 #else | |
8339 | 874 vf->priv->pic = avcodec_alloc_picture(); |
8413 | 875 #endif |
7444 | 876 vf->priv->context = avcodec_alloc_context(); |
877 | |
5550 | 878 return 1; |
879 } | |
880 | |
881 vf_info_t ve_info_lavc = { | |
882 "libavcodec encoder", | |
883 "lavc", | |
6673 | 884 "A'rpi, Alex, Michael", |
5550 | 885 "for internal use by mencoder", |
886 vf_open | |
887 }; | |
888 | |
889 //===========================================================================// | |
890 #endif |