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