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