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