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