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