Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 8228:59e01995144c
Finally add the correct compile flags for SDL under cygwin automatically.
Patch by Sycotic Smith <sycotic@linuxmail.org> and me.
author | diego |
---|---|
date | Mon, 18 Nov 2002 01:02:27 +0000 |
parents | 49783c38014e |
children | d7bc284a2b4a |
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; |
8190 | 95 static int lavc_param_prediction_method= FF_PRED_LEFT; |
96 static char *lavc_param_format="YV12"; | |
5550 | 97 |
98 #include "cfgparser.h" | |
99 | |
100 #ifdef USE_LIBAVCODEC | |
101 struct config lavcopts_conf[]={ | |
102 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
103 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
104 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
105 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
106 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
107 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
108 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
109 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
110 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
111 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
112 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
113 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 114 {"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
|
115 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 116 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
7088 | 117 #if LIBAVCODEC_BUILD < 4620 |
5778 | 118 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
7088 | 119 #endif |
5778 | 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 #ifdef CODEC_FLAG_PART |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
122 {"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
|
123 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 124 {"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
|
125 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 126 {"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
|
127 {"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
|
128 #endif |
5550 | 129 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 130 #if LIBAVCODEC_BUILD >= 4614 |
131 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, | |
132 #endif | |
6944 | 133 #if LIBAVCODEC_BUILD >= 4619 |
134 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
135 #endif | |
7088 | 136 #if LIBAVCODEC_BUILD >= 4620 |
137 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, | |
138 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
139 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
140 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
141 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
142 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
143 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
144 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
145 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
146 {"vrc_buf_size", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
147 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
148 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
149 #endif | |
7152 | 150 #if LIBAVCODEC_BUILD >= 4621 |
151 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
152 #endif | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
153 #if LIBAVCODEC_BUILD >= 4623 |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
154 {"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
|
155 #endif |
7490 | 156 #if LIBAVCODEC_BUILD >= 4625 |
157 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
158 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
159 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
160 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
161 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
162 #endif | |
7496 | 163 #if LIBAVCODEC_BUILD >= 4626 |
164 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
165 #endif | |
7504 | 166 #if LIBAVCODEC_BUILD >= 4627 |
167 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
168 #endif | |
7564 | 169 #if LIBAVCODEC_BUILD >= 4629 |
170 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, | |
171 #endif | |
8190 | 172 #if LIBAVCODEC_BUILD >= 4639 |
173 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, | |
174 {"format", &lavc_param_format, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
175 #endif | |
5550 | 176 {NULL, NULL, 0, 0, 0, 0, NULL} |
177 }; | |
178 #endif | |
179 | |
180 struct vf_priv_s { | |
181 aviwrite_stream_t* mux; | |
7444 | 182 AVCodecContext *context; |
5550 | 183 AVCodec *codec; |
7088 | 184 FILE *stats_file; |
5550 | 185 }; |
186 | |
7088 | 187 #define stats_file (vf->priv->stats_file) |
5550 | 188 #define mux_v (vf->priv->mux) |
189 #define lavc_venc_context (vf->priv->context) | |
190 | |
191 static int config(struct vf_instance_s* vf, | |
192 int width, int height, int d_width, int d_height, | |
193 unsigned int flags, unsigned int outfmt){ | |
7088 | 194 int size, i; |
195 void *p; | |
196 | |
5550 | 197 mux_v->bih->biWidth=width; |
198 mux_v->bih->biHeight=height; | |
199 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
200 | |
201 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
202 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
203 (char *)&mux_v->bih->biCompression); | |
204 | |
7444 | 205 lavc_venc_context->width = width; |
206 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
|
207 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 208 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
|
209 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 210 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 211 else |
7444 | 212 lavc_venc_context->bit_rate = 800000; /* default */ |
213 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
214 lavc_venc_context->frame_rate = (float)mux_v->h.dwRate/mux_v->h.dwScale * FRAME_RATE_BASE; | |
215 lavc_venc_context->qmin= lavc_param_vqmin; | |
216 lavc_venc_context->qmax= lavc_param_vqmax; | |
217 lavc_venc_context->max_qdiff= lavc_param_vqdiff; | |
218 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
219 lavc_venc_context->qblur= lavc_param_vqblur; | |
220 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
221 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
222 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
223 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
|
224 #ifdef CODEC_FLAG_PART |
7444 | 225 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset; |
226 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; | |
227 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
228 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
229 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
230 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
|
231 #endif |
7088 | 232 #if LIBAVCODEC_BUILD >= 4620 |
7444 | 233 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; |
234 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset; | |
235 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; | |
236 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
237 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
238 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
239 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; | |
240 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
241 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; | |
242 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; | |
243 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
7152 | 244 |
7088 | 245 p= lavc_param_rc_override_string; |
246 for(i=0; p; i++){ | |
247 int start, end, q; | |
248 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
249 if(e!=3){ | |
250 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
251 return 0; | |
252 } | |
7444 | 253 lavc_venc_context->rc_override= |
254 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
255 lavc_venc_context->rc_override[i].start_frame= start; | |
256 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 257 if(q>0){ |
7444 | 258 lavc_venc_context->rc_override[i].qscale= q; |
259 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 260 } |
261 else{ | |
7444 | 262 lavc_venc_context->rc_override[i].qscale= 0; |
263 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 264 } |
265 p= strchr(p, '/'); | |
266 if(p) p++; | |
267 } | |
7444 | 268 lavc_venc_context->rc_override_count=i; |
7088 | 269 #endif |
270 | |
6944 | 271 #if LIBAVCODEC_BUILD >= 4619 |
7444 | 272 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
6944 | 273 #endif |
7152 | 274 |
275 #if LIBAVCODEC_BUILD >= 4621 | |
7444 | 276 lavc_venc_context->dct_algo= lavc_param_fdct; |
7152 | 277 #endif |
7564 | 278 #if LIBAVCODEC_BUILD >= 4629 |
279 lavc_venc_context->idct_algo= lavc_param_idct; | |
280 #endif | |
7152 | 281 |
7490 | 282 #if LIBAVCODEC_BUILD >= 4625 |
283 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; | |
284 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
285 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
286 lavc_venc_context->p_masking= lavc_param_p_masking; | |
287 #endif | |
7496 | 288 #if LIBAVCODEC_BUILD >= 4626 |
289 lavc_venc_context->dark_masking= lavc_param_dark_masking; | |
290 #endif | |
7490 | 291 |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
292 #if LIBAVCODEC_BUILD >= 4623 |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
293 if (lavc_param_aspect != 0.0) |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
294 { |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
295 /* 625 means CIF */ |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
296 if (lavc_param_aspect == (float)(4.0/3.0)) |
7444 | 297 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
|
298 else if (lavc_param_aspect == (float)(16.0/9.0)) |
7444 | 299 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
|
300 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
|
301 { |
7444 | 302 lavc_venc_context->aspect_ratio_info = FF_ASPECT_EXTENDED; |
303 lavc_venc_context->aspected_width = 221; | |
304 lavc_venc_context->aspected_height = 100; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
305 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
306 else |
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 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
|
309 } |
7444 | 310 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio_info: %d\n", lavc_venc_context->aspect_ratio_info); |
311 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "par_width: %d\n", lavc_venc_context->aspected_width); | |
312 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
|
313 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
314 #endif |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
315 |
5550 | 316 /* keyframe interval */ |
317 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 318 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 319 else |
7444 | 320 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 321 |
322 if (lavc_param_vhq) | |
323 { | |
324 printf("High quality encoding selected (non real time)!\n"); | |
7444 | 325 lavc_venc_context->flags = CODEC_FLAG_HQ; |
5550 | 326 } |
327 else | |
7444 | 328 lavc_venc_context->flags = 0; |
5550 | 329 |
5781
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
330 /* 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
|
331 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
|
332 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
|
333 lavc_param_v4mv = 0; |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
334 } |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
335 |
7444 | 336 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
|
337 #ifdef CODEC_FLAG_PART |
7444 | 338 lavc_venc_context->flags|= lavc_param_data_partitioning; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
339 #endif |
6461 | 340 #if LIBAVCODEC_BUILD >= 4614 |
7444 | 341 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; |
6461 | 342 #endif |
343 | |
7490 | 344 #if LIBAVCODEC_BUILD >= 4625 |
345 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; | |
346 #endif | |
7504 | 347 #if LIBAVCODEC_BUILD >= 4627 |
348 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; | |
349 #endif | |
8190 | 350 #if LIBAVCODEC_BUILD >= 4639 |
351 lavc_venc_context->prediction_method= lavc_param_prediction_method; | |
352 if(!strcasecmp(lavc_param_format, "YV12")) | |
353 lavc_venc_context->pix_fmt= PIX_FMT_YUV420P; | |
354 else if(!strcasecmp(lavc_param_format, "422P")) | |
355 lavc_venc_context->pix_fmt= PIX_FMT_YUV422P; | |
356 else{ | |
357 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", lavc_param_format); | |
358 return 0; | |
359 } | |
360 #endif | |
5778 | 361 /* lavc internal 2pass bitrate control */ |
6673 | 362 switch(lavc_param_vpass){ |
7088 | 363 case 1: |
7444 | 364 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
7089 | 365 #if LIBAVCODEC_BUILD >= 4620 |
7088 | 366 stats_file= fopen(passtmpfile, "w"); |
367 if(stats_file==NULL){ | |
368 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
369 return 0; | |
370 } | |
7089 | 371 #endif |
7088 | 372 break; |
373 case 2: | |
7444 | 374 lavc_venc_context->flags|= CODEC_FLAG_PASS2; |
7089 | 375 #if LIBAVCODEC_BUILD >= 4620 |
7088 | 376 stats_file= fopen(passtmpfile, "r"); |
377 if(stats_file==NULL){ | |
378 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
379 return 0; | |
380 } | |
381 fseek(stats_file, 0, SEEK_END); | |
382 size= ftell(stats_file); | |
383 fseek(stats_file, 0, SEEK_SET); | |
384 | |
7444 | 385 lavc_venc_context->stats_in= malloc(size + 1); |
386 lavc_venc_context->stats_in[size]=0; | |
7088 | 387 |
7444 | 388 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 389 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
390 return 0; | |
7089 | 391 } |
392 #endif | |
7088 | 393 break; |
6673 | 394 } |
5778 | 395 |
5624 | 396 #ifdef ME_ZERO |
397 // workaround Juanjo's stupid incompatible change: | |
5550 | 398 motion_estimation_method = lavc_param_vme; |
5624 | 399 #else |
7444 | 400 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5624 | 401 #endif |
5550 | 402 |
403 /* fixed qscale :p */ | |
404 if (lavc_param_vqscale) | |
405 { | |
406 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale); | |
7444 | 407 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
408 lavc_venc_context->quality = lavc_param_vqscale; | |
5550 | 409 } |
410 | |
7444 | 411 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 412 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
413 return 0; | |
414 } | |
415 | |
7444 | 416 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 417 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
418 return 0; | |
419 } | |
7088 | 420 |
421 #if LIBAVCODEC_BUILD >= 4620 | |
422 /* free second pass buffer, its not needed anymore */ | |
7444 | 423 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in); |
424 lavc_venc_context->stats_in= NULL; | |
7088 | 425 #endif |
8190 | 426 #if LIBAVCODEC_BUILD >= 4639 |
427 if(lavc_venc_context->bits_per_sample) | |
428 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
429 if(lavc_venc_context->extradata_size){ | |
430 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); | |
431 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
432 } | |
433 #endif | |
7088 | 434 |
5550 | 435 return 1; |
436 } | |
437 | |
438 static int control(struct vf_instance_s* vf, int request, void* data){ | |
439 | |
440 return CONTROL_UNKNOWN; | |
441 } | |
442 | |
443 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
444 switch(fmt){ | |
445 case IMGFMT_YV12: | |
446 case IMGFMT_IYUV: | |
447 case IMGFMT_I420: | |
8190 | 448 if(!strcasecmp(lavc_param_format, "YV12")) |
449 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
450 break; | |
451 case IMGFMT_422P: | |
452 if(!strcasecmp(lavc_param_format, "422P")) | |
453 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
454 break; | |
5550 | 455 } |
456 return 0; | |
457 } | |
458 | |
7368 | 459 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
5550 | 460 int out_size; |
461 AVPicture lavc_venc_picture; | |
462 | |
463 lavc_venc_picture.data[0]=mpi->planes[0]; | |
464 lavc_venc_picture.data[1]=mpi->planes[1]; | |
465 lavc_venc_picture.data[2]=mpi->planes[2]; | |
466 lavc_venc_picture.linesize[0]=mpi->stride[0]; | |
467 lavc_venc_picture.linesize[1]=mpi->stride[1]; | |
468 lavc_venc_picture.linesize[2]=mpi->stride[2]; | |
469 | |
7444 | 470 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
5550 | 471 &lavc_venc_picture); |
472 | |
7444 | 473 mencoder_write_chunk(mux_v,out_size,lavc_venc_context->key_frame?0x10:0); |
7088 | 474 |
475 #if LIBAVCODEC_BUILD >= 4620 | |
476 /* store stats if there are any */ | |
7444 | 477 if(lavc_venc_context->stats_out && stats_file) |
478 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
7088 | 479 #endif |
7368 | 480 return 1; |
5550 | 481 } |
482 | |
5551 | 483 static void uninit(struct vf_instance_s* vf){ |
7444 | 484 avcodec_close(lavc_venc_context); |
7088 | 485 |
7089 | 486 #if LIBAVCODEC_BUILD >= 4620 |
7088 | 487 if(stats_file) fclose(stats_file); |
7089 | 488 |
7088 | 489 /* free rc_override */ |
7444 | 490 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override); |
491 lavc_venc_context->rc_override= NULL; | |
7088 | 492 #endif |
7444 | 493 |
494 if(vf->priv->context) free(vf->priv->context); | |
495 vf->priv->context= NULL; | |
5551 | 496 } |
497 | |
5550 | 498 //===========================================================================// |
499 | |
500 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 501 vf->uninit=uninit; |
5550 | 502 vf->config=config; |
503 vf->control=control; | |
504 vf->query_format=query_format; | |
505 vf->put_image=put_image; | |
506 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
507 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
7127 | 508 vf->priv->mux=(aviwrite_stream_t*)args; |
5550 | 509 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
510 /* 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
|
511 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
|
512 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
|
513 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
|
514 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
515 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
|
516 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
|
517 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
|
518 } |
8190 | 519 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "huffyuv")) |
520 { | |
521 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
522 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
523 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
524 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
525 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
526 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
527 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
528 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
529 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
|
530 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
531 } |
5550 | 532 mux_v->bih->biWidth=0; |
533 mux_v->bih->biHeight=0; | |
534 mux_v->bih->biPlanes=1; | |
535 mux_v->bih->biBitCount=24; | |
536 if (!lavc_param_vcodec) | |
537 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
538 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 539 return 0; |
540 } | |
541 | |
542 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
543 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
544 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) | |
545 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
546 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
547 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
548 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
549 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
550 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) | |
551 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
552 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
553 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 554 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
555 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 556 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
557 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8190 | 558 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
559 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
5550 | 560 else |
561 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
562 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
563 | |
564 if (!avcodec_inited){ | |
565 avcodec_init(); | |
566 avcodec_register_all(); | |
567 avcodec_inited=1; | |
568 } | |
569 | |
570 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
571 if (!vf->priv->codec) { | |
572 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
573 return 0; | |
574 } | |
575 | |
7444 | 576 #if LIBAVCODEC_BUILD >= 4624 |
577 vf->priv->context = avcodec_alloc_context(); | |
578 #else | |
579 vf->priv->context = malloc(sizeof(AVCodecContext)); | |
580 memset(vf->priv->context, 0, sizeof(AVCodecContext)); | |
581 #endif | |
582 | |
5550 | 583 return 1; |
584 } | |
585 | |
586 vf_info_t ve_info_lavc = { | |
587 "libavcodec encoder", | |
588 "lavc", | |
6673 | 589 "A'rpi, Alex, Michael", |
5550 | 590 "for internal use by mencoder", |
591 vf_open | |
592 }; | |
593 | |
594 //===========================================================================// | |
595 #endif |