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