Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 18655:6aa0b26d584b
Add yuv to rgb conversion using a 3D lookup texture
author | reimar |
---|---|
date | Thu, 08 Jun 2006 19:02:56 +0000 |
parents | c1d5652c1654 |
children | 6a08d0dabca8 |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
8237 | 4 #include <math.h> |
17469
40b109500177
Using INT_MAX without including limits.h breaks compilation on MinGW.
diego
parents:
17464
diff
changeset
|
5 #include <limits.h> |
8347 | 6 #include <time.h> |
17909 | 7 #include <assert.h> |
5550 | 8 |
8371
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
9 #if !defined(INFINITY) && defined(HUGE_VAL) |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
10 #define INFINITY HUGE_VAL |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
11 #endif |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
12 |
17012 | 13 #include "config.h" |
5550 | 14 |
17012 | 15 #include "mp_msg.h" |
16 #include "help_mp.h" | |
5550 | 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; |
18569 | 61 static float lavc_param_vqscale = -1; |
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; |
17886
d526e19c56c3
Support libavcodec vrc_strategy=1 (XviD ratecontrol).
corey
parents:
17842
diff
changeset
|
78 static int lavc_param_vrc_strategy = 0; |
5778 | 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; |
15385
6e455aec9cca
vstrict=-1 is now less "dangerous", make it default and remove m/ljpeg encoding colorspace hack
reimar
parents:
15368
diff
changeset
|
83 static int lavc_param_strict= -1; |
6228
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; | |
15988 | 96 static float lavc_param_rc_initial_buffer_occupancy=0.9; |
6944 | 97 static int lavc_param_mpeg_quant=0; |
7152 | 98 static int lavc_param_fdct=0; |
7564 | 99 static int lavc_param_idct=0; |
8237 | 100 static char* lavc_param_aspect = NULL; |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
101 static int lavc_param_autoaspect = 0; |
7490 | 102 static float lavc_param_lumi_masking= 0.0; |
7496 | 103 static float lavc_param_dark_masking= 0.0; |
7490 | 104 static float lavc_param_temporal_cplx_masking= 0.0; |
105 static float lavc_param_spatial_cplx_masking= 0.0; | |
106 static float lavc_param_p_masking= 0.0; | |
15368 | 107 static float lavc_param_border_masking= 0.0; |
7490 | 108 static int lavc_param_normalize_aqp= 0; |
7504 | 109 static int lavc_param_interlaced_dct= 0; |
8190 | 110 static int lavc_param_prediction_method= FF_PRED_LEFT; |
10778 | 111 static int lavc_param_format= IMGFMT_YV12; |
8341 | 112 static int lavc_param_debug= 0; |
8347 | 113 static int lavc_param_psnr= 0; |
8803 | 114 static int lavc_param_me_pre_cmp= 0; |
8587 | 115 static int lavc_param_me_cmp= 0; |
116 static int lavc_param_me_sub_cmp= 0; | |
117 static int lavc_param_mb_cmp= 0; | |
11753 | 118 #ifdef FF_CMP_VSAD |
119 static int lavc_param_ildct_cmp= FF_CMP_VSAD; | |
120 #endif | |
8803 | 121 static int lavc_param_pre_dia_size= 0; |
8587 | 122 static int lavc_param_dia_size= 0; |
123 static int lavc_param_qpel= 0; | |
8684 | 124 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
|
125 static int lavc_param_bit_exact = 0; |
9536 | 126 static int lavc_param_aic= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
127 static int lavc_param_aiv= 0; |
9536 | 128 static int lavc_param_umv= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
129 static int lavc_param_obmc= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
130 static int lavc_param_loop= 0; |
8695 | 131 static int lavc_param_last_pred= 0; |
8709 | 132 static int lavc_param_pre_me= 1; |
8803 | 133 static int lavc_param_me_subpel_quality= 8; |
9508 | 134 static int lavc_param_me_range= 0; |
9645 | 135 #if LIBAVCODEC_BUILD >= 4663 |
136 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS; | |
137 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS; | |
138 #endif | |
10291 | 139 static int lavc_param_coder= 0; |
140 static int lavc_param_context= 0; | |
10779 | 141 static char *lavc_param_intra_matrix = NULL; |
142 static char *lavc_param_inter_matrix = NULL; | |
10963 | 143 static int lavc_param_cbp= 0; |
10974 | 144 static int lavc_param_mv0= 0; |
11363 | 145 static int lavc_param_noise_reduction= 0; |
11910 | 146 static int lavc_param_qns= 0; |
11445 | 147 static int lavc_param_qp_rd= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
148 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
|
149 static int lavc_param_sc_threshold= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
150 static int lavc_param_ss= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
151 static int lavc_param_top= -1; |
11702 | 152 static int lavc_param_alt= 0; |
153 static int lavc_param_ilme= 0; | |
12542 | 154 static int lavc_param_nssew= 8; |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
155 static int lavc_param_closed_gop = 0; |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
156 static int lavc_param_dc_precision = 8; |
12760
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
157 static int lavc_param_threads= 1; |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
158 static int lavc_param_turbo = 0; |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
159 static int lavc_param_brd_scale = 0; |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
160 static int lavc_param_bidir_refine = 0; |
17464 | 161 static int lavc_param_sc_factor = 1; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
162 static int lavc_param_video_global_header= 0; |
18489 | 163 static int lavc_param_mv0_threshold = 256; |
18569 | 164 static int lavc_param_refs = 1; |
18572 | 165 static int lavc_param_b_sensitivity = 40; |
5550 | 166 |
11375 | 167 char *lavc_param_acodec = "mp2"; |
168 int lavc_param_atag = 0; | |
169 int lavc_param_abitrate = 224; | |
17842 | 170 int lavc_param_audio_global_header= 0; |
11375 | 171 |
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
|
172 #include "m_option.h" |
5550 | 173 |
174 #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
|
175 m_option_t lavcopts_conf[]={ |
11375 | 176 {"acodec", &lavc_param_acodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
177 {"abitrate", &lavc_param_abitrate, CONF_TYPE_INT, CONF_RANGE, 1, 1000, NULL}, | |
178 {"atag", &lavc_param_atag, CONF_TYPE_INT, CONF_RANGE, 0, 0xffff, NULL}, | |
5550 | 179 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
180 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
181 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
10498 | 182 {"vhq", &lavc_param_mb_decision, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
183 {"mbd", &lavc_param_mb_decision, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, | |
5550 | 184 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
17261 | 185 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
18569 | 186 {"vqscale", &lavc_param_vqscale, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 255.0, NULL}, |
5550 | 187 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
188 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 189 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
190 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
11032 | 191 {"lmin", &lavc_param_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
192 {"lmax", &lavc_param_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, | |
5550 | 193 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
194 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
195 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 196 {"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
|
197 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
13385
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
198 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL}, |
5778 | 199 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
8413 | 200 {"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
|
201 {"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
|
202 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 203 {"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
|
204 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 205 {"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
|
206 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 207 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 208 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 209 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 210 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
211 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
212 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
213 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
214 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
215 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
216 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
17063
8f1dafb105df
Fixed wrong M_OPT_RANGE in vrc_maxrate/vrc_minrate , default was 0 and range [4,2400000]
reynaldo
parents:
17012
diff
changeset
|
217 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL}, |
8f1dafb105df
Fixed wrong M_OPT_RANGE in vrc_maxrate/vrc_minrate , default was 0 and range [4,2400000]
reynaldo
parents:
17012
diff
changeset
|
218 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL}, |
11245
9a3230a5ef38
100l patch by (Tilmann Bitterberg <transcode at tibit dot org>)
michael
parents:
11195
diff
changeset
|
219 {"vrc_buf_size", &lavc_param_rc_buffer_size, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, |
7088 | 220 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, |
221 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
15781 | 222 {"vrc_init_occupancy", &lavc_param_rc_initial_buffer_occupancy, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, |
7152 | 223 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 224 {"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
|
225 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7490 | 226 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
227 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
228 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
229 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
230 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 231 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 232 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 233 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 234 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
10778 | 235 {"format", &lavc_param_format, CONF_TYPE_IMGFMT, 0, 0, 0, NULL}, |
8341 | 236 #if LIBAVCODEC_BUILD >= 4642 |
237 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, | |
238 #endif | |
8347 | 239 #if LIBAVCODEC_BUILD >= 4643 |
240 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, | |
241 #endif | |
8803 | 242 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 243 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
244 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
245 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
11753 | 246 #ifdef FF_CMP_VSAD |
247 {"ildctcmp", &lavc_param_ildct_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
248 #endif | |
11930
f2a503cb70ba
bit_exact patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
11910
diff
changeset
|
249 {"bit_exact", &lavc_param_bit_exact, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_BITEXACT, NULL}, |
8803 | 250 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 251 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 252 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
8684 | 253 #if LIBAVCODEC_BUILD >= 4648 |
254 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_TRELLIS_QUANT, NULL}, | |
255 #endif | |
8695 | 256 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 257 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 258 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
9508 | 259 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL}, |
9536 | 260 #ifdef CODEC_FLAG_H263P_AIC |
261 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_AIC, NULL}, | |
262 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL}, | |
263 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
264 #ifdef CODEC_FLAG_H263P_AIV |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
265 {"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
|
266 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
267 #ifdef CODEC_FLAG_OBMC |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
268 {"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
|
269 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
270 #ifdef CODEC_FLAG_LOOP_FILTER |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
271 {"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
|
272 #endif |
9645 | 273 #if LIBAVCODEC_BUILD >= 4663 |
274 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
275 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
276 #endif | |
10291 | 277 #if LIBAVCODEC_BUILD >= 4669 |
278 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
279 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
280 #endif | |
10779 | 281 #if LIBAVCODEC_BUILD >= 4675 |
282 {"intra_matrix", &lavc_param_intra_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
283 {"inter_matrix", &lavc_param_inter_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
284 #endif | |
10963 | 285 #if LIBAVCODEC_BUILD >= 4681 |
286 {"cbp", &lavc_param_cbp, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CBP_RD, NULL}, | |
287 #endif | |
10974 | 288 #if LIBAVCODEC_BUILD >= 4683 |
289 {"mv0", &lavc_param_mv0, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_MV0, NULL}, | |
290 #endif | |
11363 | 291 {"nr", &lavc_param_noise_reduction, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
11445 | 292 #ifdef CODEC_FLAG_QP_RD |
293 {"qprd", &lavc_param_qp_rd, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QP_RD, NULL}, | |
294 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
295 #ifdef CODEC_FLAG_H263P_SLICE_STRUCT |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
296 {"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
|
297 #endif |
11702 | 298 #ifdef CODEC_FLAG_ALT_SCAN |
299 {"alt", &lavc_param_alt, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_ALT_SCAN, NULL}, | |
300 #endif | |
301 #ifdef CODEC_FLAG_INTERLACED_ME | |
302 {"ilme", &lavc_param_ilme, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_INTERLACED_ME, NULL}, | |
303 #endif | |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
304 #ifdef CODEC_FLAG_CLOSED_GOP |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
305 {"cgop", &lavc_param_closed_gop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CLOSED_GOP, NULL}, |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
306 #endif |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
307 #if LIBAVCODEC_BUILD >= 4711 |
12765 | 308 {"dc", &lavc_param_dc_precision, CONF_TYPE_INT, CONF_RANGE, 8, 11, NULL}, |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
309 #endif |
15368 | 310 #if LIBAVCODEC_BUILD >= 4741 |
311 {"border_mask", &lavc_param_border_masking, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
312 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
313 {"inter_threshold", &lavc_param_inter_threshold, CONF_TYPE_INT, CONF_RANGE, -1000000, 1000000, NULL}, |
15989
a9eb721d92fc
10l: scene change detecion is deactivated with sc_threshold=1000000000
ranma
parents:
15988
diff
changeset
|
314 {"sc_threshold", &lavc_param_sc_threshold, CONF_TYPE_INT, CONF_RANGE, -1000000000, 1000000000, NULL}, |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
315 {"top", &lavc_param_top, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL}, |
11910 | 316 {"qns", &lavc_param_qns, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
12542 | 317 {"nssew", &lavc_param_nssew, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
12760
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
318 {"threads", &lavc_param_threads, CONF_TYPE_INT, CONF_RANGE, 1, 8, NULL}, |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
319 {"turbo", &lavc_param_turbo, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
320 {"brd_scale", &lavc_param_brd_scale, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
321 {"bidir_refine", &lavc_param_bidir_refine, CONF_TYPE_INT, CONF_RANGE, 0, 4, NULL}, |
17464 | 322 {"sc_factor", &lavc_param_sc_factor, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL}, |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
323 {"vglobal", &lavc_param_video_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
17842 | 324 {"aglobal", &lavc_param_audio_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
18489 | 325 {"mv0_threshold", &lavc_param_mv0_threshold, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
18569 | 326 {"refs", &lavc_param_refs, CONF_TYPE_INT, CONF_RANGE, 1, 16, NULL}, |
18572 | 327 {"b_sensitivity", &lavc_param_b_sensitivity, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL}, |
5550 | 328 {NULL, NULL, 0, 0, 0, 0, NULL} |
329 }; | |
330 #endif | |
331 | |
332 struct vf_priv_s { | |
8585 | 333 muxer_stream_t* mux; |
7444 | 334 AVCodecContext *context; |
8413 | 335 AVFrame *pic; |
5550 | 336 AVCodec *codec; |
7088 | 337 FILE *stats_file; |
5550 | 338 }; |
339 | |
7088 | 340 #define stats_file (vf->priv->stats_file) |
5550 | 341 #define mux_v (vf->priv->mux) |
342 #define lavc_venc_context (vf->priv->context) | |
343 | |
11032 | 344 #if LIBAVCODEC_BUILD < 4684 |
345 #define FF_QP2LAMBDA 1 | |
346 #endif | |
347 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
348 static int encode_frame(struct vf_instance_s* vf, AVFrame *pic, double pts); |
14080 | 349 |
5550 | 350 static int config(struct vf_instance_s* vf, |
351 int width, int height, int d_width, int d_height, | |
352 unsigned int flags, unsigned int outfmt){ | |
7088 | 353 int size, i; |
354 void *p; | |
355 | |
5550 | 356 mux_v->bih->biWidth=width; |
357 mux_v->bih->biHeight=height; | |
358 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
359 | |
17355 | 360 mp_msg(MSGT_MENCODER, MSGL_INFO,"videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", |
5550 | 361 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, |
362 (char *)&mux_v->bih->biCompression); | |
363 | |
7444 | 364 lavc_venc_context->width = width; |
365 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
|
366 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 367 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
|
368 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 369 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 370 else |
7444 | 371 lavc_venc_context->bit_rate = 800000; /* default */ |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
372 |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
373 //mux_v->wf->nAvgBytesPerSec= lavc_venc_context->bit_rate/8; |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
374 |
7444 | 375 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; |
15307 | 376 #if LIBAVCODEC_BUILD >= 4754 |
377 lavc_venc_context->time_base= (AVRational){mux_v->h.dwScale, mux_v->h.dwRate}; | |
378 #else | |
9571 | 379 #if LIBAVCODEC_BUILD >= 4662 |
380 lavc_venc_context->frame_rate = mux_v->h.dwRate; | |
381 lavc_venc_context->frame_rate_base = mux_v->h.dwScale; | |
382 #else | |
383 lavc_venc_context->frame_rate = mux_v->h.dwRate*FRAME_RATE_BASE/mux_v->h.dwScale; | |
384 #endif | |
15307 | 385 #endif |
7444 | 386 lavc_venc_context->qmin= lavc_param_vqmin; |
387 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 388 #if LIBAVCODEC_BUILD >= 4646 |
389 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; | |
390 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
391 #endif | |
11032 | 392 #if LIBAVCODEC_BUILD >= 4684 |
393 lavc_venc_context->lmin= (int)(FF_QP2LAMBDA * lavc_param_lmin + 0.5); | |
394 lavc_venc_context->lmax= (int)(FF_QP2LAMBDA * lavc_param_lmax + 0.5); | |
395 #endif | |
7444 | 396 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
397 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
398 lavc_venc_context->qblur= lavc_param_vqblur; | |
399 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
400 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
401 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
402 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
14786 | 403 lavc_venc_context->b_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vb_qoffset + 0.5); |
7444 | 404 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; |
405 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
406 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
407 if(lavc_param_packet_size )lavc_venc_context->rtp_mode=1; | |
408 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
409 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
14786 | 410 lavc_venc_context->i_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vi_qoffset + 0.5); |
7444 | 411 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; |
412 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
413 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
414 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
415 |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
416 mux_v->max_rate= |
7444 | 417 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; |
418 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
419 |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
420 mux_v->vbv_size= |
7444 | 421 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
422 |
15781 | 423 lavc_venc_context->rc_initial_buffer_occupancy= |
424 lavc_venc_context->rc_buffer_size * | |
425 lavc_param_rc_initial_buffer_occupancy; | |
7444 | 426 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; |
427 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 428 #if LIBAVCODEC_BUILD >= 4642 |
429 lavc_venc_context->debug= lavc_param_debug; | |
430 #endif | |
8695 | 431 #if LIBAVCODEC_BUILD >= 4649 |
432 lavc_venc_context->last_predictor_count= lavc_param_last_pred; | |
433 #endif | |
8709 | 434 #if LIBAVCODEC_BUILD >= 4650 |
435 lavc_venc_context->pre_me= lavc_param_pre_me; | |
436 #endif | |
8803 | 437 #if LIBAVCODEC_BUILD >= 4651 |
438 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; | |
439 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
440 #endif | |
441 #if LIBAVCODEC_BUILD >= 4652 | |
442 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
443 #endif | |
9508 | 444 #if LIBAVCODEC_BUILD >= 4659 |
445 lavc_venc_context->me_range= lavc_param_me_range; | |
446 #endif | |
9645 | 447 #if LIBAVCODEC_BUILD >= 4663 |
448 lavc_venc_context->intra_quant_bias= lavc_param_ibias; | |
449 lavc_venc_context->inter_quant_bias= lavc_param_pbias; | |
450 #endif | |
10291 | 451 #if LIBAVCODEC_BUILD >= 4669 |
452 lavc_venc_context->coder_type= lavc_param_coder; | |
453 lavc_venc_context->context_model= lavc_param_context; | |
454 #endif | |
11699
9165fbc7d89d
scenechange_threshold command line option patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
11672
diff
changeset
|
455 #if LIBAVCODEC_BUILD >= 4680 |
9165fbc7d89d
scenechange_threshold command line option patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
11672
diff
changeset
|
456 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
|
457 #endif |
11363 | 458 #if LIBAVCODEC_BUILD >= 4690 |
459 lavc_venc_context->noise_reduction= lavc_param_noise_reduction; | |
460 #endif | |
11910 | 461 #if LIBAVCODEC_BUILD >= 4700 |
462 lavc_venc_context->quantizer_noise_shaping= lavc_param_qns; | |
463 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
464 #if LIBAVCODEC_BUILD >= 4693 |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
465 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
|
466 #endif |
12542 | 467 #if LIBAVCODEC_BUILD >= 4716 |
468 lavc_venc_context->nsse_weight= lavc_param_nssew; | |
469 #endif | |
10779 | 470 #if LIBAVCODEC_BUILD >= 4675 |
471 if (lavc_param_intra_matrix) | |
472 { | |
473 char *tmp; | |
474 | |
475 lavc_venc_context->intra_matrix = | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
476 av_malloc(sizeof(*lavc_venc_context->intra_matrix)*64); |
10779 | 477 |
478 i = 0; | |
479 while ((tmp = strsep(&lavc_param_intra_matrix, ",")) && (i < 64)) | |
480 { | |
481 if (!tmp || (tmp && !strlen(tmp))) | |
482 break; | |
483 lavc_venc_context->intra_matrix[i++] = atoi(tmp); | |
484 } | |
485 | |
486 if (i != 64) | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
487 av_freep(&lavc_venc_context->intra_matrix); |
10779 | 488 else |
489 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified intra matrix\n"); | |
490 } | |
491 if (lavc_param_inter_matrix) | |
492 { | |
493 char *tmp; | |
494 | |
495 lavc_venc_context->inter_matrix = | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
496 av_malloc(sizeof(*lavc_venc_context->inter_matrix)*64); |
10779 | 497 |
498 i = 0; | |
499 while ((tmp = strsep(&lavc_param_inter_matrix, ",")) && (i < 64)) | |
500 { | |
501 if (!tmp || (tmp && !strlen(tmp))) | |
502 break; | |
503 lavc_venc_context->inter_matrix[i++] = atoi(tmp); | |
504 } | |
505 | |
506 if (i != 64) | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
507 av_freep(&lavc_venc_context->inter_matrix); |
10779 | 508 else |
509 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified inter matrix\n"); | |
510 } | |
511 #endif | |
9508 | 512 |
7088 | 513 p= lavc_param_rc_override_string; |
514 for(i=0; p; i++){ | |
515 int start, end, q; | |
516 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
517 if(e!=3){ | |
518 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
519 return 0; | |
520 } | |
7444 | 521 lavc_venc_context->rc_override= |
522 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); | |
523 lavc_venc_context->rc_override[i].start_frame= start; | |
524 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 525 if(q>0){ |
7444 | 526 lavc_venc_context->rc_override[i].qscale= q; |
527 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 528 } |
529 else{ | |
7444 | 530 lavc_venc_context->rc_override[i].qscale= 0; |
531 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 532 } |
533 p= strchr(p, '/'); | |
534 if(p) p++; | |
535 } | |
7444 | 536 lavc_venc_context->rc_override_count=i; |
7088 | 537 |
7444 | 538 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 539 |
7444 | 540 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 541 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 542 |
7490 | 543 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
544 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
545 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
546 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 547 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
15368 | 548 #if LIBAVCODEC_BUILD >= 4741 |
549 lavc_venc_context->border_masking = lavc_param_border_masking; | |
550 #endif | |
7490 | 551 |
8237 | 552 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
553 { |
8237 | 554 int par_width, par_height, e; |
555 float ratio=0; | |
556 | |
557 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); | |
558 if(e==2){ | |
559 if(par_height) | |
560 ratio= (float)par_width / (float)par_height; | |
561 }else{ | |
562 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
|
563 } |
8237 | 564 |
565 if (e && ratio > 0.1 && ratio < 10.0) { | |
11194 | 566 #if LIBAVCODEC_BUILD >= 4687 |
11195
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
567 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
|
568 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
|
569 lavc_venc_context->sample_aspect_ratio.num, |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
570 lavc_venc_context->sample_aspect_ratio.den); |
11194 | 571 #else |
8237 | 572 lavc_venc_context->aspect_ratio= ratio; |
11194 | 573 #endif |
12061 | 574 mux_v->aspect = ratio; |
8237 | 575 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); |
576 } else { | |
577 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
578 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
579 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
580 } |
13669
8f12e583f50b
10l...autoaspect was always applied to muxer aspect if using newer libavcodec...hope this is ok
rfelker
parents:
13406
diff
changeset
|
581 else if (lavc_param_autoaspect) { |
11194 | 582 #if LIBAVCODEC_BUILD >= 4687 |
11369 | 583 lavc_venc_context->sample_aspect_ratio = av_d2q((float)d_width/d_height*height / width, 255); |
11194 | 584 #else |
12061 | 585 lavc_venc_context->aspect_ratio = |
11194 | 586 #endif |
12061 | 587 mux_v->aspect = (float)d_width/d_height; |
13669
8f12e583f50b
10l...autoaspect was always applied to muxer aspect if using newer libavcodec...hope this is ok
rfelker
parents:
13406
diff
changeset
|
588 } |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
589 |
5550 | 590 /* keyframe interval */ |
591 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 592 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 593 else |
7444 | 594 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 595 |
10498 | 596 lavc_venc_context->flags = 0; |
597 if (lavc_param_mb_decision) | |
5550 | 598 { |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
599 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_HighQualityEncodingSelected); |
10498 | 600 #if LIBAVCODEC_BUILD < 4673 |
601 lavc_venc_context->flags = CODEC_FLAG_HQ; | |
602 #else | |
603 lavc_venc_context->mb_decision= lavc_param_mb_decision; | |
604 #endif | |
5550 | 605 } |
606 | |
8587 | 607 #if LIBAVCODEC_BUILD >= 4647 |
608 lavc_venc_context->me_cmp= lavc_param_me_cmp; | |
609 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
610 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
11753 | 611 #ifdef FF_CMP_VSAD |
612 lavc_venc_context->ildct_cmp= lavc_param_ildct_cmp; | |
613 #endif | |
8587 | 614 lavc_venc_context->dia_size= lavc_param_dia_size; |
615 lavc_venc_context->flags|= lavc_param_qpel; | |
616 #endif | |
8684 | 617 #if LIBAVCODEC_BUILD >= 4648 |
618 lavc_venc_context->flags|= lavc_param_trell; | |
619 #endif | |
11930
f2a503cb70ba
bit_exact patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
11910
diff
changeset
|
620 lavc_venc_context->flags|= lavc_param_bit_exact; |
9536 | 621 lavc_venc_context->flags|= lavc_param_aic; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
622 lavc_venc_context->flags|= lavc_param_aiv; |
9536 | 623 lavc_venc_context->flags|= lavc_param_umv; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
624 lavc_venc_context->flags|= lavc_param_obmc; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
625 lavc_venc_context->flags|= lavc_param_loop; |
7444 | 626 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
627 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
10963 | 628 lavc_venc_context->flags|= lavc_param_cbp; |
10974 | 629 lavc_venc_context->flags|= lavc_param_mv0; |
11445 | 630 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
|
631 lavc_venc_context->flags|= lavc_param_ss; |
11702 | 632 lavc_venc_context->flags|= lavc_param_alt; |
633 lavc_venc_context->flags|= lavc_param_ilme; | |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
634 #ifdef CODEC_FLAG_CLOSED_GOP |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
635 lavc_venc_context->flags|= lavc_param_closed_gop; |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
636 #endif |
7444 | 637 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; |
6461 | 638 |
7490 | 639 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 640 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 641 #if LIBAVCODEC_BUILD >= 4643 |
642 lavc_venc_context->flags|= lavc_param_psnr; | |
643 #endif | |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
644 #if LIBAVCODEC_BUILD >= 4711 |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
645 lavc_venc_context->intra_dc_precision = lavc_param_dc_precision - 8; |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
646 #endif |
8190 | 647 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
648 lavc_venc_context->brd_scale = lavc_param_brd_scale; |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
649 lavc_venc_context->bidir_refine = lavc_param_bidir_refine; |
17464 | 650 lavc_venc_context->scenechange_factor = lavc_param_sc_factor; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
651 if((lavc_param_video_global_header&1) |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
652 /*|| (video_global_header==0 && (oc->oformat->flags & AVFMT_GLOBALHEADER))*/){ |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
653 lavc_venc_context->flags |= CODEC_FLAG_GLOBAL_HEADER; |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
654 } |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
655 if(lavc_param_video_global_header&2){ |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
656 lavc_venc_context->flags2 |= CODEC_FLAG2_LOCAL_HEADER; |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
657 } |
18489 | 658 lavc_venc_context->mv0_threshold = lavc_param_mv0_threshold; |
18569 | 659 lavc_venc_context->refs = lavc_param_refs; |
18572 | 660 lavc_venc_context->b_sensitivity = lavc_param_b_sensitivity; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
661 |
10778 | 662 switch(lavc_param_format) |
663 { | |
664 case IMGFMT_YV12: | |
665 lavc_venc_context->pix_fmt = PIX_FMT_YUV420P; | |
666 break; | |
667 case IMGFMT_422P: | |
668 lavc_venc_context->pix_fmt = PIX_FMT_YUV422P; | |
669 break; | |
670 case IMGFMT_444P: | |
671 lavc_venc_context->pix_fmt = PIX_FMT_YUV444P; | |
672 break; | |
673 case IMGFMT_411P: | |
674 lavc_venc_context->pix_fmt = PIX_FMT_YUV411P; | |
675 break; | |
676 case IMGFMT_YVU9: | |
677 lavc_venc_context->pix_fmt = PIX_FMT_YUV410P; | |
678 break; | |
679 case IMGFMT_BGR32: | |
680 lavc_venc_context->pix_fmt = PIX_FMT_RGBA32; | |
681 break; | |
682 default: | |
683 mp_msg(MSGT_MENCODER,MSGL_ERR,"%s is not a supported format\n", vo_format_name(lavc_param_format)); | |
684 return 0; | |
8190 | 685 } |
10302 | 686 |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
687 if(!stats_file) { |
5778 | 688 /* lavc internal 2pass bitrate control */ |
6673 | 689 switch(lavc_param_vpass){ |
7088 | 690 case 2: |
13385
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
691 case 3: |
7444 | 692 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
|
693 stats_file= fopen(passtmpfile, "rb"); |
7088 | 694 if(stats_file==NULL){ |
695 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
696 return 0; | |
697 } | |
698 fseek(stats_file, 0, SEEK_END); | |
699 size= ftell(stats_file); | |
700 fseek(stats_file, 0, SEEK_SET); | |
701 | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
702 lavc_venc_context->stats_in= av_malloc(size + 1); |
7444 | 703 lavc_venc_context->stats_in[size]=0; |
7088 | 704 |
7444 | 705 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 706 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
707 return 0; | |
7089 | 708 } |
13385
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
709 if(lavc_param_vpass == 2) |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
710 break; |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
711 else |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
712 fclose(stats_file); |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
713 /* fall through */ |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
714 case 1: |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
715 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
716 stats_file= fopen(passtmpfile, "wb"); |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
717 if(stats_file==NULL){ |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
718 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
719 return 0; |
e488b3c628db
support generating divx2pass.log on 2nd pass patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
13074
diff
changeset
|
720 } |
13406
2f69854dfbe4
10l: Make turbo mode compatible with 3-pass encoding
gpoirier
parents:
13386
diff
changeset
|
721 if(lavc_param_turbo && (lavc_param_vpass == 1)) { |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
722 /* uses SAD comparison functions instead of other hungrier */ |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
723 lavc_venc_context->me_pre_cmp = 0; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
724 lavc_venc_context->me_cmp = 0; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
725 lavc_venc_context->me_sub_cmp = 0; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
726 lavc_venc_context->mb_cmp = 2; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
727 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
728 /* Disables diamond motion estimation */ |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
729 lavc_venc_context->pre_dia_size = 0; |
14892
fb3a1db63672
35% faster turbo mode with 0.01dB drop. Based Loren Merritt's suggestions.
gpoirier
parents:
14878
diff
changeset
|
730 lavc_venc_context->dia_size = 1; |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
731 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
732 lavc_venc_context->quantizer_noise_shaping = 0; // qns=0 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
733 lavc_venc_context->noise_reduction = 0; // nr=0 |
14892
fb3a1db63672
35% faster turbo mode with 0.01dB drop. Based Loren Merritt's suggestions.
gpoirier
parents:
14878
diff
changeset
|
734 lavc_venc_context->mb_decision = 0; // mbd=0 ("realtime" encoding) |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
735 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
736 lavc_venc_context->flags &= ~CODEC_FLAG_QPEL; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
737 lavc_venc_context->flags &= ~CODEC_FLAG_4MV; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
738 lavc_venc_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
739 lavc_venc_context->flags &= ~CODEC_FLAG_CBP_RD; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
740 lavc_venc_context->flags &= ~CODEC_FLAG_QP_RD; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
741 lavc_venc_context->flags &= ~CODEC_FLAG_MV0; |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
742 } |
7088 | 743 break; |
6673 | 744 } |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
745 } |
5778 | 746 |
7444 | 747 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 748 |
749 /* fixed qscale :p */ | |
18569 | 750 if (lavc_param_vqscale >= 0.0) |
5550 | 751 { |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
752 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_UsingConstantQscale, lavc_param_vqscale); |
7444 | 753 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
10131 | 754 #if LIBAVCODEC_BUILD >= 4668 |
11032 | 755 lavc_venc_context->global_quality= |
10131 | 756 #endif |
11032 | 757 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * lavc_param_vqscale + 0.5); |
5550 | 758 } |
12760
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
759 |
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
760 #if LIBAVCODEC_BUILD >= 4716 |
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
761 if(lavc_param_threads > 1) |
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
762 avcodec_thread_init(lavc_venc_context, lavc_param_threads); |
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
763 #endif |
5550 | 764 |
7444 | 765 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 766 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
767 return 0; | |
768 } | |
769 | |
7444 | 770 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 771 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
772 return 0; | |
773 } | |
7088 | 774 |
775 /* free second pass buffer, its not needed anymore */ | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
776 av_freep(&lavc_venc_context->stats_in); |
8190 | 777 if(lavc_venc_context->bits_per_sample) |
778 mux_v->bih->biBitCount= lavc_venc_context->bits_per_sample; | |
779 if(lavc_venc_context->extradata_size){ | |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
780 mux_v->bih= realloc(mux_v->bih, sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size); |
8190 | 781 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); |
782 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
783 } | |
7088 | 784 |
17659 | 785 mux_v->decoder_delay = lavc_venc_context->max_b_frames ? 1 : 0; |
786 | |
5550 | 787 return 1; |
788 } | |
789 | |
790 static int control(struct vf_instance_s* vf, int request, void* data){ | |
791 | |
14080 | 792 switch(request){ |
793 case VFCTRL_FLUSH_FRAMES: | |
794 if(vf->priv->codec->capabilities & CODEC_CAP_DELAY) | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
795 while(encode_frame(vf, NULL, MP_NOPTS_VALUE) > 0); |
14080 | 796 return CONTROL_TRUE; |
797 default: | |
798 return CONTROL_UNKNOWN; | |
799 } | |
5550 | 800 } |
801 | |
802 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
803 switch(fmt){ | |
804 case IMGFMT_YV12: | |
805 case IMGFMT_IYUV: | |
806 case IMGFMT_I420: | |
10778 | 807 if(lavc_param_format == IMGFMT_YV12) |
8190 | 808 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
809 break; | |
10293 | 810 case IMGFMT_411P: |
10778 | 811 if(lavc_param_format == IMGFMT_411P) |
10293 | 812 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
813 break; | |
8190 | 814 case IMGFMT_422P: |
10778 | 815 if(lavc_param_format == IMGFMT_422P) |
8190 | 816 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
817 break; | |
10293 | 818 case IMGFMT_444P: |
10778 | 819 if(lavc_param_format == IMGFMT_444P) |
10293 | 820 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
821 break; | |
822 case IMGFMT_YVU9: | |
10778 | 823 if(lavc_param_format == IMGFMT_YVU9) |
10293 | 824 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
825 break; | |
10302 | 826 case IMGFMT_BGR32: |
10778 | 827 if(lavc_param_format == IMGFMT_BGR32) |
10302 | 828 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
829 break; | |
5550 | 830 } |
831 return 0; | |
832 } | |
833 | |
8347 | 834 static double psnr(double d){ |
835 if(d==0) return INFINITY; | |
836 return -10.0*log(d)/log(10); | |
837 } | |
838 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
839 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
8413 | 840 AVFrame *pic= vf->priv->pic; |
5550 | 841 |
8339 | 842 pic->data[0]=mpi->planes[0]; |
843 pic->data[1]=mpi->planes[1]; | |
844 pic->data[2]=mpi->planes[2]; | |
845 pic->linesize[0]=mpi->stride[0]; | |
846 pic->linesize[1]=mpi->stride[1]; | |
847 pic->linesize[2]=mpi->stride[2]; | |
5550 | 848 |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
849 #if LIBAVCODEC_BUILD >= 4697 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
850 if(lavc_param_interlaced_dct){ |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
851 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
|
852 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
|
853 else |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
854 pic->top_field_first= 1; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
855 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
856 if(lavc_param_top!=-1) |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
857 pic->top_field_first= lavc_param_top; |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
858 } |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
859 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
860 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
861 return (encode_frame(vf, pic, pts) >= 0); |
14080 | 862 } |
863 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
864 static int encode_frame(struct vf_instance_s* vf, AVFrame *pic, double pts){ |
14080 | 865 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
866 int out_size; | |
17907 | 867 double dts; |
14080 | 868 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
869 if(pic){ |
17909 | 870 #if 0 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
871 pic->opaque= malloc(sizeof(pts)); |
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
872 memcpy(pic->opaque, &pts, sizeof(pts)); |
17909 | 873 #else |
874 if(pts != MP_NOPTS_VALUE) | |
875 pic->pts= floor(pts / av_q2d(lavc_venc_context->time_base) + 0.5); | |
876 else | |
877 pic->pts= MP_NOPTS_VALUE; | |
878 #endif | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
879 } |
7444 | 880 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 881 pic); |
5550 | 882 |
17907 | 883 if(pts != MP_NOPTS_VALUE) |
884 dts= pts - lavc_venc_context->delay * av_q2d(lavc_venc_context->time_base); | |
885 else | |
886 dts= MP_NOPTS_VALUE; | |
17909 | 887 #if 0 |
17907 | 888 pts= lavc_venc_context->coded_frame->opaque ? |
889 *(double*)lavc_venc_context->coded_frame->opaque | |
890 : MP_NOPTS_VALUE; | |
17909 | 891 #else |
892 if(lavc_venc_context->coded_frame->pts != MP_NOPTS_VALUE) | |
893 pts= lavc_venc_context->coded_frame->pts * av_q2d(lavc_venc_context->time_base); | |
894 else | |
895 pts= MP_NOPTS_VALUE; | |
896 assert(MP_NOPTS_VALUE == AV_NOPTS_VALUE); | |
897 #endif | |
898 //fprintf(stderr, "ve_lavc %f/%f\n", dts, pts); | |
17659 | 899 if(out_size == 0) { |
900 ++mux_v->encoder_delay; | |
14080 | 901 return 0; |
17659 | 902 } |
9536 | 903 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
904 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0, |
17907 | 905 dts, pts); |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
906 free(lavc_venc_context->coded_frame->opaque); |
17907 | 907 lavc_venc_context->coded_frame->opaque= NULL; |
8413 | 908 |
8347 | 909 #if LIBAVCODEC_BUILD >= 4643 |
910 /* store psnr / pict size / type / qscale */ | |
911 if(lavc_param_psnr){ | |
912 static FILE *fvstats=NULL; | |
913 char filename[20]; | |
914 static long long int all_len=0; | |
915 static int frame_number=0; | |
916 static double all_frametime=0.0; | |
8413 | 917 AVFrame *pic= lavc_venc_context->coded_frame; |
8347 | 918 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
|
919 double quality=0.0; |
9868 | 920 int8_t *q; |
8347 | 921 |
922 if(!fvstats) { | |
923 time_t today2; | |
924 struct tm *today; | |
925 today2 = time(NULL); | |
926 today = localtime(&today2); | |
927 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
928 today->tm_min, today->tm_sec); | |
929 fvstats = fopen(filename,"w"); | |
930 if(!fvstats) { | |
931 perror("fopen"); | |
932 lavc_param_psnr=0; // disable block | |
12983 | 933 mp_msg(MSGT_MENCODER,MSGL_ERR,"Can't open %s for writing. Check its permissions.\n",filename); |
14080 | 934 return -1; |
8347 | 935 /*exit(1);*/ |
936 } | |
937 } | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
938 |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
939 // average MB quantizer |
9868 | 940 q = lavc_venc_context->coded_frame->qscale_table; |
941 if(q) { | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
942 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
943 int w = (lavc_venc_context->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
944 int h = (lavc_venc_context->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
945 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
946 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
947 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
948 q += lavc_venc_context->coded_frame->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
949 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
950 quality /= w * h; |
9868 | 951 } else |
11032 | 952 quality = lavc_venc_context->coded_frame->quality / (float)FF_QP2LAMBDA; |
8347 | 953 |
954 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 955 lavc_venc_context->coded_frame->coded_picture_number, |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
956 quality, |
8347 | 957 out_size, |
8413 | 958 psnr(lavc_venc_context->coded_frame->error[0]/f), |
959 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
960 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
961 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)), | |
962 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 963 ); |
964 } | |
965 #endif | |
7088 | 966 /* store stats if there are any */ |
7444 | 967 if(lavc_venc_context->stats_out && stats_file) |
968 fprintf(stats_file, "%s", lavc_venc_context->stats_out); | |
14080 | 969 return out_size; |
5550 | 970 } |
971 | |
5551 | 972 static void uninit(struct vf_instance_s* vf){ |
8347 | 973 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
974 | |
975 #if LIBAVCODEC_BUILD >= 4643 | |
976 if(lavc_param_psnr){ | |
977 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
8413 | 978 f*= lavc_venc_context->coded_frame->coded_picture_number; |
8347 | 979 |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
980 mp_msg(MSGT_MENCODER, MSGL_INFO, "PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", |
8347 | 981 psnr(lavc_venc_context->error[0]/f), |
982 psnr(lavc_venc_context->error[1]*4/f), | |
983 psnr(lavc_venc_context->error[2]*4/f), | |
984 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
985 ); | |
986 } | |
987 #endif | |
988 | |
10779 | 989 #if LIBAVCODEC_BUILD >= 4675 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
990 av_freep(&lavc_venc_context->intra_matrix); |
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
991 av_freep(&lavc_venc_context->inter_matrix); |
10779 | 992 #endif |
993 | |
7444 | 994 avcodec_close(lavc_venc_context); |
7088 | 995 |
996 if(stats_file) fclose(stats_file); | |
7089 | 997 |
7088 | 998 /* free rc_override */ |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
999 av_freep(&lavc_venc_context->rc_override); |
7444 | 1000 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
1001 av_freep(&vf->priv->context); |
5551 | 1002 } |
1003 | |
5550 | 1004 //===========================================================================// |
1005 | |
1006 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 1007 vf->uninit=uninit; |
5550 | 1008 vf->config=config; |
14878 | 1009 vf->default_caps=VFCAP_CONSTANT; |
5550 | 1010 vf->control=control; |
1011 vf->query_format=query_format; | |
1012 vf->put_image=put_image; | |
1013 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
1014 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 1015 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 1016 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1017 /* 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
|
1018 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
|
1019 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
|
1020 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
|
1021 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1022 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
|
1023 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
|
1024 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
|
1025 } |
14057 | 1026 else if (lavc_param_vcodec && (!strcasecmp(lavc_param_vcodec, "huffyuv") |
1027 || !strcasecmp(lavc_param_vcodec, "ffvhuff"))) | |
8190 | 1028 { |
1029 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
1030 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
1031 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
1032 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
1033 } | |
10131 | 1034 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1")) |
1035 { | |
1036 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
1037 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
1038 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
1039 } | |
10777 | 1040 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv2")) |
1041 { | |
1042 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
1043 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
1044 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
1045 } | |
8587 | 1046 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
1047 { | |
1048 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
1049 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
1050 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
1051 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1052 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1053 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1054 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1055 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
|
1056 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1057 } |
5550 | 1058 mux_v->bih->biWidth=0; |
1059 mux_v->bih->biHeight=0; | |
1060 mux_v->bih->biPlanes=1; | |
1061 mux_v->bih->biBitCount=24; | |
1062 if (!lavc_param_vcodec) | |
1063 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
1064 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 1065 return 0; |
1066 } | |
1067 | |
1068 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
1069 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
10699 | 1070 else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video")) |
1071 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2'); | |
5550 | 1072 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) |
1073 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
1074 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
1075 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
1076 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
1077 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
10302 | 1078 else if (!strcasecmp(lavc_param_vcodec, "ljpeg")) |
1079 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G'); | |
5550 | 1080 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) |
14766 | 1081 mux_v->bih->biCompression = mmioFOURCC('F', 'M', 'P', '4'); |
5550 | 1082 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) |
1083 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 1084 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
1085 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 1086 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
1087 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 1088 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
1089 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 1090 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
1091 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
14057 | 1092 else if (!strcasecmp(lavc_param_vcodec, "ffvhuff")) |
1093 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', 'H'); | |
10131 | 1094 else if (!strcasecmp(lavc_param_vcodec, "asv1")) |
1095 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1'); | |
10777 | 1096 else if (!strcasecmp(lavc_param_vcodec, "asv2")) |
1097 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '2'); | |
10264 | 1098 else if (!strcasecmp(lavc_param_vcodec, "ffv1")) |
1099 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1'); | |
13074 | 1100 else if (!strcasecmp(lavc_param_vcodec, "snow")) |
1101 mux_v->bih->biCompression = mmioFOURCC('S', 'N', 'O', 'W'); | |
5550 | 1102 else |
1103 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
1104 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
1105 | |
1106 if (!avcodec_inited){ | |
1107 avcodec_init(); | |
1108 avcodec_register_all(); | |
1109 avcodec_inited=1; | |
1110 } | |
1111 | |
1112 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
1113 if (!vf->priv->codec) { | |
1114 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
1115 return 0; | |
1116 } | |
1117 | |
8413 | 1118 #if LIBAVCODEC_BUILD >= 4645 |
1119 vf->priv->pic = avcodec_alloc_frame(); | |
1120 #else | |
8339 | 1121 vf->priv->pic = avcodec_alloc_picture(); |
8413 | 1122 #endif |
7444 | 1123 vf->priv->context = avcodec_alloc_context(); |
1124 | |
5550 | 1125 return 1; |
1126 } | |
1127 | |
1128 vf_info_t ve_info_lavc = { | |
1129 "libavcodec encoder", | |
1130 "lavc", | |
6673 | 1131 "A'rpi, Alex, Michael", |
5550 | 1132 "for internal use by mencoder", |
1133 vf_open | |
1134 }; | |
1135 | |
1136 //===========================================================================// |