Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 11681:4204af4b61a1
VAX architecture support (tested on VAXstation 4000/VLC)
author | gabucino |
---|---|
date | Thu, 25 Dec 2003 12:05:28 +0000 |
parents | 62ca7e82de82 |
children | 9165fbc7d89d |
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 |
11000 | 40 #error we do not 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; |
10498 | 58 static int lavc_param_mb_decision = 0; /* default is realtime encoding */ |
5550 | 59 static int lavc_param_v4mv = 0; |
5556 | 60 static int lavc_param_vme = 4; |
11032 | 61 static float lavc_param_vqscale = 0.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; | |
11032 | 66 static float lavc_param_lmin = 2; |
67 static float lavc_param_lmax = 31; | |
5550 | 68 static int lavc_param_vqdiff = 3; |
69 static float lavc_param_vqcompress = 0.5; | |
70 static float lavc_param_vqblur = 0.5; | |
7088 | 71 static float lavc_param_vb_qfactor = 1.25; |
72 static float lavc_param_vb_qoffset = 1.25; | |
73 static float lavc_param_vi_qfactor = 0.8; | |
74 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
|
75 static int lavc_param_vmax_b_frames = 0; |
5550 | 76 static int lavc_param_keyint = -1; |
5778 | 77 static int lavc_param_vpass = 0; |
78 static int lavc_param_vrc_strategy = 2; | |
79 static int lavc_param_vb_strategy = 0; | |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
80 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
81 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
82 static int lavc_param_packet_size= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
83 static int lavc_param_strict= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
84 static int lavc_param_data_partitioning= 0; |
6461 | 85 static int lavc_param_gray=0; |
7088 | 86 static float lavc_param_rc_qsquish=1.0; |
87 static float lavc_param_rc_qmod_amp=0; | |
88 static int lavc_param_rc_qmod_freq=0; | |
89 static char *lavc_param_rc_override_string=NULL; | |
90 static char *lavc_param_rc_eq="tex^qComp"; | |
91 static int lavc_param_rc_buffer_size=0; | |
92 static float lavc_param_rc_buffer_aggressivity=1.0; | |
93 static int lavc_param_rc_max_rate=0; | |
94 static int lavc_param_rc_min_rate=0; | |
95 static float lavc_param_rc_initial_cplx=0; | |
6944 | 96 static int lavc_param_mpeg_quant=0; |
7152 | 97 static int lavc_param_fdct=0; |
7564 | 98 static int lavc_param_idct=0; |
8237 | 99 static char* lavc_param_aspect = NULL; |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
100 static int lavc_param_autoaspect = 0; |
7490 | 101 static float lavc_param_lumi_masking= 0.0; |
7496 | 102 static float lavc_param_dark_masking= 0.0; |
7490 | 103 static float lavc_param_temporal_cplx_masking= 0.0; |
104 static float lavc_param_spatial_cplx_masking= 0.0; | |
105 static float lavc_param_p_masking= 0.0; | |
106 static int lavc_param_normalize_aqp= 0; | |
7504 | 107 static int lavc_param_interlaced_dct= 0; |
8190 | 108 static int lavc_param_prediction_method= FF_PRED_LEFT; |
10778 | 109 static int lavc_param_format= IMGFMT_YV12; |
8341 | 110 static int lavc_param_debug= 0; |
8347 | 111 static int lavc_param_psnr= 0; |
8803 | 112 static int lavc_param_me_pre_cmp= 0; |
8587 | 113 static int lavc_param_me_cmp= 0; |
114 static int lavc_param_me_sub_cmp= 0; | |
115 static int lavc_param_mb_cmp= 0; | |
8803 | 116 static int lavc_param_pre_dia_size= 0; |
8587 | 117 static int lavc_param_dia_size= 0; |
118 static int lavc_param_qpel= 0; | |
8684 | 119 static int lavc_param_trell= 0; |
9536 | 120 static int lavc_param_aic= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
121 static int lavc_param_aiv= 0; |
9536 | 122 static int lavc_param_umv= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
123 static int lavc_param_obmc= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
124 static int lavc_param_loop= 0; |
8695 | 125 static int lavc_param_last_pred= 0; |
8709 | 126 static int lavc_param_pre_me= 1; |
8803 | 127 static int lavc_param_me_subpel_quality= 8; |
9508 | 128 static int lavc_param_me_range= 0; |
9645 | 129 #if LIBAVCODEC_BUILD >= 4663 |
130 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS; | |
131 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS; | |
132 #endif | |
10291 | 133 static int lavc_param_coder= 0; |
134 static int lavc_param_context= 0; | |
10779 | 135 static char *lavc_param_intra_matrix = NULL; |
136 static char *lavc_param_inter_matrix = NULL; | |
10963 | 137 static int lavc_param_cbp= 0; |
10974 | 138 static int lavc_param_mv0= 0; |
11363 | 139 static int lavc_param_noise_reduction= 0; |
11445 | 140 static int lavc_param_qp_rd= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
141 static int lavc_param_inter_threshold= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
142 static int lavc_param_ss= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
143 static int lavc_param_top= -1; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
144 |
5550 | 145 |
11375 | 146 char *lavc_param_acodec = "mp2"; |
147 int lavc_param_atag = 0; | |
148 int lavc_param_abitrate = 224; | |
149 | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10498
diff
changeset
|
150 #include "m_option.h" |
5550 | 151 |
152 #ifdef USE_LIBAVCODEC | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10498
diff
changeset
|
153 m_option_t lavcopts_conf[]={ |
11375 | 154 {"acodec", &lavc_param_acodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
155 {"abitrate", &lavc_param_abitrate, CONF_TYPE_INT, CONF_RANGE, 1, 1000, NULL}, | |
156 {"atag", &lavc_param_atag, CONF_TYPE_INT, CONF_RANGE, 0, 0xffff, NULL}, | |
5550 | 157 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
158 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
159 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
10498 | 160 {"vhq", &lavc_param_mb_decision, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
161 {"mbd", &lavc_param_mb_decision, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, | |
5550 | 162 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
163 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
11032 | 164 {"vqscale", &lavc_param_vqscale, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
5550 | 165 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
166 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 167 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
168 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
11032 | 169 {"lmin", &lavc_param_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
170 {"lmax", &lavc_param_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, | |
5550 | 171 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
172 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
173 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 174 {"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
|
175 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 176 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
177 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
8413 | 178 {"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
|
179 {"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
|
180 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 181 {"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
|
182 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 183 {"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
|
184 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 185 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 186 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 187 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 188 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
189 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
190 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
191 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
192 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
193 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
194 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
195 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
196 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
11245
9a3230a5ef38
100l patch by (Tilmann Bitterberg <transcode at tibit dot org>)
michael
parents:
11195
diff
changeset
|
197 {"vrc_buf_size", &lavc_param_rc_buffer_size, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, |
7088 | 198 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, |
199 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
7152 | 200 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 201 {"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
|
202 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7490 | 203 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
204 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
205 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
206 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
207 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 208 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 209 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 210 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 211 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
10778 | 212 {"format", &lavc_param_format, CONF_TYPE_IMGFMT, 0, 0, 0, NULL}, |
8341 | 213 #if LIBAVCODEC_BUILD >= 4642 |
214 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, | |
215 #endif | |
8347 | 216 #if LIBAVCODEC_BUILD >= 4643 |
217 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, | |
218 #endif | |
8803 | 219 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 220 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
221 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
222 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
8803 | 223 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 224 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 225 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
8684 | 226 #if LIBAVCODEC_BUILD >= 4648 |
227 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL}, | |
228 #endif | |
8695 | 229 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 230 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 231 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
9508 | 232 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL}, |
9536 | 233 #ifdef CODEC_FLAG_H263P_AIC |
234 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIC, NULL}, | |
235 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL}, | |
236 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
237 #ifdef CODEC_FLAG_H263P_AIV |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
238 {"aiv", &lavc_param_aiv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIV, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
239 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
240 #ifdef CODEC_FLAG_OBMC |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
241 {"obmc", &lavc_param_obmc, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_OBMC, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
242 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
243 #ifdef CODEC_FLAG_LOOP_FILTER |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
244 {"loop", &lavc_param_loop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_LOOP_FILTER, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
245 #endif |
9645 | 246 #if LIBAVCODEC_BUILD >= 4663 |
247 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
248 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
249 #endif | |
10291 | 250 #if LIBAVCODEC_BUILD >= 4669 |
251 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
252 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
253 #endif | |
10779 | 254 #if LIBAVCODEC_BUILD >= 4675 |
255 {"intra_matrix", &lavc_param_intra_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
256 {"inter_matrix", &lavc_param_inter_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
257 #endif | |
10963 | 258 #if LIBAVCODEC_BUILD >= 4681 |
259 {"cbp", &lavc_param_cbp, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CBP_RD, NULL}, | |
260 #endif | |
10974 | 261 #if LIBAVCODEC_BUILD >= 4683 |
262 {"mv0", &lavc_param_mv0, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_MV0, NULL}, | |
263 #endif | |
11363 | 264 {"nr", &lavc_param_noise_reduction, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
11445 | 265 #ifdef CODEC_FLAG_QP_RD |
266 {"qprd", &lavc_param_qp_rd, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QP_RD, NULL}, | |
267 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
268 #ifdef CODEC_FLAG_H263P_SLICE_STRUCT |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
269 {"ss", &lavc_param_ss, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_SLICE_STRUCT, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
270 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
271 {"inter_threshold", &lavc_param_inter_threshold, CONF_TYPE_INT, CONF_RANGE, -1000000, 1000000, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
272 {"top", &lavc_param_top, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL}, |
5550 | 273 {NULL, NULL, 0, 0, 0, 0, NULL} |
274 }; | |
275 #endif | |
276 | |
277 struct vf_priv_s { | |
8585 | 278 muxer_stream_t* mux; |
7444 | 279 AVCodecContext *context; |
8413 | 280 AVFrame *pic; |
5550 | 281 AVCodec *codec; |
7088 | 282 FILE *stats_file; |
5550 | 283 }; |
284 | |
7088 | 285 #define stats_file (vf->priv->stats_file) |
5550 | 286 #define mux_v (vf->priv->mux) |
287 #define lavc_venc_context (vf->priv->context) | |
288 | |
11032 | 289 #if LIBAVCODEC_BUILD < 4684 |
290 #define FF_QP2LAMBDA 1 | |
291 #endif | |
292 | |
5550 | 293 static int config(struct vf_instance_s* vf, |
294 int width, int height, int d_width, int d_height, | |
295 unsigned int flags, unsigned int outfmt){ | |
7088 | 296 int size, i; |
297 void *p; | |
298 | |
5550 | 299 mux_v->bih->biWidth=width; |
300 mux_v->bih->biHeight=height; | |
301 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
302 | |
303 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
304 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
305 (char *)&mux_v->bih->biCompression); | |
306 | |
7444 | 307 lavc_venc_context->width = width; |
308 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
|
309 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 310 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
|
311 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 312 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 313 else |
7444 | 314 lavc_venc_context->bit_rate = 800000; /* default */ |
315 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
9571 | 316 #if LIBAVCODEC_BUILD >= 4662 |
317 lavc_venc_context->frame_rate = mux_v->h.dwRate; | |
318 lavc_venc_context->frame_rate_base = mux_v->h.dwScale; | |
319 #else | |
320 lavc_venc_context->frame_rate = mux_v->h.dwRate*FRAME_RATE_BASE/mux_v->h.dwScale; | |
321 #endif | |
7444 | 322 lavc_venc_context->qmin= lavc_param_vqmin; |
323 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 324 #if LIBAVCODEC_BUILD >= 4646 |
325 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; | |
326 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
327 #endif | |
11032 | 328 #if LIBAVCODEC_BUILD >= 4684 |
329 lavc_venc_context->lmin= (int)(FF_QP2LAMBDA * lavc_param_lmin + 0.5); | |
330 lavc_venc_context->lmax= (int)(FF_QP2LAMBDA * lavc_param_lmax + 0.5); | |
331 #endif | |
7444 | 332 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
333 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
334 lavc_venc_context->qblur= lavc_param_vqblur; | |
335 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
336 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
337 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
338 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
339 lavc_venc_context->b_quant_offset= lavc_param_vb_qoffset; | |
340 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; | |
341 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
342 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
343 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
344 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
345 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
346 lavc_venc_context->i_quant_offset= lavc_param_vi_qoffset; | |
347 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; | |
348 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
349 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
350 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
351 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; | |
352 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
353 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; | |
354 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; | |
355 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 356 #if LIBAVCODEC_BUILD >= 4642 |
357 lavc_venc_context->debug= lavc_param_debug; | |
358 #endif | |
8695 | 359 #if LIBAVCODEC_BUILD >= 4649 |
360 lavc_venc_context->last_predictor_count= lavc_param_last_pred; | |
361 #endif | |
8709 | 362 #if LIBAVCODEC_BUILD >= 4650 |
363 lavc_venc_context->pre_me= lavc_param_pre_me; | |
364 #endif | |
8803 | 365 #if LIBAVCODEC_BUILD >= 4651 |
366 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; | |
367 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
368 #endif | |
369 #if LIBAVCODEC_BUILD >= 4652 | |
370 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
371 #endif | |
9508 | 372 #if LIBAVCODEC_BUILD >= 4659 |
373 lavc_venc_context->me_range= lavc_param_me_range; | |
374 #endif | |
9645 | 375 #if LIBAVCODEC_BUILD >= 4663 |
376 lavc_venc_context->intra_quant_bias= lavc_param_ibias; | |
377 lavc_venc_context->inter_quant_bias= lavc_param_pbias; | |
378 #endif | |
10291 | 379 #if LIBAVCODEC_BUILD >= 4669 |
380 lavc_venc_context->coder_type= lavc_param_coder; | |
381 lavc_venc_context->context_model= lavc_param_context; | |
382 #endif | |
11363 | 383 #if LIBAVCODEC_BUILD >= 4690 |
384 lavc_venc_context->noise_reduction= lavc_param_noise_reduction; | |
385 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
386 #if LIBAVCODEC_BUILD >= 4693 |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
387 lavc_venc_context->inter_threshold= lavc_param_inter_threshold; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
388 #endif |
10779 | 389 #if LIBAVCODEC_BUILD >= 4675 |
390 if (lavc_param_intra_matrix) | |
391 { | |
392 char *tmp; | |
393 | |
394 lavc_venc_context->intra_matrix = | |
395 malloc(sizeof(*lavc_venc_context->intra_matrix)*64); | |
396 | |
397 i = 0; | |
398 while ((tmp = strsep(&lavc_param_intra_matrix, ",")) && (i < 64)) | |
399 { | |
400 if (!tmp || (tmp && !strlen(tmp))) | |
401 break; | |
402 lavc_venc_context->intra_matrix[i++] = atoi(tmp); | |
403 } | |
404 | |
405 if (i != 64) | |
406 { | |
407 free(lavc_venc_context->intra_matrix); | |
408 lavc_venc_context->intra_matrix = NULL; | |
409 } | |
410 else | |
411 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified intra matrix\n"); | |
412 } | |
413 if (lavc_param_inter_matrix) | |
414 { | |
415 char *tmp; | |
416 | |
417 lavc_venc_context->inter_matrix = | |
418 malloc(sizeof(*lavc_venc_context->inter_matrix)*64); | |
419 | |
420 i = 0; | |
421 while ((tmp = strsep(&lavc_param_inter_matrix, ",")) && (i < 64)) | |
422 { | |
423 if (!tmp || (tmp && !strlen(tmp))) | |
424 break; | |
425 lavc_venc_context->inter_matrix[i++] = atoi(tmp); | |
426 } | |
427 | |
428 if (i != 64) | |
429 { | |
430 free(lavc_venc_context->inter_matrix); | |
431 lavc_venc_context->inter_matrix = NULL; | |
432 } | |
433 else | |
434 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified inter matrix\n"); | |
435 } | |
436 #endif | |
9508 | 437 |
7088 | 438 p= lavc_param_rc_override_string; |
439 for(i=0; p; i++){ | |
440 int start, end, q; | |
441 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
442 if(e!=3){ | |
443 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
444 return 0; | |
445 } | |
7444 | 446 lavc_venc_context->rc_override= |
447 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
448 lavc_venc_context->rc_override[i].start_frame= start; | |
449 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 450 if(q>0){ |
7444 | 451 lavc_venc_context->rc_override[i].qscale= q; |
452 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 453 } |
454 else{ | |
7444 | 455 lavc_venc_context->rc_override[i].qscale= 0; |
456 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 457 } |
458 p= strchr(p, '/'); | |
459 if(p) p++; | |
460 } | |
7444 | 461 lavc_venc_context->rc_override_count=i; |
7088 | 462 |
7444 | 463 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 464 |
7444 | 465 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 466 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 467 |
7490 | 468 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
469 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
470 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
471 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 472 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
7490 | 473 |
8237 | 474 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
475 { |
8237 | 476 int par_width, par_height, e; |
477 float ratio=0; | |
478 | |
479 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); | |
480 if(e==2){ | |
481 if(par_height) | |
482 ratio= (float)par_width / (float)par_height; | |
483 }else{ | |
484 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
|
485 } |
8237 | 486 |
487 if (e && ratio > 0.1 && ratio < 10.0) { | |
11194 | 488 #if LIBAVCODEC_BUILD >= 4687 |
11195
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
489 lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 255); |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
490 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "sample_aspect_ratio: %d/%d\n", |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
491 lavc_venc_context->sample_aspect_ratio.num, |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
492 lavc_venc_context->sample_aspect_ratio.den); |
11194 | 493 #else |
8237 | 494 lavc_venc_context->aspect_ratio= ratio; |
11194 | 495 #endif |
8237 | 496 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); |
497 } else { | |
498 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
499 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
500 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
501 } |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
502 else if (lavc_param_autoaspect) |
11194 | 503 #if LIBAVCODEC_BUILD >= 4687 |
11369 | 504 lavc_venc_context->sample_aspect_ratio = av_d2q((float)d_width/d_height*height / width, 255); |
11194 | 505 #else |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
506 lavc_venc_context->aspect_ratio = (float)d_width/d_height; |
11194 | 507 #endif |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
508 |
5550 | 509 /* keyframe interval */ |
510 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 511 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 512 else |
7444 | 513 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 514 |
10498 | 515 lavc_venc_context->flags = 0; |
516 if (lavc_param_mb_decision) | |
5550 | 517 { |
518 printf("High quality encoding selected (non real time)!\n"); | |
10498 | 519 #if LIBAVCODEC_BUILD < 4673 |
520 lavc_venc_context->flags = CODEC_FLAG_HQ; | |
521 #else | |
522 lavc_venc_context->mb_decision= lavc_param_mb_decision; | |
523 #endif | |
5550 | 524 } |
525 | |
8587 | 526 #if LIBAVCODEC_BUILD >= 4647 |
527 lavc_venc_context->me_cmp= lavc_param_me_cmp; | |
528 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
529 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
530 lavc_venc_context->dia_size= lavc_param_dia_size; | |
531 lavc_venc_context->flags|= lavc_param_qpel; | |
532 #endif | |
8684 | 533 #if LIBAVCODEC_BUILD >= 4648 |
534 lavc_venc_context->flags|= lavc_param_trell; | |
535 #endif | |
9536 | 536 lavc_venc_context->flags|= lavc_param_aic; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
537 lavc_venc_context->flags|= lavc_param_aiv; |
9536 | 538 lavc_venc_context->flags|= lavc_param_umv; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
539 lavc_venc_context->flags|= lavc_param_obmc; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
540 lavc_venc_context->flags|= lavc_param_loop; |
7444 | 541 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
542 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
10963 | 543 lavc_venc_context->flags|= lavc_param_cbp; |
10974 | 544 lavc_venc_context->flags|= lavc_param_mv0; |
11445 | 545 lavc_venc_context->flags|= lavc_param_qp_rd; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
546 lavc_venc_context->flags|= lavc_param_ss; |
7444 | 547 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; |
6461 | 548 |
7490 | 549 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 550 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 551 #if LIBAVCODEC_BUILD >= 4643 |
552 lavc_venc_context->flags|= lavc_param_psnr; | |
553 #endif | |
8190 | 554 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
10778 | 555 switch(lavc_param_format) |
556 { | |
557 case IMGFMT_YV12: | |
558 lavc_venc_context->pix_fmt = PIX_FMT_YUV420P; | |
559 break; | |
560 case IMGFMT_422P: | |
561 lavc_venc_context->pix_fmt = PIX_FMT_YUV422P; | |
562 break; | |
563 case IMGFMT_444P: | |
564 lavc_venc_context->pix_fmt = PIX_FMT_YUV444P; | |
565 break; | |
566 case IMGFMT_411P: | |
567 lavc_venc_context->pix_fmt = PIX_FMT_YUV411P; | |
568 break; | |
569 case IMGFMT_YVU9: | |
570 lavc_venc_context->pix_fmt = PIX_FMT_YUV410P; | |
571 break; | |
572 case IMGFMT_BGR32: | |
573 lavc_venc_context->pix_fmt = PIX_FMT_RGBA32; | |
574 break; | |
575 default: | |
576 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", vo_format_name(lavc_param_format)); | |
577 return 0; | |
8190 | 578 } |
10302 | 579 |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
580 if(!stats_file) { |
5778 | 581 /* lavc internal 2pass bitrate control */ |
6673 | 582 switch(lavc_param_vpass){ |
7088 | 583 case 1: |
7444 | 584 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
10881
6c3555f4c5c3
fix 2-pass encoding with libavcodec onwin32, patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10848
diff
changeset
|
585 stats_file= fopen(passtmpfile, "wb"); |
7088 | 586 if(stats_file==NULL){ |
587 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
588 return 0; | |
589 } | |
590 break; | |
591 case 2: | |
7444 | 592 lavc_venc_context->flags|= CODEC_FLAG_PASS2; |
10881
6c3555f4c5c3
fix 2-pass encoding with libavcodec onwin32, patch by Tristan Seligmann <mithrandi-mplayer-dev-eng at mithrandi.za.net>
faust3
parents:
10848
diff
changeset
|
593 stats_file= fopen(passtmpfile, "rb"); |
7088 | 594 if(stats_file==NULL){ |
595 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
596 return 0; | |
597 } | |
598 fseek(stats_file, 0, SEEK_END); | |
599 size= ftell(stats_file); | |
600 fseek(stats_file, 0, SEEK_SET); | |
601 | |
7444 | 602 lavc_venc_context->stats_in= malloc(size + 1); |
603 lavc_venc_context->stats_in[size]=0; | |
7088 | 604 |
7444 | 605 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 606 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
607 return 0; | |
7089 | 608 } |
7088 | 609 break; |
6673 | 610 } |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
611 } |
5778 | 612 |
7444 | 613 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 614 |
615 /* fixed qscale :p */ | |
616 if (lavc_param_vqscale) | |
617 { | |
11032 | 618 printf("Using constant qscale = %f (VBR)\n", lavc_param_vqscale); |
7444 | 619 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
10131 | 620 #if LIBAVCODEC_BUILD >= 4668 |
11032 | 621 lavc_venc_context->global_quality= |
10131 | 622 #endif |
11032 | 623 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * lavc_param_vqscale + 0.5); |
5550 | 624 } |
625 | |
7444 | 626 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 627 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
628 return 0; | |
629 } | |
630 | |
7444 | 631 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 632 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
633 return 0; | |
634 } | |
7088 | 635 |
636 /* free second pass buffer, its not needed anymore */ | |
7444 | 637 if(lavc_venc_context->stats_in) free(lavc_venc_context->stats_in); |
638 lavc_venc_context->stats_in= NULL; | |
8190 | 639 if(lavc_venc_context->bits_per_sample) |
640 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
641 if(lavc_venc_context->extradata_size){ | |
642 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); | |
643 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
644 } | |
7088 | 645 |
5550 | 646 return 1; |
647 } | |
648 | |
649 static int control(struct vf_instance_s* vf, int request, void* data){ | |
650 | |
651 return CONTROL_UNKNOWN; | |
652 } | |
653 | |
654 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
655 switch(fmt){ | |
656 case IMGFMT_YV12: | |
657 case IMGFMT_IYUV: | |
658 case IMGFMT_I420: | |
10778 | 659 if(lavc_param_format == IMGFMT_YV12) |
8190 | 660 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
661 break; | |
10293 | 662 case IMGFMT_411P: |
10778 | 663 if(lavc_param_format == IMGFMT_411P) |
10293 | 664 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
665 break; | |
8190 | 666 case IMGFMT_422P: |
10778 | 667 if(lavc_param_format == IMGFMT_422P) |
8190 | 668 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
669 break; | |
10293 | 670 case IMGFMT_444P: |
10778 | 671 if(lavc_param_format == IMGFMT_444P) |
10293 | 672 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
673 break; | |
674 case IMGFMT_YVU9: | |
10778 | 675 if(lavc_param_format == IMGFMT_YVU9) |
10293 | 676 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
677 break; | |
10302 | 678 case IMGFMT_BGR32: |
10778 | 679 if(lavc_param_format == IMGFMT_BGR32) |
10302 | 680 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
681 break; | |
5550 | 682 } |
683 return 0; | |
684 } | |
685 | |
8347 | 686 static double psnr(double d){ |
687 if(d==0) return INFINITY; | |
688 return -10.0*log(d)/log(10); | |
689 } | |
690 | |
7368 | 691 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
8347 | 692 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
5550 | 693 int out_size; |
8413 | 694 AVFrame *pic= vf->priv->pic; |
5550 | 695 |
8339 | 696 pic->data[0]=mpi->planes[0]; |
697 pic->data[1]=mpi->planes[1]; | |
698 pic->data[2]=mpi->planes[2]; | |
699 pic->linesize[0]=mpi->stride[0]; | |
700 pic->linesize[1]=mpi->stride[1]; | |
701 pic->linesize[2]=mpi->stride[2]; | |
5550 | 702 |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
703 #if LIBAVCODEC_BUILD >= 4697 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
704 if(lavc_param_interlaced_dct){ |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
705 if((mpi->fields & MP_IMGFIELD_ORDERED) && (mpi->fields & MP_IMGFIELD_INTERLACED)) |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
706 pic->top_field_first= !!(mpi->fields & MP_IMGFIELD_TOP_FIRST); |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
707 else |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
708 pic->top_field_first= 1; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
709 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
710 if(lavc_param_top!=-1) |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
711 pic->top_field_first= lavc_param_top; |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
712 } |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
713 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
714 |
7444 | 715 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 716 pic); |
5550 | 717 |
9536 | 718 |
9014
c671e9adbe22
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8803
diff
changeset
|
719 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0); |
8413 | 720 |
8347 | 721 #if LIBAVCODEC_BUILD >= 4643 |
722 /* store psnr / pict size / type / qscale */ | |
723 if(lavc_param_psnr){ | |
724 static FILE *fvstats=NULL; | |
725 char filename[20]; | |
726 static long long int all_len=0; | |
727 static int frame_number=0; | |
728 static double all_frametime=0.0; | |
8413 | 729 AVFrame *pic= lavc_venc_context->coded_frame; |
8347 | 730 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
|
731 double quality=0.0; |
9868 | 732 int8_t *q; |
8347 | 733 |
734 if(!fvstats) { | |
735 time_t today2; | |
736 struct tm *today; | |
737 today2 = time(NULL); | |
738 today = localtime(&today2); | |
739 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
740 today->tm_min, today->tm_sec); | |
741 fvstats = fopen(filename,"w"); | |
742 if(!fvstats) { | |
743 perror("fopen"); | |
744 lavc_param_psnr=0; // disable block | |
745 /*exit(1);*/ | |
746 } | |
747 } | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
748 |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
749 // average MB quantizer |
9868 | 750 q = lavc_venc_context->coded_frame->qscale_table; |
751 if(q) { | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
752 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
753 int w = (lavc_venc_context->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
754 int h = (lavc_venc_context->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
755 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
756 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
757 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
758 q += lavc_venc_context->coded_frame->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
759 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
760 quality /= w * h; |
9868 | 761 } else |
11032 | 762 quality = lavc_venc_context->coded_frame->quality / (float)FF_QP2LAMBDA; |
8347 | 763 |
764 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 765 lavc_venc_context->coded_frame->coded_picture_number, |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
766 quality, |
8347 | 767 out_size, |
8413 | 768 psnr(lavc_venc_context->coded_frame->error[0]/f), |
769 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
770 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
771 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)), | |
772 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 773 ); |
774 } | |
775 #endif | |
7088 | 776 /* store stats if there are any */ |
7444 | 777 if(lavc_venc_context->stats_out && stats_file) |
778 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
7368 | 779 return 1; |
5550 | 780 } |
781 | |
5551 | 782 static void uninit(struct vf_instance_s* vf){ |
8347 | 783 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
784 | |
785 #if LIBAVCODEC_BUILD >= 4643 | |
786 if(lavc_param_psnr){ | |
787 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
8413 | 788 f*= lavc_venc_context->coded_frame->coded_picture_number; |
8347 | 789 |
790 printf("PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", | |
791 psnr(lavc_venc_context->error[0]/f), | |
792 psnr(lavc_venc_context->error[1]*4/f), | |
793 psnr(lavc_venc_context->error[2]*4/f), | |
794 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
795 ); | |
796 } | |
797 #endif | |
798 | |
10779 | 799 #if LIBAVCODEC_BUILD >= 4675 |
800 if (lavc_venc_context->intra_matrix) | |
801 free(lavc_venc_context->intra_matrix); | |
802 lavc_venc_context->intra_matrix = NULL; | |
803 if (lavc_venc_context->inter_matrix) | |
804 free(lavc_venc_context->inter_matrix); | |
805 lavc_venc_context->inter_matrix = NULL; | |
806 #endif | |
807 | |
7444 | 808 avcodec_close(lavc_venc_context); |
7088 | 809 |
810 if(stats_file) fclose(stats_file); | |
7089 | 811 |
7088 | 812 /* free rc_override */ |
7444 | 813 if(lavc_venc_context->rc_override) free(lavc_venc_context->rc_override); |
814 lavc_venc_context->rc_override= NULL; | |
815 | |
816 if(vf->priv->context) free(vf->priv->context); | |
817 vf->priv->context= NULL; | |
5551 | 818 } |
819 | |
5550 | 820 //===========================================================================// |
821 | |
822 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 823 vf->uninit=uninit; |
5550 | 824 vf->config=config; |
825 vf->control=control; | |
826 vf->query_format=query_format; | |
827 vf->put_image=put_image; | |
828 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
829 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 830 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 831 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
832 /* 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
|
833 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
|
834 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
|
835 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
|
836 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
837 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
|
838 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
|
839 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
|
840 } |
8190 | 841 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "huffyuv")) |
842 { | |
843 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
844 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
845 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
846 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
847 } | |
10131 | 848 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1")) |
849 { | |
850 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
851 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
852 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
853 } | |
10777 | 854 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv2")) |
855 { | |
856 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
857 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
858 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
859 } | |
8587 | 860 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
861 { | |
862 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
863 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
864 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
865 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
866 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
867 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
868 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
869 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
|
870 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
871 } |
5550 | 872 mux_v->bih->biWidth=0; |
873 mux_v->bih->biHeight=0; | |
874 mux_v->bih->biPlanes=1; | |
875 mux_v->bih->biBitCount=24; | |
876 if (!lavc_param_vcodec) | |
877 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
878 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 879 return 0; |
880 } | |
881 | |
882 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
883 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
10699 | 884 else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video")) |
885 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2'); | |
5550 | 886 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) |
887 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
888 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
889 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
890 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
891 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
10302 | 892 else if (!strcasecmp(lavc_param_vcodec, "ljpeg")) |
893 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G'); | |
5550 | 894 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) |
895 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
896 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
897 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 898 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
899 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 900 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
901 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 902 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
903 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 904 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
905 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
10131 | 906 else if (!strcasecmp(lavc_param_vcodec, "asv1")) |
907 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1'); | |
10777 | 908 else if (!strcasecmp(lavc_param_vcodec, "asv2")) |
909 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '2'); | |
10264 | 910 else if (!strcasecmp(lavc_param_vcodec, "ffv1")) |
911 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1'); | |
5550 | 912 else |
913 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
914 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
915 | |
916 if (!avcodec_inited){ | |
917 avcodec_init(); | |
918 avcodec_register_all(); | |
919 avcodec_inited=1; | |
920 } | |
921 | |
922 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
923 if (!vf->priv->codec) { | |
924 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
925 return 0; | |
926 } | |
927 | |
8413 | 928 #if LIBAVCODEC_BUILD >= 4645 |
929 vf->priv->pic = avcodec_alloc_frame(); | |
930 #else | |
8339 | 931 vf->priv->pic = avcodec_alloc_picture(); |
8413 | 932 #endif |
7444 | 933 vf->priv->context = avcodec_alloc_context(); |
934 | |
5550 | 935 return 1; |
936 } | |
937 | |
938 vf_info_t ve_info_lavc = { | |
939 "libavcodec encoder", | |
940 "lavc", | |
6673 | 941 "A'rpi, Alex, Michael", |
5550 | 942 "for internal use by mencoder", |
943 vf_open | |
944 }; | |
945 | |
946 //===========================================================================// | |
947 #endif |