Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 10351:373dc373ac4a
Set id="index" option
author | lumag |
---|---|
date | Mon, 30 Jun 2003 19:30:36 +0000 |
parents | f8b0d1d14d39 |
children | 17391ba6c53b |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
8237 | 4 #include <math.h> |
8347 | 5 #include <time.h> |
5550 | 6 |
8371
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
7 #if !defined(INFINITY) && defined(HUGE_VAL) |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
8 #define INFINITY HUGE_VAL |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
9 #endif |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
10 |
5550 | 11 #include "../config.h" |
12 | |
13 #ifdef USE_LIBAVCODEC | |
14 | |
15 #include "../mp_msg.h" | |
16 #include "../help_mp.h" | |
17 | |
18 #include "codec-cfg.h" | |
19 #include "stream.h" | |
20 #include "demuxer.h" | |
21 #include "stheader.h" | |
22 | |
8585 | 23 #include "muxer.h" |
5550 | 24 |
5607 | 25 #include "img_format.h" |
26 #include "mp_image.h" | |
5550 | 27 #include "vf.h" |
28 | |
7090
43d7b60bd7f4
fixing compilation without divx4 patch by (Rmi Guyomarch <rguyom at pobox dot com>)
michael
parents:
7089
diff
changeset
|
29 extern char* passtmpfile; |
5550 | 30 |
31 //===========================================================================// | |
32 | |
33 #ifdef USE_LIBAVCODEC_SO | |
7004 | 34 #include <ffmpeg/avcodec.h> |
5550 | 35 #else |
36 #include "libavcodec/avcodec.h" | |
37 #endif | |
38 | |
8339 | 39 #if LIBAVCODEC_BUILD < 4641 |
8340 | 40 #error we dont support libavcodec prior to build 4641, get the latest libavcodec CVS |
5778 | 41 #endif |
42 | |
9508 | 43 #if LIBAVCODEC_BUILD < 4659 |
7088 | 44 #warning your version of libavcodec is old, u might want to get a newer one |
45 #endif | |
46 | |
8413 | 47 #if LIBAVCODEC_BUILD < 4645 |
48 #define AVFrame AVVideoFrame | |
49 #define coded_frame coded_picture | |
50 #endif | |
51 | |
5550 | 52 extern int avcodec_inited; |
53 | |
54 /* video options */ | |
7555 | 55 static char *lavc_param_vcodec = "mpeg4"; |
5550 | 56 static int lavc_param_vbitrate = -1; |
7088 | 57 static int lavc_param_vrate_tolerance = 1000*8; |
5550 | 58 static int lavc_param_vhq = 0; /* default is realtime encoding */ |
59 static int lavc_param_v4mv = 0; | |
5556 | 60 static int lavc_param_vme = 4; |
5550 | 61 static int lavc_param_vqscale = 0; |
7088 | 62 static int lavc_param_vqmin = 2; |
63 static int lavc_param_vqmax = 31; | |
8492 | 64 static int lavc_param_mb_qmin = 2; |
65 static int lavc_param_mb_qmax = 31; | |
5550 | 66 static int lavc_param_vqdiff = 3; |
67 static float lavc_param_vqcompress = 0.5; | |
68 static float lavc_param_vqblur = 0.5; | |
7088 | 69 static float lavc_param_vb_qfactor = 1.25; |
70 static float lavc_param_vb_qoffset = 1.25; | |
71 static float lavc_param_vi_qfactor = 0.8; | |
72 static float lavc_param_vi_qoffset = 0.0; | |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
73 static int lavc_param_vmax_b_frames = 0; |
5550 | 74 static int lavc_param_keyint = -1; |
5778 | 75 static int lavc_param_vpass = 0; |
76 static int lavc_param_vrc_strategy = 2; | |
77 static int lavc_param_vb_strategy = 0; | |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
78 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
79 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
80 static int lavc_param_packet_size= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
81 static int lavc_param_strict= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
82 static int lavc_param_data_partitioning= 0; |
6461 | 83 static int lavc_param_gray=0; |
7088 | 84 static float lavc_param_rc_qsquish=1.0; |
85 static float lavc_param_rc_qmod_amp=0; | |
86 static int lavc_param_rc_qmod_freq=0; | |
87 static char *lavc_param_rc_override_string=NULL; | |
88 static char *lavc_param_rc_eq="tex^qComp"; | |
89 static int lavc_param_rc_buffer_size=0; | |
90 static float lavc_param_rc_buffer_aggressivity=1.0; | |
91 static int lavc_param_rc_max_rate=0; | |
92 static int lavc_param_rc_min_rate=0; | |
93 static float lavc_param_rc_initial_cplx=0; | |
6944 | 94 static int lavc_param_mpeg_quant=0; |
7152 | 95 static int lavc_param_fdct=0; |
7564 | 96 static int lavc_param_idct=0; |
8237 | 97 static char* lavc_param_aspect = NULL; |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
98 static int lavc_param_autoaspect = 0; |
7490 | 99 static float lavc_param_lumi_masking= 0.0; |
7496 | 100 static float lavc_param_dark_masking= 0.0; |
7490 | 101 static float lavc_param_temporal_cplx_masking= 0.0; |
102 static float lavc_param_spatial_cplx_masking= 0.0; | |
103 static float lavc_param_p_masking= 0.0; | |
104 static int lavc_param_normalize_aqp= 0; | |
7504 | 105 static int lavc_param_interlaced_dct= 0; |
8190 | 106 static int lavc_param_prediction_method= FF_PRED_LEFT; |
107 static char *lavc_param_format="YV12"; | |
8341 | 108 static int lavc_param_debug= 0; |
8347 | 109 static int lavc_param_psnr= 0; |
8803 | 110 static int lavc_param_me_pre_cmp= 0; |
8587 | 111 static int lavc_param_me_cmp= 0; |
112 static int lavc_param_me_sub_cmp= 0; | |
113 static int lavc_param_mb_cmp= 0; | |
8803 | 114 static int lavc_param_pre_dia_size= 0; |
8587 | 115 static int lavc_param_dia_size= 0; |
116 static int lavc_param_qpel= 0; | |
8684 | 117 static int lavc_param_trell= 0; |
9536 | 118 static int lavc_param_aic= 0; |
119 static int lavc_param_umv= 0; | |
8695 | 120 static int lavc_param_last_pred= 0; |
8709 | 121 static int lavc_param_pre_me= 1; |
8803 | 122 static int lavc_param_me_subpel_quality= 8; |
9508 | 123 static int lavc_param_me_range= 0; |
9645 | 124 #if LIBAVCODEC_BUILD >= 4663 |
125 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS; | |
126 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS; | |
127 #endif | |
10291 | 128 static int lavc_param_coder= 0; |
129 static int lavc_param_context= 0; | |
5550 | 130 |
131 #include "cfgparser.h" | |
132 | |
133 #ifdef USE_LIBAVCODEC | |
134 struct config lavcopts_conf[]={ | |
135 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
136 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
137 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
138 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
139 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
140 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
141 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
142 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
143 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 144 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
145 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
5550 | 146 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
147 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
148 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 149 {"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
|
150 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 151 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
152 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
8413 | 153 {"vb_strategy", &lavc_param_vb_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
154 {"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
|
155 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 156 {"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
|
157 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 158 {"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
|
159 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 160 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 161 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 162 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 163 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
164 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
165 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
166 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
167 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
168 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
169 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
170 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
171 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
172 {"vrc_buf_size", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
173 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
174 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
7152 | 175 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 176 {"aspect", &lavc_param_aspect, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
177 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7490 | 178 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
179 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
180 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
181 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
182 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 183 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 184 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 185 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 186 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
187 {"format", &lavc_param_format, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
8341 | 188 #if LIBAVCODEC_BUILD >= 4642 |
189 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, | |
190 #endif | |
8347 | 191 #if LIBAVCODEC_BUILD >= 4643 |
192 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, | |
193 #endif | |
8803 | 194 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 195 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
196 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
197 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
8803 | 198 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 199 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 200 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
8684 | 201 #if LIBAVCODEC_BUILD >= 4648 |
202 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL}, | |
203 #endif | |
8695 | 204 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 205 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 206 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
9508 | 207 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL}, |
9536 | 208 #ifdef CODEC_FLAG_H263P_AIC |
209 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIC, NULL}, | |
210 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL}, | |
211 #endif | |
9645 | 212 #if LIBAVCODEC_BUILD >= 4663 |
213 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
214 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
215 #endif | |
10291 | 216 #if LIBAVCODEC_BUILD >= 4669 |
217 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
218 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
219 #endif | |
5550 | 220 {NULL, NULL, 0, 0, 0, 0, NULL} |
221 }; | |
222 #endif | |
223 | |
224 struct vf_priv_s { | |
8585 | 225 muxer_stream_t* mux; |
7444 | 226 AVCodecContext *context; |
8413 | 227 AVFrame *pic; |
5550 | 228 AVCodec *codec; |
7088 | 229 FILE *stats_file; |
5550 | 230 }; |
231 | |
7088 | 232 #define stats_file (vf->priv->stats_file) |
5550 | 233 #define mux_v (vf->priv->mux) |
234 #define lavc_venc_context (vf->priv->context) | |
235 | |
236 static int config(struct vf_instance_s* vf, | |
237 int width, int height, int d_width, int d_height, | |
238 unsigned int flags, unsigned int outfmt){ | |
7088 | 239 int size, i; |
240 void *p; | |
241 | |
5550 | 242 mux_v->bih->biWidth=width; |
243 mux_v->bih->biHeight=height; | |
244 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
245 | |
246 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
247 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
248 (char *)&mux_v->bih->biCompression); | |
249 | |
7444 | 250 lavc_venc_context->width = width; |
251 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
|
252 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 253 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
|
254 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 255 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 256 else |
7444 | 257 lavc_venc_context->bit_rate = 800000; /* default */ |
258 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
9571 | 259 #if LIBAVCODEC_BUILD >= 4662 |
260 lavc_venc_context->frame_rate = mux_v->h.dwRate; | |
261 lavc_venc_context->frame_rate_base = mux_v->h.dwScale; | |
262 #else | |
263 lavc_venc_context->frame_rate = mux_v->h.dwRate*FRAME_RATE_BASE/mux_v->h.dwScale; | |
264 #endif | |
7444 | 265 lavc_venc_context->qmin= lavc_param_vqmin; |
266 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 267 #if LIBAVCODEC_BUILD >= 4646 |
268 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; | |
269 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
270 #endif | |
7444 | 271 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
272 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
273 lavc_venc_context->qblur= lavc_param_vqblur; | |
274 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
275 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
276 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
277 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
278 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset; | |
279 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; | |
280 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
281 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
282 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
283 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
284 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
285 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset; | |
286 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; | |
287 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
288 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
289 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
290 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; | |
291 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
292 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; | |
293 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; | |
294 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 295 #if LIBAVCODEC_BUILD >= 4642 |
296 lavc_venc_context->debug= lavc_param_debug; | |
297 #endif | |
8695 | 298 #if LIBAVCODEC_BUILD >= 4649 |
299 lavc_venc_context->last_predictor_count= lavc_param_last_pred; | |
300 #endif | |
8709 | 301 #if LIBAVCODEC_BUILD >= 4650 |
302 lavc_venc_context->pre_me= lavc_param_pre_me; | |
303 #endif | |
8803 | 304 #if LIBAVCODEC_BUILD >= 4651 |
305 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; | |
306 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
307 #endif | |
308 #if LIBAVCODEC_BUILD >= 4652 | |
309 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
310 #endif | |
9508 | 311 #if LIBAVCODEC_BUILD >= 4659 |
312 lavc_venc_context->me_range= lavc_param_me_range; | |
313 #endif | |
9645 | 314 #if LIBAVCODEC_BUILD >= 4663 |
315 lavc_venc_context->intra_quant_bias= lavc_param_ibias; | |
316 lavc_venc_context->inter_quant_bias= lavc_param_pbias; | |
317 #endif | |
10291 | 318 #if LIBAVCODEC_BUILD >= 4669 |
319 lavc_venc_context->coder_type= lavc_param_coder; | |
320 lavc_venc_context->context_model= lavc_param_context; | |
321 #endif | |
9508 | 322 |
7088 | 323 p= lavc_param_rc_override_string; |
324 for(i=0; p; i++){ | |
325 int start, end, q; | |
326 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
327 if(e!=3){ | |
328 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
329 return 0; | |
330 } | |
7444 | 331 lavc_venc_context->rc_override= |
332 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
333 lavc_venc_context->rc_override[i].start_frame= start; | |
334 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 335 if(q>0){ |
7444 | 336 lavc_venc_context->rc_override[i].qscale= q; |
337 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 338 } |
339 else{ | |
7444 | 340 lavc_venc_context->rc_override[i].qscale= 0; |
341 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 342 } |
343 p= strchr(p, '/'); | |
344 if(p) p++; | |
345 } | |
7444 | 346 lavc_venc_context->rc_override_count=i; |
7088 | 347 |
7444 | 348 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 349 |
7444 | 350 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 351 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 352 |
7490 | 353 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
354 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
355 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
356 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 357 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
7490 | 358 |
8237 | 359 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
360 { |
8237 | 361 int par_width, par_height, e; |
362 float ratio=0; | |
363 | |
364 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); | |
365 if(e==2){ | |
366 if(par_height) | |
367 ratio= (float)par_width / (float)par_height; | |
368 }else{ | |
369 e= sscanf (lavc_param_aspect, "%f", &ratio); | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
370 } |
8237 | 371 |
372 if (e && ratio > 0.1 && ratio < 10.0) { | |
373 lavc_venc_context->aspect_ratio= ratio; | |
374 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); | |
375 } else { | |
376 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
377 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
378 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
379 } |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
380 else if (lavc_param_autoaspect) |
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
381 lavc_venc_context->aspect_ratio = (float)d_width/d_height; |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
382 |
5550 | 383 /* keyframe interval */ |
384 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 385 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 386 else |
7444 | 387 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 388 |
389 if (lavc_param_vhq) | |
390 { | |
391 printf("High quality encoding selected (non real time)!\n"); | |
7444 | 392 lavc_venc_context->flags = CODEC_FLAG_HQ; |
5550 | 393 } |
394 else | |
7444 | 395 lavc_venc_context->flags = 0; |
5550 | 396 |
8587 | 397 #if LIBAVCODEC_BUILD >= 4647 |
398 lavc_venc_context->me_cmp= lavc_param_me_cmp; | |
399 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
400 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
401 lavc_venc_context->dia_size= lavc_param_dia_size; | |
402 lavc_venc_context->flags|= lavc_param_qpel; | |
403 #endif | |
8684 | 404 #if LIBAVCODEC_BUILD >= 4648 |
405 lavc_venc_context->flags|= lavc_param_trell; | |
406 #endif | |
9536 | 407 lavc_venc_context->flags|= lavc_param_aic; |
408 lavc_venc_context->flags|= lavc_param_umv; | |
7444 | 409 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
410 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
411 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; | |
6461 | 412 |
7490 | 413 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 414 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 415 #if LIBAVCODEC_BUILD >= 4643 |
416 lavc_venc_context->flags|= lavc_param_psnr; | |
417 #endif | |
8190 | 418 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
419 if(!strcasecmp(lavc_param_format, "YV12")) | |
420 lavc_venc_context->pix_fmt= PIX_FMT_YUV420P; | |
421 else if(!strcasecmp(lavc_param_format, "422P")) | |
422 lavc_venc_context->pix_fmt= PIX_FMT_YUV422P; | |
10293 | 423 else if(!strcasecmp(lavc_param_format, "444P")) |
424 lavc_venc_context->pix_fmt= PIX_FMT_YUV444P; | |
425 else if(!strcasecmp(lavc_param_format, "411P")) | |
426 lavc_venc_context->pix_fmt= PIX_FMT_YUV411P; | |
427 else if(!strcasecmp(lavc_param_format, "YVU9")) | |
428 lavc_venc_context->pix_fmt= PIX_FMT_YUV410P; | |
10302 | 429 else if(!strcasecmp(lavc_param_format, "BGR32")) |
430 lavc_venc_context->pix_fmt= PIX_FMT_RGBA32; | |
8190 | 431 else{ |
432 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", lavc_param_format); | |
433 return 0; | |
434 } | |
10302 | 435 |
5778 | 436 /* lavc internal 2pass bitrate control */ |
6673 | 437 switch(lavc_param_vpass){ |
7088 | 438 case 1: |
7444 | 439 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
7088 | 440 stats_file= fopen(passtmpfile, "w"); |
441 if(stats_file==NULL){ | |
442 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
443 return 0; | |
444 } | |
445 break; | |
446 case 2: | |
7444 | 447 lavc_venc_context->flags|= CODEC_FLAG_PASS2; |
7088 | 448 stats_file= fopen(passtmpfile, "r"); |
449 if(stats_file==NULL){ | |
450 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
451 return 0; | |
452 } | |
453 fseek(stats_file, 0, SEEK_END); | |
454 size= ftell(stats_file); | |
455 fseek(stats_file, 0, SEEK_SET); | |
456 | |
7444 | 457 lavc_venc_context->stats_in= malloc(size + 1); |
458 lavc_venc_context->stats_in[size]=0; | |
7088 | 459 |
7444 | 460 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 461 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
462 return 0; | |
7089 | 463 } |
7088 | 464 break; |
6673 | 465 } |
5778 | 466 |
7444 | 467 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 468 |
469 /* fixed qscale :p */ | |
470 if (lavc_param_vqscale) | |
471 { | |
472 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale); | |
7444 | 473 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
10131 | 474 #if LIBAVCODEC_BUILD >= 4668 |
475 lavc_venc_context->global_quality= FF_QUALITY_SCALE * lavc_param_vqscale; | |
476 #endif | |
8339 | 477 vf->priv->pic->quality = lavc_param_vqscale; |
5550 | 478 } |
479 | |
7444 | 480 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 481 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
482 return 0; | |
483 } | |
484 | |
7444 | 485 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 486 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
487 return 0; | |
488 } | |
7088 | 489 |
490 /* free second pass buffer, its not needed anymore */ | |
7444 | 491 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in); |
492 lavc_venc_context->stats_in= NULL; | |
8190 | 493 if(lavc_venc_context->bits_per_sample) |
494 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
495 if(lavc_venc_context->extradata_size){ | |
496 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); | |
497 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
498 } | |
7088 | 499 |
5550 | 500 return 1; |
501 } | |
502 | |
503 static int control(struct vf_instance_s* vf, int request, void* data){ | |
504 | |
505 return CONTROL_UNKNOWN; | |
506 } | |
507 | |
508 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
509 switch(fmt){ | |
510 case IMGFMT_YV12: | |
511 case IMGFMT_IYUV: | |
512 case IMGFMT_I420: | |
8190 | 513 if(!strcasecmp(lavc_param_format, "YV12")) |
514 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
515 break; | |
10293 | 516 case IMGFMT_411P: |
517 if(!strcasecmp(lavc_param_format, "411P")) | |
518 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
519 break; | |
8190 | 520 case IMGFMT_422P: |
521 if(!strcasecmp(lavc_param_format, "422P")) | |
522 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
523 break; | |
10293 | 524 case IMGFMT_444P: |
525 if(!strcasecmp(lavc_param_format, "444P")) | |
526 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
527 break; | |
528 case IMGFMT_YVU9: | |
529 if(!strcasecmp(lavc_param_format, "YVU9")) | |
530 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
531 break; | |
10302 | 532 case IMGFMT_BGR32: |
533 if(!strcasecmp(lavc_param_format, "BGR32")) | |
534 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; | |
535 break; | |
5550 | 536 } |
537 return 0; | |
538 } | |
539 | |
8347 | 540 static double psnr(double d){ |
541 if(d==0) return INFINITY; | |
542 return -10.0*log(d)/log(10); | |
543 } | |
544 | |
7368 | 545 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
8347 | 546 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
5550 | 547 int out_size; |
8413 | 548 AVFrame *pic= vf->priv->pic; |
5550 | 549 |
8339 | 550 pic->data[0]=mpi->planes[0]; |
551 pic->data[1]=mpi->planes[1]; | |
552 pic->data[2]=mpi->planes[2]; | |
553 pic->linesize[0]=mpi->stride[0]; | |
554 pic->linesize[1]=mpi->stride[1]; | |
555 pic->linesize[2]=mpi->stride[2]; | |
5550 | 556 |
7444 | 557 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 558 pic); |
5550 | 559 |
9536 | 560 |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8803
diff
changeset
|
561 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0); |
8413 | 562 |
8347 | 563 #if LIBAVCODEC_BUILD >= 4643 |
564 /* store psnr / pict size / type / qscale */ | |
565 if(lavc_param_psnr){ | |
566 static FILE *fvstats=NULL; | |
567 char filename[20]; | |
568 static long long int all_len=0; | |
569 static int frame_number=0; | |
570 static double all_frametime=0.0; | |
8413 | 571 AVFrame *pic= lavc_venc_context->coded_frame; |
8347 | 572 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
573 double quality=0.0; |
9868 | 574 int8_t *q; |
8347 | 575 |
576 if(!fvstats) { | |
577 time_t today2; | |
578 struct tm *today; | |
579 today2 = time(NULL); | |
580 today = localtime(&today2); | |
581 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
582 today->tm_min, today->tm_sec); | |
583 fvstats = fopen(filename,"w"); | |
584 if(!fvstats) { | |
585 perror("fopen"); | |
586 lavc_param_psnr=0; // disable block | |
587 /*exit(1);*/ | |
588 } | |
589 } | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
590 |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
591 // average MB quantizer |
9868 | 592 q = lavc_venc_context->coded_frame->qscale_table; |
593 if(q) { | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
594 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
595 int w = (lavc_venc_context->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
596 int h = (lavc_venc_context->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
597 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
598 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
599 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
600 q += lavc_venc_context->coded_frame->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
601 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
602 quality /= w * h; |
9868 | 603 } else |
604 quality = lavc_venc_context->coded_frame->quality; | |
8347 | 605 |
606 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 607 lavc_venc_context->coded_frame->coded_picture_number, |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
608 quality, |
8347 | 609 out_size, |
8413 | 610 psnr(lavc_venc_context->coded_frame->error[0]/f), |
611 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
612 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
613 psnr((lavc_venc_context->coded_frame->error[0]+lavc_venc_context->coded_frame->error[1]+lavc_venc_context->coded_frame->error[2])/(f*1.5)), | |
614 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 615 ); |
616 } | |
617 #endif | |
7088 | 618 /* store stats if there are any */ |
7444 | 619 if(lavc_venc_context->stats_out && stats_file) |
620 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
7368 | 621 return 1; |
5550 | 622 } |
623 | |
5551 | 624 static void uninit(struct vf_instance_s* vf){ |
8347 | 625 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
626 | |
627 #if LIBAVCODEC_BUILD >= 4643 | |
628 if(lavc_param_psnr){ | |
629 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
8413 | 630 f*= lavc_venc_context->coded_frame->coded_picture_number; |
8347 | 631 |
632 printf("PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", | |
633 psnr(lavc_venc_context->error[0]/f), | |
634 psnr(lavc_venc_context->error[1]*4/f), | |
635 psnr(lavc_venc_context->error[2]*4/f), | |
636 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
637 ); | |
638 } | |
639 #endif | |
640 | |
7444 | 641 avcodec_close(lavc_venc_context); |
7088 | 642 |
643 if(stats_file) fclose(stats_file); | |
7089 | 644 |
7088 | 645 /* free rc_override */ |
7444 | 646 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override); |
647 lavc_venc_context->rc_override= NULL; | |
648 | |
649 if(vf->priv->context) free(vf->priv->context); | |
650 vf->priv->context= NULL; | |
5551 | 651 } |
652 | |
5550 | 653 //===========================================================================// |
654 | |
655 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 656 vf->uninit=uninit; |
5550 | 657 vf->config=config; |
658 vf->control=control; | |
659 vf->query_format=query_format; | |
660 vf->put_image=put_image; | |
661 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
662 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 663 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 664 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
665 /* 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
|
666 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
|
667 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
|
668 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
|
669 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
670 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
|
671 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
|
672 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
|
673 } |
8190 | 674 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "huffyuv")) |
675 { | |
676 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
677 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
678 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
679 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
680 } | |
10131 | 681 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1")) |
682 { | |
683 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
684 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
685 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
686 } | |
8587 | 687 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
688 { | |
689 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
690 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
691 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
692 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
693 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
694 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
695 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
696 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
|
697 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
698 } |
5550 | 699 mux_v->bih->biWidth=0; |
700 mux_v->bih->biHeight=0; | |
701 mux_v->bih->biPlanes=1; | |
702 mux_v->bih->biBitCount=24; | |
703 if (!lavc_param_vcodec) | |
704 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
705 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 706 return 0; |
707 } | |
708 | |
709 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
710 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
711 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) | |
712 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
713 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
714 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
715 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
716 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
10302 | 717 else if (!strcasecmp(lavc_param_vcodec, "ljpeg")) |
718 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G'); | |
5550 | 719 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) |
720 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
721 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
722 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 723 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
724 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 725 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
726 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 727 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
728 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 729 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
730 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
10131 | 731 else if (!strcasecmp(lavc_param_vcodec, "asv1")) |
732 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1'); | |
10264 | 733 else if (!strcasecmp(lavc_param_vcodec, "ffv1")) |
734 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1'); | |
5550 | 735 else |
736 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
737 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
738 | |
739 if (!avcodec_inited){ | |
740 avcodec_init(); | |
741 avcodec_register_all(); | |
742 avcodec_inited=1; | |
743 } | |
744 | |
745 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
746 if (!vf->priv->codec) { | |
747 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
748 return 0; | |
749 } | |
750 | |
8413 | 751 #if LIBAVCODEC_BUILD >= 4645 |
752 vf->priv->pic = avcodec_alloc_frame(); | |
753 #else | |
8339 | 754 vf->priv->pic = avcodec_alloc_picture(); |
8413 | 755 #endif |
7444 | 756 vf->priv->context = avcodec_alloc_context(); |
757 | |
5550 | 758 return 1; |
759 } | |
760 | |
761 vf_info_t ve_info_lavc = { | |
762 "libavcodec encoder", | |
763 "lavc", | |
6673 | 764 "A'rpi, Alex, Michael", |
5550 | 765 "for internal use by mencoder", |
766 vf_open | |
767 }; | |
768 | |
769 //===========================================================================// | |
770 #endif |