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