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