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