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