Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 9454:50ef22bcc0c3
optimize
author | michael |
---|---|
date | Tue, 18 Feb 2003 19:22:34 +0000 |
parents | c671e9adbe22 |
children | 40572852a933 |
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 |
8340 | 40 #error we dont support libavcodec prior to build 4641, get the latest libavcodec CVS |
5778 | 41 #endif |
42 | |
8413 | 43 #if LIBAVCODEC_BUILD < 4645 |
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; |
5550 | 58 static int lavc_param_vhq = 0; /* default is realtime encoding */ |
59 static int lavc_param_v4mv = 0; | |
5556 | 60 static int lavc_param_vme = 4; |
5550 | 61 static int lavc_param_vqscale = 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; | |
5550 | 66 static int lavc_param_vqdiff = 3; |
67 static float lavc_param_vqcompress = 0.5; | |
68 static float lavc_param_vqblur = 0.5; | |
7088 | 69 static float lavc_param_vb_qfactor = 1.25; |
70 static float lavc_param_vb_qoffset = 1.25; | |
71 static float lavc_param_vi_qfactor = 0.8; | |
72 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
|
73 static int lavc_param_vmax_b_frames = 0; |
5550 | 74 static int lavc_param_keyint = -1; |
5778 | 75 static int lavc_param_vpass = 0; |
76 static int lavc_param_vrc_strategy = 2; | |
77 static int lavc_param_vb_strategy = 0; | |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
78 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
79 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
80 static int lavc_param_packet_size= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
81 static int lavc_param_strict= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
82 static int lavc_param_data_partitioning= 0; |
6461 | 83 static int lavc_param_gray=0; |
7088 | 84 static float lavc_param_rc_qsquish=1.0; |
85 static float lavc_param_rc_qmod_amp=0; | |
86 static int lavc_param_rc_qmod_freq=0; | |
87 static char *lavc_param_rc_override_string=NULL; | |
88 static char *lavc_param_rc_eq="tex^qComp"; | |
89 static int lavc_param_rc_buffer_size=0; | |
90 static float lavc_param_rc_buffer_aggressivity=1.0; | |
91 static int lavc_param_rc_max_rate=0; | |
92 static int lavc_param_rc_min_rate=0; | |
93 static float lavc_param_rc_initial_cplx=0; | |
6944 | 94 static int lavc_param_mpeg_quant=0; |
7152 | 95 static int lavc_param_fdct=0; |
7564 | 96 static int lavc_param_idct=0; |
8237 | 97 static char* lavc_param_aspect = NULL; |
7490 | 98 static float lavc_param_lumi_masking= 0.0; |
7496 | 99 static float lavc_param_dark_masking= 0.0; |
7490 | 100 static float lavc_param_temporal_cplx_masking= 0.0; |
101 static float lavc_param_spatial_cplx_masking= 0.0; | |
102 static float lavc_param_p_masking= 0.0; | |
103 static int lavc_param_normalize_aqp= 0; | |
7504 | 104 static int lavc_param_interlaced_dct= 0; |
8190 | 105 static int lavc_param_prediction_method= FF_PRED_LEFT; |
106 static char *lavc_param_format="YV12"; | |
8341 | 107 static int lavc_param_debug= 0; |
8347 | 108 static int lavc_param_psnr= 0; |
8803 | 109 static int lavc_param_me_pre_cmp= 0; |
8587 | 110 static int lavc_param_me_cmp= 0; |
111 static int lavc_param_me_sub_cmp= 0; | |
112 static int lavc_param_mb_cmp= 0; | |
8803 | 113 static int lavc_param_pre_dia_size= 0; |
8587 | 114 static int lavc_param_dia_size= 0; |
115 static int lavc_param_qpel= 0; | |
8684 | 116 static int lavc_param_trell= 0; |
8695 | 117 static int lavc_param_last_pred= 0; |
8709 | 118 static int lavc_param_pre_me= 1; |
8803 | 119 static int lavc_param_me_subpel_quality= 8; |
5550 | 120 |
121 #include "cfgparser.h" | |
122 | |
123 #ifdef USE_LIBAVCODEC | |
124 struct config lavcopts_conf[]={ | |
125 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
126 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
127 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
128 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
129 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
130 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
131 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
132 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
133 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 134 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
135 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
5550 | 136 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
137 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
138 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 139 {"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
|
140 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 141 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
142 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
8413 | 143 {"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
|
144 {"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
|
145 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 146 {"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
|
147 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 148 {"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
|
149 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 150 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 151 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 152 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 153 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
154 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
155 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
156 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
157 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
158 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
159 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
160 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
161 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
162 {"vrc_buf_size", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
163 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
164 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
7152 | 165 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 166 {"aspect", &lavc_param_aspect, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
7490 | 167 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
168 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
169 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
170 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
171 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 172 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 173 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 174 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 175 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
176 {"format", &lavc_param_format, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
8341 | 177 #if LIBAVCODEC_BUILD >= 4642 |
178 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, | |
179 #endif | |
8347 | 180 #if LIBAVCODEC_BUILD >= 4643 |
181 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, | |
182 #endif | |
8803 | 183 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 184 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
185 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
186 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
8803 | 187 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 188 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 189 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
8684 | 190 #if LIBAVCODEC_BUILD >= 4648 |
191 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL}, | |
192 #endif | |
8695 | 193 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 194 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 195 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
5550 | 196 {NULL, NULL, 0, 0, 0, 0, NULL} |
197 }; | |
198 #endif | |
199 | |
200 struct vf_priv_s { | |
8585 | 201 muxer_stream_t* mux; |
7444 | 202 AVCodecContext *context; |
8413 | 203 AVFrame *pic; |
5550 | 204 AVCodec *codec; |
7088 | 205 FILE *stats_file; |
5550 | 206 }; |
207 | |
7088 | 208 #define stats_file (vf->priv->stats_file) |
5550 | 209 #define mux_v (vf->priv->mux) |
210 #define lavc_venc_context (vf->priv->context) | |
211 | |
212 static int config(struct vf_instance_s* vf, | |
213 int width, int height, int d_width, int d_height, | |
214 unsigned int flags, unsigned int outfmt){ | |
7088 | 215 int size, i; |
216 void *p; | |
217 | |
5550 | 218 mux_v->bih->biWidth=width; |
219 mux_v->bih->biHeight=height; | |
220 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
221 | |
222 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
223 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
224 (char *)&mux_v->bih->biCompression); | |
225 | |
7444 | 226 lavc_venc_context->width = width; |
227 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
|
228 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 229 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
|
230 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 231 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 232 else |
7444 | 233 lavc_venc_context->bit_rate = 800000; /* default */ |
234 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
235 lavc_venc_context->frame_rate = (float)mux_v->h.dwRate/mux_v->h.dwScale * FRAME_RATE_BASE; | |
236 lavc_venc_context->qmin= lavc_param_vqmin; | |
237 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 238 #if LIBAVCODEC_BUILD >= 4646 |
239 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; | |
240 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
241 #endif | |
7444 | 242 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
243 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
244 lavc_venc_context->qblur= lavc_param_vqblur; | |
245 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
246 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
247 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
248 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
249 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset; | |
250 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; | |
251 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
252 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
253 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
254 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
255 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
256 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset; | |
257 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; | |
258 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
259 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
260 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
261 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; | |
262 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
263 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; | |
264 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; | |
265 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 266 #if LIBAVCODEC_BUILD >= 4642 |
267 lavc_venc_context->debug= lavc_param_debug; | |
268 #endif | |
8695 | 269 #if LIBAVCODEC_BUILD >= 4649 |
270 lavc_venc_context->last_predictor_count= lavc_param_last_pred; | |
271 #endif | |
8709 | 272 #if LIBAVCODEC_BUILD >= 4650 |
273 lavc_venc_context->pre_me= lavc_param_pre_me; | |
274 #endif | |
8803 | 275 #if LIBAVCODEC_BUILD >= 4651 |
276 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; | |
277 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
278 #endif | |
279 #if LIBAVCODEC_BUILD >= 4652 | |
280 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
281 #endif | |
8695 | 282 |
7088 | 283 p= lavc_param_rc_override_string; |
284 for(i=0; p; i++){ | |
285 int start, end, q; | |
286 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
287 if(e!=3){ | |
288 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
289 return 0; | |
290 } | |
7444 | 291 lavc_venc_context->rc_override= |
292 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
293 lavc_venc_context->rc_override[i].start_frame= start; | |
294 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 295 if(q>0){ |
7444 | 296 lavc_venc_context->rc_override[i].qscale= q; |
297 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 298 } |
299 else{ | |
7444 | 300 lavc_venc_context->rc_override[i].qscale= 0; |
301 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 302 } |
303 p= strchr(p, '/'); | |
304 if(p) p++; | |
305 } | |
7444 | 306 lavc_venc_context->rc_override_count=i; |
7088 | 307 |
7444 | 308 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 309 |
7444 | 310 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 311 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 312 |
7490 | 313 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
314 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
315 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
316 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 317 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
7490 | 318 |
8237 | 319 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
320 { |
8237 | 321 int par_width, par_height, e; |
322 float ratio=0; | |
323 | |
324 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); | |
325 if(e==2){ | |
326 if(par_height) | |
327 ratio= (float)par_width / (float)par_height; | |
328 }else{ | |
329 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
|
330 } |
8237 | 331 |
332 if (e && ratio > 0.1 && ratio < 10.0) { | |
333 lavc_venc_context->aspect_ratio= ratio; | |
334 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); | |
335 } else { | |
336 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
337 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
338 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
339 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
340 |
5550 | 341 /* keyframe interval */ |
342 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 343 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 344 else |
7444 | 345 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 346 |
347 if (lavc_param_vhq) | |
348 { | |
349 printf("High quality encoding selected (non real time)!\n"); | |
7444 | 350 lavc_venc_context->flags = CODEC_FLAG_HQ; |
5550 | 351 } |
352 else | |
7444 | 353 lavc_venc_context->flags = 0; |
5550 | 354 |
8587 | 355 #if LIBAVCODEC_BUILD >= 4647 |
356 lavc_venc_context->me_cmp= lavc_param_me_cmp; | |
357 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
358 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
359 lavc_venc_context->dia_size= lavc_param_dia_size; | |
360 lavc_venc_context->flags|= lavc_param_qpel; | |
361 #endif | |
8684 | 362 #if LIBAVCODEC_BUILD >= 4648 |
363 lavc_venc_context->flags|= lavc_param_trell; | |
364 #endif | |
7444 | 365 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
366 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
367 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; | |
6461 | 368 |
7490 | 369 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 370 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 371 #if LIBAVCODEC_BUILD >= 4643 |
372 lavc_venc_context->flags|= lavc_param_psnr; | |
373 #endif | |
8190 | 374 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
375 if(!strcasecmp(lavc_param_format, "YV12")) | |
376 lavc_venc_context->pix_fmt= PIX_FMT_YUV420P; | |
377 else if(!strcasecmp(lavc_param_format, "422P")) | |
378 lavc_venc_context->pix_fmt= PIX_FMT_YUV422P; | |
379 else{ | |
380 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", lavc_param_format); | |
381 return 0; | |
382 } | |
5778 | 383 /* lavc internal 2pass bitrate control */ |
6673 | 384 switch(lavc_param_vpass){ |
7088 | 385 case 1: |
7444 | 386 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
7088 | 387 stats_file= fopen(passtmpfile, "w"); |
388 if(stats_file==NULL){ | |
389 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
390 return 0; | |
391 } | |
392 break; | |
393 case 2: | |
7444 | 394 lavc_venc_context->flags|= CODEC_FLAG_PASS2; |
7088 | 395 stats_file= fopen(passtmpfile, "r"); |
396 if(stats_file==NULL){ | |
397 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
398 return 0; | |
399 } | |
400 fseek(stats_file, 0, SEEK_END); | |
401 size= ftell(stats_file); | |
402 fseek(stats_file, 0, SEEK_SET); | |
403 | |
7444 | 404 lavc_venc_context->stats_in= malloc(size + 1); |
405 lavc_venc_context->stats_in[size]=0; | |
7088 | 406 |
7444 | 407 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 408 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
409 return 0; | |
7089 | 410 } |
7088 | 411 break; |
6673 | 412 } |
5778 | 413 |
7444 | 414 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 415 |
416 /* fixed qscale :p */ | |
417 if (lavc_param_vqscale) | |
418 { | |
419 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale); | |
7444 | 420 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
8339 | 421 vf->priv->pic->quality = lavc_param_vqscale; |
5550 | 422 } |
423 | |
7444 | 424 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 425 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
426 return 0; | |
427 } | |
428 | |
7444 | 429 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 430 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
431 return 0; | |
432 } | |
7088 | 433 |
434 /* free second pass buffer, its not needed anymore */ | |
7444 | 435 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in); |
436 lavc_venc_context->stats_in= NULL; | |
8190 | 437 if(lavc_venc_context->bits_per_sample) |
438 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
439 if(lavc_venc_context->extradata_size){ | |
440 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); | |
441 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
442 } | |
7088 | 443 |
5550 | 444 return 1; |
445 } | |
446 | |
447 static int control(struct vf_instance_s* vf, int request, void* data){ | |
448 | |
449 return CONTROL_UNKNOWN; | |
450 } | |
451 | |
452 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
453 switch(fmt){ | |
454 case IMGFMT_YV12: | |
455 case IMGFMT_IYUV: | |
456 case IMGFMT_I420: | |
8190 | 457 if(!strcasecmp(lavc_param_format, "YV12")) |
458 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
459 break; | |
460 case IMGFMT_422P: | |
461 if(!strcasecmp(lavc_param_format, "422P")) | |
462 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
463 break; | |
5550 | 464 } |
465 return 0; | |
466 } | |
467 | |
8347 | 468 static double psnr(double d){ |
469 if(d==0) return INFINITY; | |
470 return -10.0*log(d)/log(10); | |
471 } | |
472 | |
7368 | 473 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
8347 | 474 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
5550 | 475 int out_size; |
8413 | 476 AVFrame *pic= vf->priv->pic; |
5550 | 477 |
8339 | 478 pic->data[0]=mpi->planes[0]; |
479 pic->data[1]=mpi->planes[1]; | |
480 pic->data[2]=mpi->planes[2]; | |
481 pic->linesize[0]=mpi->stride[0]; | |
482 pic->linesize[1]=mpi->stride[1]; | |
483 pic->linesize[2]=mpi->stride[2]; | |
5550 | 484 |
7444 | 485 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 486 pic); |
5550 | 487 |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8803
diff
changeset
|
488 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0); |
8413 | 489 |
8347 | 490 #if LIBAVCODEC_BUILD >= 4643 |
491 /* store psnr / pict size / type / qscale */ | |
492 if(lavc_param_psnr){ | |
493 static FILE *fvstats=NULL; | |
494 char filename[20]; | |
495 static long long int all_len=0; | |
496 static int frame_number=0; | |
497 static double all_frametime=0.0; | |
8413 | 498 AVFrame *pic= lavc_venc_context->coded_frame; |
8347 | 499 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; |
500 | |
501 if(!fvstats) { | |
502 time_t today2; | |
503 struct tm *today; | |
504 today2 = time(NULL); | |
505 today = localtime(&today2); | |
506 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
507 today->tm_min, today->tm_sec); | |
508 fvstats = fopen(filename,"w"); | |
509 if(!fvstats) { | |
510 perror("fopen"); | |
511 lavc_param_psnr=0; // disable block | |
512 /*exit(1);*/ | |
513 } | |
514 } | |
515 | |
516 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 517 lavc_venc_context->coded_frame->coded_picture_number, |
518 lavc_venc_context->coded_frame->quality, | |
8347 | 519 out_size, |
8413 | 520 psnr(lavc_venc_context->coded_frame->error[0]/f), |
521 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
522 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
523 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)), | |
524 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 525 ); |
526 } | |
527 #endif | |
7088 | 528 /* store stats if there are any */ |
7444 | 529 if(lavc_venc_context->stats_out && stats_file) |
530 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
7368 | 531 return 1; |
5550 | 532 } |
533 | |
5551 | 534 static void uninit(struct vf_instance_s* vf){ |
8347 | 535 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
536 | |
537 #if LIBAVCODEC_BUILD >= 4643 | |
538 if(lavc_param_psnr){ | |
539 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
540 | |
8413 | 541 f*= lavc_venc_context->coded_frame->coded_picture_number; |
8347 | 542 |
543 printf("PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", | |
544 psnr(lavc_venc_context->error[0]/f), | |
545 psnr(lavc_venc_context->error[1]*4/f), | |
546 psnr(lavc_venc_context->error[2]*4/f), | |
547 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
548 ); | |
549 } | |
550 #endif | |
551 | |
7444 | 552 avcodec_close(lavc_venc_context); |
7088 | 553 |
554 if(stats_file) fclose(stats_file); | |
7089 | 555 |
7088 | 556 /* free rc_override */ |
7444 | 557 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override); |
558 lavc_venc_context->rc_override= NULL; | |
559 | |
560 if(vf->priv->context) free(vf->priv->context); | |
561 vf->priv->context= NULL; | |
5551 | 562 } |
563 | |
5550 | 564 //===========================================================================// |
565 | |
566 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 567 vf->uninit=uninit; |
5550 | 568 vf->config=config; |
569 vf->control=control; | |
570 vf->query_format=query_format; | |
571 vf->put_image=put_image; | |
572 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
573 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 574 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 575 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
576 /* 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
|
577 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
|
578 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
|
579 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
|
580 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
581 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
|
582 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
|
583 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
|
584 } |
8190 | 585 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "huffyuv")) |
586 { | |
587 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
588 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
589 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
590 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
591 } | |
8587 | 592 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
593 { | |
594 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
595 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
596 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
597 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
598 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
599 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
600 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
601 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
|
602 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
603 } |
5550 | 604 mux_v->bih->biWidth=0; |
605 mux_v->bih->biHeight=0; | |
606 mux_v->bih->biPlanes=1; | |
607 mux_v->bih->biBitCount=24; | |
608 if (!lavc_param_vcodec) | |
609 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
610 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 611 return 0; |
612 } | |
613 | |
614 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
615 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
616 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) | |
617 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
618 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
619 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
620 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
621 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
622 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) | |
623 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
624 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
625 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 626 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
627 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 628 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
629 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 630 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
631 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 632 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
633 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
5550 | 634 else |
635 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
636 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
637 | |
638 if (!avcodec_inited){ | |
639 avcodec_init(); | |
640 avcodec_register_all(); | |
641 avcodec_inited=1; | |
642 } | |
643 | |
644 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
645 if (!vf->priv->codec) { | |
646 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
647 return 0; | |
648 } | |
649 | |
8413 | 650 #if LIBAVCODEC_BUILD >= 4645 |
651 vf->priv->pic = avcodec_alloc_frame(); | |
652 #else | |
8339 | 653 vf->priv->pic = avcodec_alloc_picture(); |
8413 | 654 #endif |
7444 | 655 vf->priv->context = avcodec_alloc_context(); |
656 | |
5550 | 657 return 1; |
658 } | |
659 | |
660 vf_info_t ve_info_lavc = { | |
661 "libavcodec encoder", | |
662 "lavc", | |
6673 | 663 "A'rpi, Alex, Michael", |
5550 | 664 "for internal use by mencoder", |
665 vf_open | |
666 }; | |
667 | |
668 //===========================================================================// | |
669 #endif |