Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 30659:2b93fb595b09
Add declaration for exp_EH_prolog_dummy().
This avoids a warning with -Wmissing-prototypes.
author | diego |
---|---|
date | Mon, 22 Feb 2010 13:55:00 +0000 |
parents | a972c1a4a012 |
children | 24b8498ff786 |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
30313
diff
changeset
|
18 |
5550 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <string.h> | |
8237 | 22 #include <math.h> |
17469
40b109500177
Using INT_MAX without including limits.h breaks compilation on MinGW.
diego
parents:
17464
diff
changeset
|
23 #include <limits.h> |
8347 | 24 #include <time.h> |
17909 | 25 #include <assert.h> |
5550 | 26 |
8371
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
27 #if !defined(INFINITY) && defined(HUGE_VAL) |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
28 #define INFINITY HUGE_VAL |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
29 #endif |
345a539683da
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
8347
diff
changeset
|
30 |
17012 | 31 #include "config.h" |
5550 | 32 |
17012 | 33 #include "mp_msg.h" |
34 #include "help_mp.h" | |
26693 | 35 #include "av_opts.h" |
30313
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
30312
diff
changeset
|
36 #include "osdep/strsep.h" |
5550 | 37 |
38 #include "codec-cfg.h" | |
22600
3c2b4a866c6a
Add explicit location for headers from the stream/ directory.
diego
parents:
22152
diff
changeset
|
39 #include "stream/stream.h" |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22600
diff
changeset
|
40 #include "libmpdemux/demuxer.h" |
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22600
diff
changeset
|
41 #include "libmpdemux/stheader.h" |
5550 | 42 |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22600
diff
changeset
|
43 #include "libmpdemux/muxer.h" |
5550 | 44 |
5607 | 45 #include "img_format.h" |
30312
54e9eb2664a7
Reuse the fmt-conversion code instead of duplicating the functionality.
reimar
parents:
29793
diff
changeset
|
46 #include "fmt-conversion.h" |
5607 | 47 #include "mp_image.h" |
5550 | 48 #include "vf.h" |
49 | |
7090
43d7b60bd7f4
fixing compilation without divx4 patch by (Rmi Guyomarch <rguyom at pobox dot com>)
michael
parents:
7089
diff
changeset
|
50 extern char* passtmpfile; |
5550 | 51 |
52 //===========================================================================// | |
53 | |
54 #include "libavcodec/avcodec.h" | |
55 | |
25962 | 56 extern int avcodec_initialized; |
5550 | 57 |
58 /* video options */ | |
7555 | 59 static char *lavc_param_vcodec = "mpeg4"; |
5550 | 60 static int lavc_param_vbitrate = -1; |
7088 | 61 static int lavc_param_vrate_tolerance = 1000*8; |
10498 | 62 static int lavc_param_mb_decision = 0; /* default is realtime encoding */ |
5550 | 63 static int lavc_param_v4mv = 0; |
5556 | 64 static int lavc_param_vme = 4; |
18569 | 65 static float lavc_param_vqscale = -1; |
7088 | 66 static int lavc_param_vqmin = 2; |
67 static int lavc_param_vqmax = 31; | |
8492 | 68 static int lavc_param_mb_qmin = 2; |
69 static int lavc_param_mb_qmax = 31; | |
11032 | 70 static float lavc_param_lmin = 2; |
71 static float lavc_param_lmax = 31; | |
20756 | 72 static float lavc_param_mb_lmin = 2; |
73 static float lavc_param_mb_lmax = 31; | |
5550 | 74 static int lavc_param_vqdiff = 3; |
75 static float lavc_param_vqcompress = 0.5; | |
76 static float lavc_param_vqblur = 0.5; | |
7088 | 77 static float lavc_param_vb_qfactor = 1.25; |
78 static float lavc_param_vb_qoffset = 1.25; | |
79 static float lavc_param_vi_qfactor = 0.8; | |
80 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
|
81 static int lavc_param_vmax_b_frames = 0; |
5550 | 82 static int lavc_param_keyint = -1; |
5778 | 83 static int lavc_param_vpass = 0; |
17886
d526e19c56c3
Support libavcodec vrc_strategy=1 (XviD ratecontrol).
corey
parents:
17842
diff
changeset
|
84 static int lavc_param_vrc_strategy = 0; |
5778 | 85 static int lavc_param_vb_strategy = 0; |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
86 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
87 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
88 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
|
89 static int lavc_param_strict= -1; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
90 static int lavc_param_data_partitioning= 0; |
26395 | 91 static int lavc_param_gray=0; |
7088 | 92 static float lavc_param_rc_qsquish=1.0; |
93 static float lavc_param_rc_qmod_amp=0; | |
94 static int lavc_param_rc_qmod_freq=0; | |
95 static char *lavc_param_rc_override_string=NULL; | |
96 static char *lavc_param_rc_eq="tex^qComp"; | |
97 static int lavc_param_rc_buffer_size=0; | |
98 static float lavc_param_rc_buffer_aggressivity=1.0; | |
99 static int lavc_param_rc_max_rate=0; | |
100 static int lavc_param_rc_min_rate=0; | |
101 static float lavc_param_rc_initial_cplx=0; | |
15988 | 102 static float lavc_param_rc_initial_buffer_occupancy=0.9; |
6944 | 103 static int lavc_param_mpeg_quant=0; |
7152 | 104 static int lavc_param_fdct=0; |
7564 | 105 static int lavc_param_idct=0; |
8237 | 106 static char* lavc_param_aspect = NULL; |
9993
6e7f3643bee6
optional automatic aspect encoding based on d_width and d_height
rfelker
parents:
9868
diff
changeset
|
107 static int lavc_param_autoaspect = 0; |
7490 | 108 static float lavc_param_lumi_masking= 0.0; |
7496 | 109 static float lavc_param_dark_masking= 0.0; |
7490 | 110 static float lavc_param_temporal_cplx_masking= 0.0; |
111 static float lavc_param_spatial_cplx_masking= 0.0; | |
112 static float lavc_param_p_masking= 0.0; | |
15368 | 113 static float lavc_param_border_masking= 0.0; |
7490 | 114 static int lavc_param_normalize_aqp= 0; |
7504 | 115 static int lavc_param_interlaced_dct= 0; |
8190 | 116 static int lavc_param_prediction_method= FF_PRED_LEFT; |
10778 | 117 static int lavc_param_format= IMGFMT_YV12; |
8341 | 118 static int lavc_param_debug= 0; |
8347 | 119 static int lavc_param_psnr= 0; |
8803 | 120 static int lavc_param_me_pre_cmp= 0; |
8587 | 121 static int lavc_param_me_cmp= 0; |
122 static int lavc_param_me_sub_cmp= 0; | |
123 static int lavc_param_mb_cmp= 0; | |
11753 | 124 #ifdef FF_CMP_VSAD |
125 static int lavc_param_ildct_cmp= FF_CMP_VSAD; | |
126 #endif | |
8803 | 127 static int lavc_param_pre_dia_size= 0; |
8587 | 128 static int lavc_param_dia_size= 0; |
129 static int lavc_param_qpel= 0; | |
8684 | 130 static int lavc_param_trell= 0; |
24329 | 131 static int lavc_param_lowdelay= 0; |
11930
f2a503cb70ba
bit_exact patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
11910
diff
changeset
|
132 static int lavc_param_bit_exact = 0; |
9536 | 133 static int lavc_param_aic= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
134 static int lavc_param_aiv= 0; |
9536 | 135 static int lavc_param_umv= 0; |
28380
f521e54d47ee
Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.
diego
parents:
28360
diff
changeset
|
136 static int lavc_param_gmc= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
137 static int lavc_param_obmc= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
138 static int lavc_param_loop= 0; |
8695 | 139 static int lavc_param_last_pred= 0; |
8709 | 140 static int lavc_param_pre_me= 1; |
8803 | 141 static int lavc_param_me_subpel_quality= 8; |
9508 | 142 static int lavc_param_me_range= 0; |
9645 | 143 static int lavc_param_ibias= FF_DEFAULT_QUANT_BIAS; |
144 static int lavc_param_pbias= FF_DEFAULT_QUANT_BIAS; | |
10291 | 145 static int lavc_param_coder= 0; |
146 static int lavc_param_context= 0; | |
10779 | 147 static char *lavc_param_intra_matrix = NULL; |
148 static char *lavc_param_inter_matrix = NULL; | |
10963 | 149 static int lavc_param_cbp= 0; |
10974 | 150 static int lavc_param_mv0= 0; |
11363 | 151 static int lavc_param_noise_reduction= 0; |
11910 | 152 static int lavc_param_qns= 0; |
11445 | 153 static int lavc_param_qp_rd= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
154 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
|
155 static int lavc_param_sc_threshold= 0; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
156 static int lavc_param_ss= 0; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
157 static int lavc_param_top= -1; |
11702 | 158 static int lavc_param_alt= 0; |
159 static int lavc_param_ilme= 0; | |
12542 | 160 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
|
161 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
|
162 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
|
163 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
|
164 static int lavc_param_turbo = 0; |
23953
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
165 static int lavc_param_skip_threshold=0; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
166 static int lavc_param_skip_factor=0; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
167 static int lavc_param_skip_exp=0; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
168 static int lavc_param_skip_cmp=0; |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
169 static int lavc_param_brd_scale = 0; |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
170 static int lavc_param_bidir_refine = 0; |
17464 | 171 static int lavc_param_sc_factor = 1; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
172 static int lavc_param_video_global_header= 0; |
18489 | 173 static int lavc_param_mv0_threshold = 256; |
18569 | 174 static int lavc_param_refs = 1; |
18572 | 175 static int lavc_param_b_sensitivity = 40; |
23209 | 176 static int lavc_param_level = FF_LEVEL_UNKNOWN; |
5550 | 177 |
11375 | 178 char *lavc_param_acodec = "mp2"; |
179 int lavc_param_atag = 0; | |
180 int lavc_param_abitrate = 224; | |
17842 | 181 int lavc_param_audio_global_header= 0; |
26693 | 182 static char *lavc_param_avopt = NULL; |
11375 | 183 |
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
|
184 #include "m_option.h" |
5550 | 185 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27307
diff
changeset
|
186 #ifdef CONFIG_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
|
187 m_option_t lavcopts_conf[]={ |
11375 | 188 {"acodec", &lavc_param_acodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
23957
74eb6825d332
allow to specify the audio bitrate in bits (some codecs need that ...)
michael
parents:
23954
diff
changeset
|
189 {"abitrate", &lavc_param_abitrate, CONF_TYPE_INT, CONF_RANGE, 1, 1000000, NULL}, |
11375 | 190 {"atag", &lavc_param_atag, CONF_TYPE_INT, CONF_RANGE, 0, 0xffff, NULL}, |
5550 | 191 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
192 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
193 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
10498 | 194 {"vhq", &lavc_param_mb_decision, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
195 {"mbd", &lavc_param_mb_decision, CONF_TYPE_INT, CONF_RANGE, 0, 9, NULL}, | |
5550 | 196 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
17261 | 197 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
18569 | 198 {"vqscale", &lavc_param_vqscale, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 255.0, NULL}, |
5550 | 199 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
200 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
8492 | 201 {"mbqmin", &lavc_param_mb_qmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
202 {"mbqmax", &lavc_param_mb_qmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
11032 | 203 {"lmin", &lavc_param_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
204 {"lmax", &lavc_param_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, | |
20756 | 205 {"mblmin", &lavc_param_mb_lmin, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, |
206 {"mblmax", &lavc_param_mb_lmax, CONF_TYPE_FLOAT, CONF_RANGE, 0.01, 255.0, NULL}, | |
5550 | 207 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, |
208 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
209 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
7088 | 210 {"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
|
211 {"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
|
212 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL}, |
5778 | 213 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
8413 | 214 {"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
|
215 {"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
|
216 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, -99, 99, NULL}, |
7038 | 217 {"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
|
218 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8195 | 219 {"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
|
220 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
5550 | 221 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
26395 | 222 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
6944 | 223 {"mpeg_quant", &lavc_param_mpeg_quant, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7088 | 224 {"vi_qfactor", &lavc_param_vi_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, -31.0, 31.0, NULL}, |
225 {"vi_qoffset", &lavc_param_vi_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, | |
226 {"vqsquish", &lavc_param_rc_qsquish, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
227 {"vqmod_amp", &lavc_param_rc_qmod_amp, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, | |
228 {"vqmod_freq", &lavc_param_rc_qmod_freq, CONF_TYPE_INT, 0, 0, 0, NULL}, | |
229 {"vrc_eq", &lavc_param_rc_eq, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
230 {"vrc_override", &lavc_param_rc_override_string, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
17063
8f1dafb105df
Fixed wrong M_OPT_RANGE in vrc_maxrate/vrc_minrate , default was 0 and range [4,2400000]
reynaldo
parents:
17012
diff
changeset
|
231 {"vrc_maxrate", &lavc_param_rc_max_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL}, |
8f1dafb105df
Fixed wrong M_OPT_RANGE in vrc_maxrate/vrc_minrate , default was 0 and range [4,2400000]
reynaldo
parents:
17012
diff
changeset
|
232 {"vrc_minrate", &lavc_param_rc_min_rate, CONF_TYPE_INT, CONF_RANGE, 0, 24000000, NULL}, |
11245
9a3230a5ef38
100l patch by (Tilmann Bitterberg <transcode at tibit dot org>)
michael
parents:
11195
diff
changeset
|
233 {"vrc_buf_size", &lavc_param_rc_buffer_size, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, |
7088 | 234 {"vrc_buf_aggressivity", &lavc_param_rc_buffer_aggressivity, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 99.0, NULL}, |
235 {"vrc_init_cplx", &lavc_param_rc_initial_cplx, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 9999999.0, NULL}, | |
15781 | 236 {"vrc_init_occupancy", &lavc_param_rc_initial_buffer_occupancy, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, |
7152 | 237 {"vfdct", &lavc_param_fdct, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
8237 | 238 {"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
|
239 {"autoaspect", &lavc_param_autoaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7490 | 240 {"lumi_mask", &lavc_param_lumi_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
241 {"tcplx_mask", &lavc_param_temporal_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
242 {"scplx_mask", &lavc_param_spatial_cplx_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
243 {"p_mask", &lavc_param_p_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, | |
244 {"naq", &lavc_param_normalize_aqp, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
7496 | 245 {"dark_mask", &lavc_param_dark_masking, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |
7504 | 246 {"ildct", &lavc_param_interlaced_dct, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
7564 | 247 {"idct", &lavc_param_idct, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
8190 | 248 {"pred", &lavc_param_prediction_method, CONF_TYPE_INT, CONF_RANGE, 0, 20, NULL}, |
10778 | 249 {"format", &lavc_param_format, CONF_TYPE_IMGFMT, 0, 0, 0, NULL}, |
8341 | 250 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
8347 | 251 {"psnr", &lavc_param_psnr, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PSNR, NULL}, |
8803 | 252 {"precmp", &lavc_param_me_pre_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8587 | 253 {"cmp", &lavc_param_me_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
254 {"subcmp", &lavc_param_me_sub_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
255 {"mbcmp", &lavc_param_mb_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
23953
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
256 {"skipcmp", &lavc_param_skip_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
11753 | 257 #ifdef FF_CMP_VSAD |
258 {"ildctcmp", &lavc_param_ildct_cmp, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, | |
259 #endif | |
11930
f2a503cb70ba
bit_exact patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
11910
diff
changeset
|
260 {"bit_exact", &lavc_param_bit_exact, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_BITEXACT, NULL}, |
8803 | 261 {"predia", &lavc_param_pre_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8684 | 262 {"dia", &lavc_param_dia_size, CONF_TYPE_INT, CONF_RANGE, -2000, 2000, NULL}, |
8587 | 263 {"qpel", &lavc_param_qpel, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QPEL, NULL}, |
27516
3364aef9a988
Fix compilation after libavcodec major version 52 changes
uau
parents:
27341
diff
changeset
|
264 {"trell", &lavc_param_trell, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
24329 | 265 {"lowdelay", &lavc_param_lowdelay, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_LOW_DELAY, NULL}, |
8695 | 266 {"last_pred", &lavc_param_last_pred, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8709 | 267 {"preme", &lavc_param_pre_me, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL}, |
8803 | 268 {"subq", &lavc_param_me_subpel_quality, CONF_TYPE_INT, CONF_RANGE, 0, 8, NULL}, |
9508 | 269 {"me_range", &lavc_param_me_range, CONF_TYPE_INT, CONF_RANGE, 0, 16000, NULL}, |
28360
ed8f8f58f855
Update libavcodec 'aic' flag define to match current FFmpeg.
diego
parents:
27516
diff
changeset
|
270 #ifdef CODEC_FLAG_AC_PRED |
ed8f8f58f855
Update libavcodec 'aic' flag define to match current FFmpeg.
diego
parents:
27516
diff
changeset
|
271 {"aic", &lavc_param_aic, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_AC_PRED, NULL}, |
9536 | 272 {"umv", &lavc_param_umv, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_UMV, NULL}, |
273 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
274 #ifdef CODEC_FLAG_H263P_AIV |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
275 {"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
|
276 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
277 #ifdef CODEC_FLAG_OBMC |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
278 {"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
|
279 #endif |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
280 #ifdef CODEC_FLAG_LOOP_FILTER |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
281 {"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
|
282 #endif |
9645 | 283 {"ibias", &lavc_param_ibias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, |
284 {"pbias", &lavc_param_pbias, CONF_TYPE_INT, CONF_RANGE, -512, 512, NULL}, | |
10291 | 285 {"coder", &lavc_param_coder, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
286 {"context", &lavc_param_context, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, | |
10779 | 287 {"intra_matrix", &lavc_param_intra_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
288 {"inter_matrix", &lavc_param_inter_matrix, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
10963 | 289 {"cbp", &lavc_param_cbp, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CBP_RD, NULL}, |
10974 | 290 {"mv0", &lavc_param_mv0, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_MV0, NULL}, |
11363 | 291 {"nr", &lavc_param_noise_reduction, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
11445 | 292 #ifdef CODEC_FLAG_QP_RD |
293 {"qprd", &lavc_param_qp_rd, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_QP_RD, NULL}, | |
294 #endif | |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
295 #ifdef CODEC_FLAG_H263P_SLICE_STRUCT |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
296 {"ss", &lavc_param_ss, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_H263P_SLICE_STRUCT, NULL}, |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
297 #endif |
11702 | 298 #ifdef CODEC_FLAG_ALT_SCAN |
299 {"alt", &lavc_param_alt, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_ALT_SCAN, NULL}, | |
300 #endif | |
301 #ifdef CODEC_FLAG_INTERLACED_ME | |
302 {"ilme", &lavc_param_ilme, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_INTERLACED_ME, NULL}, | |
303 #endif | |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
304 #ifdef CODEC_FLAG_CLOSED_GOP |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
305 {"cgop", &lavc_param_closed_gop, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_CLOSED_GOP, NULL}, |
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
306 #endif |
28380
f521e54d47ee
Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.
diego
parents:
28360
diff
changeset
|
307 #ifdef CODEC_FLAG_GMC |
f521e54d47ee
Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.
diego
parents:
28360
diff
changeset
|
308 {"gmc", &lavc_param_gmc, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_GMC, NULL}, |
f521e54d47ee
Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.
diego
parents:
28360
diff
changeset
|
309 #endif |
12765 | 310 {"dc", &lavc_param_dc_precision, CONF_TYPE_INT, CONF_RANGE, 8, 11, NULL}, |
15368 | 311 {"border_mask", &lavc_param_border_masking, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
312 {"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
|
313 {"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
|
314 {"top", &lavc_param_top, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL}, |
11910 | 315 {"qns", &lavc_param_qns, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
12542 | 316 {"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
|
317 {"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
|
318 {"turbo", &lavc_param_turbo, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
23953
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
319 {"skip_threshold", &lavc_param_skip_threshold, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
320 {"skip_factor", &lavc_param_skip_factor, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
321 {"skip_exp", &lavc_param_skip_exp, CONF_TYPE_INT, CONF_RANGE, 0, 1000000, NULL}, |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
322 {"brd_scale", &lavc_param_brd_scale, CONF_TYPE_INT, CONF_RANGE, 0, 10, NULL}, |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
323 {"bidir_refine", &lavc_param_bidir_refine, CONF_TYPE_INT, CONF_RANGE, 0, 4, NULL}, |
17464 | 324 {"sc_factor", &lavc_param_sc_factor, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL}, |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
325 {"vglobal", &lavc_param_video_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
17842 | 326 {"aglobal", &lavc_param_audio_global_header, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
18489 | 327 {"mv0_threshold", &lavc_param_mv0_threshold, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, |
18569 | 328 {"refs", &lavc_param_refs, CONF_TYPE_INT, CONF_RANGE, 1, 16, NULL}, |
18572 | 329 {"b_sensitivity", &lavc_param_b_sensitivity, CONF_TYPE_INT, CONF_RANGE, 1, INT_MAX, NULL}, |
23209 | 330 {"level", &lavc_param_level, CONF_TYPE_INT, CONF_RANGE, INT_MIN, INT_MAX, NULL}, |
26693 | 331 {"o", &lavc_param_avopt, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
5550 | 332 {NULL, NULL, 0, 0, 0, 0, NULL} |
333 }; | |
334 #endif | |
335 | |
336 struct vf_priv_s { | |
8585 | 337 muxer_stream_t* mux; |
7444 | 338 AVCodecContext *context; |
8413 | 339 AVFrame *pic; |
5550 | 340 AVCodec *codec; |
7088 | 341 FILE *stats_file; |
5550 | 342 }; |
343 | |
7088 | 344 #define stats_file (vf->priv->stats_file) |
5550 | 345 #define mux_v (vf->priv->mux) |
346 #define lavc_venc_context (vf->priv->context) | |
347 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
348 static int encode_frame(struct vf_instance *vf, AVFrame *pic, double pts); |
14080 | 349 |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
350 static int config(struct vf_instance *vf, |
5550 | 351 int width, int height, int d_width, int d_height, |
352 unsigned int flags, unsigned int outfmt){ | |
7088 | 353 int size, i; |
29674 | 354 char *p; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
355 |
5550 | 356 mux_v->bih->biWidth=width; |
357 mux_v->bih->biHeight=height; | |
358 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
359 | |
17355 | 360 mp_msg(MSGT_MENCODER, MSGL_INFO,"videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", |
5550 | 361 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, |
362 (char *)&mux_v->bih->biCompression); | |
363 | |
7444 | 364 lavc_venc_context->width = width; |
365 lavc_venc_context->height = height; | |
5677
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
366 if (lavc_param_vbitrate > 16000) /* != -1 */ |
7444 | 367 lavc_venc_context->bit_rate = lavc_param_vbitrate; |
5677
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
368 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
7444 | 369 lavc_venc_context->bit_rate = lavc_param_vbitrate*1000; |
5550 | 370 else |
7444 | 371 lavc_venc_context->bit_rate = 800000; /* default */ |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
372 |
19360
d4d72e5eea07
pass average bitrate from encoder to (lavf) muxer
michael
parents:
19073
diff
changeset
|
373 mux_v->avg_rate= lavc_venc_context->bit_rate; |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
374 |
7444 | 375 lavc_venc_context->bit_rate_tolerance= lavc_param_vrate_tolerance*1000; |
15307 | 376 lavc_venc_context->time_base= (AVRational){mux_v->h.dwScale, mux_v->h.dwRate}; |
7444 | 377 lavc_venc_context->qmin= lavc_param_vqmin; |
378 lavc_venc_context->qmax= lavc_param_vqmax; | |
8492 | 379 lavc_venc_context->mb_qmin= lavc_param_mb_qmin; |
380 lavc_venc_context->mb_qmax= lavc_param_mb_qmax; | |
11032 | 381 lavc_venc_context->lmin= (int)(FF_QP2LAMBDA * lavc_param_lmin + 0.5); |
382 lavc_venc_context->lmax= (int)(FF_QP2LAMBDA * lavc_param_lmax + 0.5); | |
20756 | 383 lavc_venc_context->mb_lmin= (int)(FF_QP2LAMBDA * lavc_param_mb_lmin + 0.5); |
384 lavc_venc_context->mb_lmax= (int)(FF_QP2LAMBDA * lavc_param_mb_lmax + 0.5); | |
7444 | 385 lavc_venc_context->max_qdiff= lavc_param_vqdiff; |
386 lavc_venc_context->qcompress= lavc_param_vqcompress; | |
387 lavc_venc_context->qblur= lavc_param_vqblur; | |
388 lavc_venc_context->max_b_frames= lavc_param_vmax_b_frames; | |
389 lavc_venc_context->b_quant_factor= lavc_param_vb_qfactor; | |
390 lavc_venc_context->rc_strategy= lavc_param_vrc_strategy; | |
391 lavc_venc_context->b_frame_strategy= lavc_param_vb_strategy; | |
14786 | 392 lavc_venc_context->b_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vb_qoffset + 0.5); |
7444 | 393 lavc_venc_context->luma_elim_threshold= lavc_param_luma_elim_threshold; |
394 lavc_venc_context->chroma_elim_threshold= lavc_param_chroma_elim_threshold; | |
395 lavc_venc_context->rtp_payload_size= lavc_param_packet_size; | |
396 lavc_venc_context->strict_std_compliance= lavc_param_strict; | |
397 lavc_venc_context->i_quant_factor= lavc_param_vi_qfactor; | |
14786 | 398 lavc_venc_context->i_quant_offset= (int)(FF_QP2LAMBDA * lavc_param_vi_qoffset + 0.5); |
7444 | 399 lavc_venc_context->rc_qsquish= lavc_param_rc_qsquish; |
400 lavc_venc_context->rc_qmod_amp= lavc_param_rc_qmod_amp; | |
401 lavc_venc_context->rc_qmod_freq= lavc_param_rc_qmod_freq; | |
402 lavc_venc_context->rc_eq= lavc_param_rc_eq; | |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
403 |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
404 mux_v->max_rate= |
7444 | 405 lavc_venc_context->rc_max_rate= lavc_param_rc_max_rate*1000; |
406 lavc_venc_context->rc_min_rate= lavc_param_rc_min_rate*1000; | |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
407 |
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
408 mux_v->vbv_size= |
7444 | 409 lavc_venc_context->rc_buffer_size= lavc_param_rc_buffer_size*1000; |
17480
3993a5fad89a
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
michael
parents:
17478
diff
changeset
|
410 |
15781 | 411 lavc_venc_context->rc_initial_buffer_occupancy= |
412 lavc_venc_context->rc_buffer_size * | |
413 lavc_param_rc_initial_buffer_occupancy; | |
7444 | 414 lavc_venc_context->rc_buffer_aggressivity= lavc_param_rc_buffer_aggressivity; |
415 lavc_venc_context->rc_initial_cplx= lavc_param_rc_initial_cplx; | |
8341 | 416 lavc_venc_context->debug= lavc_param_debug; |
8695 | 417 lavc_venc_context->last_predictor_count= lavc_param_last_pred; |
8709 | 418 lavc_venc_context->pre_me= lavc_param_pre_me; |
8803 | 419 lavc_venc_context->me_pre_cmp= lavc_param_me_pre_cmp; |
420 lavc_venc_context->pre_dia_size= lavc_param_pre_dia_size; | |
421 lavc_venc_context->me_subpel_quality= lavc_param_me_subpel_quality; | |
9508 | 422 lavc_venc_context->me_range= lavc_param_me_range; |
9645 | 423 lavc_venc_context->intra_quant_bias= lavc_param_ibias; |
424 lavc_venc_context->inter_quant_bias= lavc_param_pbias; | |
10291 | 425 lavc_venc_context->coder_type= lavc_param_coder; |
426 lavc_venc_context->context_model= lavc_param_context; | |
11699
9165fbc7d89d
scenechange_threshold command line option patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
11672
diff
changeset
|
427 lavc_venc_context->scenechange_threshold= lavc_param_sc_threshold; |
11363 | 428 lavc_venc_context->noise_reduction= lavc_param_noise_reduction; |
11910 | 429 lavc_venc_context->quantizer_noise_shaping= lavc_param_qns; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
430 lavc_venc_context->inter_threshold= lavc_param_inter_threshold; |
12542 | 431 lavc_venc_context->nsse_weight= lavc_param_nssew; |
23953
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
432 lavc_venc_context->frame_skip_threshold= lavc_param_skip_threshold; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
433 lavc_venc_context->frame_skip_factor= lavc_param_skip_factor; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
434 lavc_venc_context->frame_skip_exp= lavc_param_skip_exp; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
435 lavc_venc_context->frame_skip_cmp= lavc_param_skip_cmp; |
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
436 |
10779 | 437 if (lavc_param_intra_matrix) |
438 { | |
439 char *tmp; | |
440 | |
441 lavc_venc_context->intra_matrix = | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
442 av_malloc(sizeof(*lavc_venc_context->intra_matrix)*64); |
10779 | 443 |
444 i = 0; | |
445 while ((tmp = strsep(&lavc_param_intra_matrix, ",")) && (i < 64)) | |
446 { | |
447 if (!tmp || (tmp && !strlen(tmp))) | |
448 break; | |
449 lavc_venc_context->intra_matrix[i++] = atoi(tmp); | |
450 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
451 |
10779 | 452 if (i != 64) |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
453 av_freep(&lavc_venc_context->intra_matrix); |
10779 | 454 else |
455 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified intra matrix\n"); | |
456 } | |
457 if (lavc_param_inter_matrix) | |
458 { | |
459 char *tmp; | |
460 | |
461 lavc_venc_context->inter_matrix = | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
462 av_malloc(sizeof(*lavc_venc_context->inter_matrix)*64); |
10779 | 463 |
464 i = 0; | |
465 while ((tmp = strsep(&lavc_param_inter_matrix, ",")) && (i < 64)) | |
466 { | |
467 if (!tmp || (tmp && !strlen(tmp))) | |
468 break; | |
469 lavc_venc_context->inter_matrix[i++] = atoi(tmp); | |
470 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
471 |
10779 | 472 if (i != 64) |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
473 av_freep(&lavc_venc_context->inter_matrix); |
10779 | 474 else |
475 mp_msg(MSGT_MENCODER, MSGL_V, "Using user specified inter matrix\n"); | |
476 } | |
9508 | 477 |
7088 | 478 p= lavc_param_rc_override_string; |
479 for(i=0; p; i++){ | |
480 int start, end, q; | |
481 int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
482 if(e!=3){ | |
483 mp_msg(MSGT_MENCODER,MSGL_ERR,"error parsing vrc_q\n"); | |
484 return 0; | |
485 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
486 lavc_venc_context->rc_override= |
7444 | 487 realloc(lavc_venc_context->rc_override, sizeof(RcOverride)*(i+1)); |
488 lavc_venc_context->rc_override[i].start_frame= start; | |
489 lavc_venc_context->rc_override[i].end_frame = end; | |
7088 | 490 if(q>0){ |
7444 | 491 lavc_venc_context->rc_override[i].qscale= q; |
492 lavc_venc_context->rc_override[i].quality_factor= 1.0; | |
7088 | 493 } |
494 else{ | |
7444 | 495 lavc_venc_context->rc_override[i].qscale= 0; |
496 lavc_venc_context->rc_override[i].quality_factor= -q/100.0; | |
7088 | 497 } |
498 p= strchr(p, '/'); | |
499 if(p) p++; | |
500 } | |
7444 | 501 lavc_venc_context->rc_override_count=i; |
7088 | 502 |
7444 | 503 lavc_venc_context->mpeg_quant=lavc_param_mpeg_quant; |
7152 | 504 |
7444 | 505 lavc_venc_context->dct_algo= lavc_param_fdct; |
7564 | 506 lavc_venc_context->idct_algo= lavc_param_idct; |
7152 | 507 |
7490 | 508 lavc_venc_context->lumi_masking= lavc_param_lumi_masking; |
509 lavc_venc_context->temporal_cplx_masking= lavc_param_temporal_cplx_masking; | |
510 lavc_venc_context->spatial_cplx_masking= lavc_param_spatial_cplx_masking; | |
511 lavc_venc_context->p_masking= lavc_param_p_masking; | |
7496 | 512 lavc_venc_context->dark_masking= lavc_param_dark_masking; |
15368 | 513 lavc_venc_context->border_masking = lavc_param_border_masking; |
7490 | 514 |
8237 | 515 if (lavc_param_aspect != NULL) |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
516 { |
8237 | 517 int par_width, par_height, e; |
518 float ratio=0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
519 |
8237 | 520 e= sscanf (lavc_param_aspect, "%d/%d", &par_width, &par_height); |
521 if(e==2){ | |
522 if(par_height) | |
523 ratio= (float)par_width / (float)par_height; | |
524 }else{ | |
525 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
|
526 } |
8237 | 527 |
528 if (e && ratio > 0.1 && ratio < 10.0) { | |
11195
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
529 lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 255); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
530 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "sample_aspect_ratio: %d/%d\n", |
11195
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
531 lavc_venc_context->sample_aspect_ratio.num, |
9bfd1b5d38cd
mpeg4 has only 8bit per numerator and denominator ...
michael
parents:
11194
diff
changeset
|
532 lavc_venc_context->sample_aspect_ratio.den); |
12061 | 533 mux_v->aspect = ratio; |
8237 | 534 mp_dbg(MSGT_MENCODER, MSGL_DBG2, "aspect_ratio: %f\n", ratio); |
535 } else { | |
536 mp_dbg(MSGT_MENCODER, MSGL_ERR, "aspect ratio: cannot parse \"%s\"\n", lavc_param_aspect); | |
537 return 0; | |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
538 } |
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
539 } |
13669
8f12e583f50b
10l...autoaspect was always applied to muxer aspect if using newer libavcodec...hope this is ok
rfelker
parents:
13406
diff
changeset
|
540 else if (lavc_param_autoaspect) { |
11369 | 541 lavc_venc_context->sample_aspect_ratio = av_d2q((float)d_width/d_height*height / width, 255); |
12061 | 542 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
|
543 } |
7389
6f3dd9df2cc2
aspect ratio support by encoding (currently only with mpeg4 and h263p)
alex
parents:
7368
diff
changeset
|
544 |
5550 | 545 /* keyframe interval */ |
546 if (lavc_param_keyint >= 0) /* != -1 */ | |
7444 | 547 lavc_venc_context->gop_size = lavc_param_keyint; |
5550 | 548 else |
7444 | 549 lavc_venc_context->gop_size = 250; /* default */ |
5550 | 550 |
10498 | 551 lavc_venc_context->flags = 0; |
552 if (lavc_param_mb_decision) | |
5550 | 553 { |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
554 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_HighQualityEncodingSelected); |
10498 | 555 lavc_venc_context->mb_decision= lavc_param_mb_decision; |
5550 | 556 } |
557 | |
8587 | 558 lavc_venc_context->me_cmp= lavc_param_me_cmp; |
559 lavc_venc_context->me_sub_cmp= lavc_param_me_sub_cmp; | |
560 lavc_venc_context->mb_cmp= lavc_param_mb_cmp; | |
11753 | 561 #ifdef FF_CMP_VSAD |
562 lavc_venc_context->ildct_cmp= lavc_param_ildct_cmp; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
563 #endif |
8587 | 564 lavc_venc_context->dia_size= lavc_param_dia_size; |
565 lavc_venc_context->flags|= lavc_param_qpel; | |
27516
3364aef9a988
Fix compilation after libavcodec major version 52 changes
uau
parents:
27341
diff
changeset
|
566 lavc_venc_context->trellis = lavc_param_trell; |
24329 | 567 lavc_venc_context->flags|= lavc_param_lowdelay; |
11930
f2a503cb70ba
bit_exact patch by ("Steven M. Schultz" <sms at 2BSD dot COM>)
michael
parents:
11910
diff
changeset
|
568 lavc_venc_context->flags|= lavc_param_bit_exact; |
9536 | 569 lavc_venc_context->flags|= lavc_param_aic; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
570 lavc_venc_context->flags|= lavc_param_aiv; |
9536 | 571 lavc_venc_context->flags|= lavc_param_umv; |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
572 lavc_venc_context->flags|= lavc_param_obmc; |
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
573 lavc_venc_context->flags|= lavc_param_loop; |
7444 | 574 lavc_venc_context->flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
575 lavc_venc_context->flags|= lavc_param_data_partitioning; | |
10963 | 576 lavc_venc_context->flags|= lavc_param_cbp; |
10974 | 577 lavc_venc_context->flags|= lavc_param_mv0; |
11445 | 578 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
|
579 lavc_venc_context->flags|= lavc_param_ss; |
11702 | 580 lavc_venc_context->flags|= lavc_param_alt; |
581 lavc_venc_context->flags|= lavc_param_ilme; | |
28380
f521e54d47ee
Add support for libavcodec GMC flag, patch by Dave Baker, dbkr mxtelecom com.
diego
parents:
28360
diff
changeset
|
582 lavc_venc_context->flags|= lavc_param_gmc; |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
583 #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
|
584 lavc_venc_context->flags|= lavc_param_closed_gop; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
585 #endif |
26395 | 586 if(lavc_param_gray) lavc_venc_context->flags|= CODEC_FLAG_GRAY; |
6461 | 587 |
7490 | 588 if(lavc_param_normalize_aqp) lavc_venc_context->flags|= CODEC_FLAG_NORMALIZE_AQP; |
7504 | 589 if(lavc_param_interlaced_dct) lavc_venc_context->flags|= CODEC_FLAG_INTERLACED_DCT; |
8347 | 590 lavc_venc_context->flags|= lavc_param_psnr; |
12764
8109997eb7d3
dc precision and closed gop patch by (Nico Sabbi <nsabbi at tiscali dot it>)
michael
parents:
12760
diff
changeset
|
591 lavc_venc_context->intra_dc_precision = lavc_param_dc_precision - 8; |
8190 | 592 lavc_venc_context->prediction_method= lavc_param_prediction_method; |
17243
67ce2e4206ea
support downscaling frames for dynamic b frame decission
gpoirier
parents:
17063
diff
changeset
|
593 lavc_venc_context->brd_scale = lavc_param_brd_scale; |
17256
b89745a920d6
Add bidir_refine to lavc's set of options, and document it.
gpoirier
parents:
17243
diff
changeset
|
594 lavc_venc_context->bidir_refine = lavc_param_bidir_refine; |
17464 | 595 lavc_venc_context->scenechange_factor = lavc_param_sc_factor; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
596 if((lavc_param_video_global_header&1) |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
597 /*|| (video_global_header==0 && (oc->oformat->flags & AVFMT_GLOBALHEADER))*/){ |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
598 lavc_venc_context->flags |= CODEC_FLAG_GLOBAL_HEADER; |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
599 } |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
600 if(lavc_param_video_global_header&2){ |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
601 lavc_venc_context->flags2 |= CODEC_FLAG2_LOCAL_HEADER; |
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
602 } |
18489 | 603 lavc_venc_context->mv0_threshold = lavc_param_mv0_threshold; |
18569 | 604 lavc_venc_context->refs = lavc_param_refs; |
18572 | 605 lavc_venc_context->b_sensitivity = lavc_param_b_sensitivity; |
23209 | 606 lavc_venc_context->level = lavc_param_level; |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
607 |
26693 | 608 if(lavc_param_avopt){ |
609 if(parse_avopts(lavc_venc_context, lavc_param_avopt) < 0){ | |
610 mp_msg(MSGT_MENCODER,MSGL_ERR, "Your options /%s/ look like gibberish to me pal\n", lavc_param_avopt); | |
611 return 0; | |
612 } | |
613 } | |
614 | |
23309
af2f1099072f
Pass imgfmt from lavc encoder to lavf muxer (this is needed for dv).
corey
parents:
23288
diff
changeset
|
615 mux_v->imgfmt = lavc_param_format; |
30312
54e9eb2664a7
Reuse the fmt-conversion code instead of duplicating the functionality.
reimar
parents:
29793
diff
changeset
|
616 lavc_venc_context->pix_fmt = imgfmt2pixfmt(lavc_param_format); |
54e9eb2664a7
Reuse the fmt-conversion code instead of duplicating the functionality.
reimar
parents:
29793
diff
changeset
|
617 if (lavc_venc_context->pix_fmt == PIX_FMT_NONE) |
54e9eb2664a7
Reuse the fmt-conversion code instead of duplicating the functionality.
reimar
parents:
29793
diff
changeset
|
618 return 0; |
10302 | 619 |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
620 if(!stats_file) { |
5778 | 621 /* lavc internal 2pass bitrate control */ |
6673 | 622 switch(lavc_param_vpass){ |
7088 | 623 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
|
624 case 3: |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
625 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
|
626 stats_file= fopen(passtmpfile, "rb"); |
7088 | 627 if(stats_file==NULL){ |
628 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
629 return 0; | |
630 } | |
631 fseek(stats_file, 0, SEEK_END); | |
632 size= ftell(stats_file); | |
633 fseek(stats_file, 0, SEEK_SET); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
634 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
635 lavc_venc_context->stats_in= av_malloc(size + 1); |
7444 | 636 lavc_venc_context->stats_in[size]=0; |
7088 | 637 |
7444 | 638 if(fread(lavc_venc_context->stats_in, size, 1, stats_file)<1){ |
7088 | 639 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: reading from filename=%s\n", passtmpfile); |
640 return 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
641 } |
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 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
|
643 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
|
644 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
|
645 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
|
646 /* fall through */ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
647 case 1: |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
648 lavc_venc_context->flags|= CODEC_FLAG_PASS1; |
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
|
649 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
|
650 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
|
651 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
|
652 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
|
653 } |
13406
2f69854dfbe4
10l: Make turbo mode compatible with 3-pass encoding
gpoirier
parents:
13386
diff
changeset
|
654 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
|
655 /* 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
|
656 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
|
657 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
|
658 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
|
659 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
|
660 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
661 /* Disables diamond motion estimation */ |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
662 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
|
663 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
|
664 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
665 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
|
666 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
|
667 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
|
668 |
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
669 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
|
670 lavc_venc_context->flags &= ~CODEC_FLAG_4MV; |
27516
3364aef9a988
Fix compilation after libavcodec major version 52 changes
uau
parents:
27341
diff
changeset
|
671 lavc_venc_context->trellis = 0; |
13386
d8ba5b72fc6c
New lavc flag: "turbo" mode which is supposed to speed up 2-pass encoding
gpoirier
parents:
13385
diff
changeset
|
672 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
|
673 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
|
674 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
|
675 } |
7088 | 676 break; |
6673 | 677 } |
10848
5844bf004dec
2pass stats curruption fix by ("Johannes E. Schindelin" <Johannes dot Schindelin at gmx dot de>)
michael
parents:
10779
diff
changeset
|
678 } |
5778 | 679 |
7444 | 680 lavc_venc_context->me_method = ME_ZERO+lavc_param_vme; |
5550 | 681 |
682 /* fixed qscale :p */ | |
18569 | 683 if (lavc_param_vqscale >= 0.0) |
5550 | 684 { |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
685 mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_UsingConstantQscale, lavc_param_vqscale); |
7444 | 686 lavc_venc_context->flags |= CODEC_FLAG_QSCALE; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
687 lavc_venc_context->global_quality= |
11032 | 688 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * lavc_param_vqscale + 0.5); |
5550 | 689 } |
19073
8b52dad54b1d
Remove #if LIBAVCODEC_BUILD >= XXX and #if LIBAVFORMAT_BUILD >= XXX jungle.
diego
parents:
18976
diff
changeset
|
690 |
12760
787a1ce375df
multi-threaded lavc patch by (Loren Merritt <lorenm at u dot washington dot edu>)
michael
parents:
12542
diff
changeset
|
691 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
|
692 avcodec_thread_init(lavc_venc_context, lavc_param_threads); |
5550 | 693 |
7444 | 694 if (avcodec_open(lavc_venc_context, vf->priv->codec) != 0) { |
5550 | 695 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); |
696 return 0; | |
697 } | |
698 | |
7444 | 699 if (lavc_venc_context->codec->encode == NULL) { |
5550 | 700 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); |
701 return 0; | |
702 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
703 |
7088 | 704 /* free second pass buffer, its not needed anymore */ |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
705 av_freep(&lavc_venc_context->stats_in); |
27516
3364aef9a988
Fix compilation after libavcodec major version 52 changes
uau
parents:
27341
diff
changeset
|
706 if(lavc_venc_context->bits_per_coded_sample) |
3364aef9a988
Fix compilation after libavcodec major version 52 changes
uau
parents:
27341
diff
changeset
|
707 mux_v->bih->biBitCount= lavc_venc_context->bits_per_coded_sample; |
8190 | 708 if(lavc_venc_context->extradata_size){ |
17478
7d60fe925f87
vglobal so the user can tell the encoder that she wants global headers ... one step closer to correct mov/mp4 muxing
michael
parents:
17469
diff
changeset
|
709 mux_v->bih= realloc(mux_v->bih, sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size); |
8190 | 710 memcpy(mux_v->bih + 1, lavc_venc_context->extradata, lavc_venc_context->extradata_size); |
711 mux_v->bih->biSize= sizeof(BITMAPINFOHEADER) + lavc_venc_context->extradata_size; | |
712 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
713 |
17659 | 714 mux_v->decoder_delay = lavc_venc_context->max_b_frames ? 1 : 0; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
715 |
5550 | 716 return 1; |
717 } | |
718 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
719 static int control(struct vf_instance *vf, int request, void* data){ |
5550 | 720 |
14080 | 721 switch(request){ |
722 case VFCTRL_FLUSH_FRAMES: | |
723 if(vf->priv->codec->capabilities & CODEC_CAP_DELAY) | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
724 while(encode_frame(vf, NULL, MP_NOPTS_VALUE) > 0); |
14080 | 725 return CONTROL_TRUE; |
726 default: | |
727 return CONTROL_UNKNOWN; | |
728 } | |
5550 | 729 } |
730 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
731 static int query_format(struct vf_instance *vf, unsigned int fmt){ |
5550 | 732 switch(fmt){ |
733 case IMGFMT_YV12: | |
734 case IMGFMT_IYUV: | |
735 case IMGFMT_I420: | |
10778 | 736 if(lavc_param_format == IMGFMT_YV12) |
8190 | 737 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
738 break; | |
10293 | 739 case IMGFMT_411P: |
10778 | 740 if(lavc_param_format == IMGFMT_411P) |
10293 | 741 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
742 break; | |
8190 | 743 case IMGFMT_422P: |
10778 | 744 if(lavc_param_format == IMGFMT_422P) |
8190 | 745 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
746 break; | |
10293 | 747 case IMGFMT_444P: |
10778 | 748 if(lavc_param_format == IMGFMT_444P) |
10293 | 749 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
750 break; | |
751 case IMGFMT_YVU9: | |
10778 | 752 if(lavc_param_format == IMGFMT_YVU9) |
10293 | 753 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
754 break; | |
10302 | 755 case IMGFMT_BGR32: |
10778 | 756 if(lavc_param_format == IMGFMT_BGR32) |
10302 | 757 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
758 break; | |
5550 | 759 } |
760 return 0; | |
761 } | |
762 | |
8347 | 763 static double psnr(double d){ |
764 if(d==0) return INFINITY; | |
765 return -10.0*log(d)/log(10); | |
766 } | |
767 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
768 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){ |
8413 | 769 AVFrame *pic= vf->priv->pic; |
5550 | 770 |
8339 | 771 pic->data[0]=mpi->planes[0]; |
772 pic->data[1]=mpi->planes[1]; | |
773 pic->data[2]=mpi->planes[2]; | |
774 pic->linesize[0]=mpi->stride[0]; | |
775 pic->linesize[1]=mpi->stride[1]; | |
776 pic->linesize[2]=mpi->stride[2]; | |
5550 | 777 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
778 if(lavc_param_interlaced_dct){ |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
779 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
|
780 pic->top_field_first= !!(mpi->fields & MP_IMGFIELD_TOP_FIRST); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
781 else |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
782 pic->top_field_first= 1; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
783 |
11672
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
784 if(lavc_param_top!=-1) |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
785 pic->top_field_first= lavc_param_top; |
62ca7e82de82
better top_field_first behaviour (mostly what rich suggested)
michael
parents:
11670
diff
changeset
|
786 } |
11670
ffca211f32f9
using top_field_first from mpi, and support overriding it
michael
parents:
11445
diff
changeset
|
787 |
26754
63630c09e237
cosmetics: Remove pointless parentheses from return calls.
diego
parents:
26693
diff
changeset
|
788 return encode_frame(vf, pic, pts) >= 0; |
14080 | 789 } |
790 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
791 static int encode_frame(struct vf_instance *vf, AVFrame *pic, double pts){ |
14080 | 792 const char pict_type_char[5]= {'?', 'I', 'P', 'B', 'S'}; |
793 int out_size; | |
17907 | 794 double dts; |
14080 | 795 |
23954 | 796 if(pts == MP_NOPTS_VALUE) |
797 pts= lavc_venc_context->frame_number * av_q2d(lavc_venc_context->time_base); | |
798 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
799 if(pic){ |
17909 | 800 #if 0 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
801 pic->opaque= malloc(sizeof(pts)); |
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
802 memcpy(pic->opaque, &pts, sizeof(pts)); |
17909 | 803 #else |
804 if(pts != MP_NOPTS_VALUE) | |
805 pic->pts= floor(pts / av_q2d(lavc_venc_context->time_base) + 0.5); | |
806 else | |
807 pic->pts= MP_NOPTS_VALUE; | |
808 #endif | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
809 } |
7444 | 810 out_size = avcodec_encode_video(lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
8339 | 811 pic); |
5550 | 812 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
813 if(pts != MP_NOPTS_VALUE) |
17907 | 814 dts= pts - lavc_venc_context->delay * av_q2d(lavc_venc_context->time_base); |
815 else | |
816 dts= MP_NOPTS_VALUE; | |
17909 | 817 #if 0 |
17907 | 818 pts= lavc_venc_context->coded_frame->opaque ? |
819 *(double*)lavc_venc_context->coded_frame->opaque | |
820 : MP_NOPTS_VALUE; | |
17909 | 821 #else |
822 if(lavc_venc_context->coded_frame->pts != MP_NOPTS_VALUE) | |
823 pts= lavc_venc_context->coded_frame->pts * av_q2d(lavc_venc_context->time_base); | |
824 else | |
825 pts= MP_NOPTS_VALUE; | |
826 assert(MP_NOPTS_VALUE == AV_NOPTS_VALUE); | |
827 #endif | |
828 //fprintf(stderr, "ve_lavc %f/%f\n", dts, pts); | |
23953
5f3a46b4fb64
make a few more parameters accessable from mplayer
michael
parents:
23309
diff
changeset
|
829 if(out_size == 0 && lavc_param_skip_threshold==0 && lavc_param_skip_factor==0){ |
17659 | 830 ++mux_v->encoder_delay; |
14080 | 831 return 0; |
17659 | 832 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
833 |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
834 muxer_write_chunk(mux_v,out_size,lavc_venc_context->coded_frame->key_frame?0x10:0, |
17907 | 835 dts, pts); |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17886
diff
changeset
|
836 free(lavc_venc_context->coded_frame->opaque); |
17907 | 837 lavc_venc_context->coded_frame->opaque= NULL; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
838 |
8347 | 839 /* store psnr / pict size / type / qscale */ |
840 if(lavc_param_psnr){ | |
841 static FILE *fvstats=NULL; | |
842 char filename[20]; | |
843 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
|
844 double quality=0.0; |
9868 | 845 int8_t *q; |
8347 | 846 |
847 if(!fvstats) { | |
848 time_t today2; | |
849 struct tm *today; | |
850 today2 = time(NULL); | |
851 today = localtime(&today2); | |
852 sprintf(filename, "psnr_%02d%02d%02d.log", today->tm_hour, | |
853 today->tm_min, today->tm_sec); | |
854 fvstats = fopen(filename,"w"); | |
855 if(!fvstats) { | |
856 perror("fopen"); | |
857 lavc_param_psnr=0; // disable block | |
12983 | 858 mp_msg(MSGT_MENCODER,MSGL_ERR,"Can't open %s for writing. Check its permissions.\n",filename); |
14080 | 859 return -1; |
8347 | 860 /*exit(1);*/ |
861 } | |
862 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
863 |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
864 // average MB quantizer |
9868 | 865 q = lavc_venc_context->coded_frame->qscale_table; |
866 if(q) { | |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
867 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
868 int w = (lavc_venc_context->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
869 int h = (lavc_venc_context->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
870 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
871 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
872 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
873 q += lavc_venc_context->coded_frame->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
874 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
875 quality /= w * h; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
876 } else |
11032 | 877 quality = lavc_venc_context->coded_frame->quality / (float)FF_QP2LAMBDA; |
8347 | 878 |
879 fprintf(fvstats, "%6d, %2.2f, %6d, %2.2f, %2.2f, %2.2f, %2.2f %c\n", | |
8413 | 880 lavc_venc_context->coded_frame->coded_picture_number, |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9645
diff
changeset
|
881 quality, |
8347 | 882 out_size, |
8413 | 883 psnr(lavc_venc_context->coded_frame->error[0]/f), |
884 psnr(lavc_venc_context->coded_frame->error[1]*4/f), | |
885 psnr(lavc_venc_context->coded_frame->error[2]*4/f), | |
886 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)), | |
887 pict_type_char[lavc_venc_context->coded_frame->pict_type] | |
8347 | 888 ); |
889 } | |
7088 | 890 /* store stats if there are any */ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
891 if(lavc_venc_context->stats_out && stats_file) |
7444 | 892 fprintf(stats_file, "%s", lavc_venc_context->stats_out); |
14080 | 893 return out_size; |
5550 | 894 } |
895 | |
30642
a972c1a4a012
cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents:
30421
diff
changeset
|
896 static void uninit(struct vf_instance *vf){ |
19073
8b52dad54b1d
Remove #if LIBAVCODEC_BUILD >= XXX and #if LIBAVFORMAT_BUILD >= XXX jungle.
diego
parents:
18976
diff
changeset
|
897 |
8347 | 898 if(lavc_param_psnr){ |
899 double f= lavc_venc_context->width*lavc_venc_context->height*255.0*255.0; | |
8413 | 900 f*= lavc_venc_context->coded_frame->coded_picture_number; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
901 |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17909
diff
changeset
|
902 mp_msg(MSGT_MENCODER, MSGL_INFO, "PSNR: Y:%2.2f, Cb:%2.2f, Cr:%2.2f, All:%2.2f\n", |
8347 | 903 psnr(lavc_venc_context->error[0]/f), |
904 psnr(lavc_venc_context->error[1]*4/f), | |
905 psnr(lavc_venc_context->error[2]*4/f), | |
906 psnr((lavc_venc_context->error[0]+lavc_venc_context->error[1]+lavc_venc_context->error[2])/(f*1.5)) | |
907 ); | |
908 } | |
909 | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
910 av_freep(&lavc_venc_context->intra_matrix); |
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
911 av_freep(&lavc_venc_context->inter_matrix); |
10779 | 912 |
29793
e19b989877c6
Only call avcodec_close if the open succeeded before, otherwise avcodec_close
reimar
parents:
29674
diff
changeset
|
913 if (lavc_venc_context->codec) |
e19b989877c6
Only call avcodec_close if the open succeeded before, otherwise avcodec_close
reimar
parents:
29674
diff
changeset
|
914 avcodec_close(lavc_venc_context); |
7088 | 915 |
916 if(stats_file) fclose(stats_file); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28380
diff
changeset
|
917 |
7088 | 918 /* free rc_override */ |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
919 av_freep(&lavc_venc_context->rc_override); |
7444 | 920 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14080
diff
changeset
|
921 av_freep(&vf->priv->context); |
5551 | 922 } |
923 | |
5550 | 924 //===========================================================================// |
925 | |
926 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 927 vf->uninit=uninit; |
5550 | 928 vf->config=config; |
14878 | 929 vf->default_caps=VFCAP_CONSTANT; |
5550 | 930 vf->control=control; |
931 vf->query_format=query_format; | |
932 vf->put_image=put_image; | |
933 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
934 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
8585 | 935 vf->priv->mux=(muxer_stream_t*)args; |
5550 | 936 |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
937 /* 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
|
938 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
|
939 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
|
940 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
|
941 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
942 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
|
943 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
|
944 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
|
945 } |
14057 | 946 else if (lavc_param_vcodec && (!strcasecmp(lavc_param_vcodec, "huffyuv") |
947 || !strcasecmp(lavc_param_vcodec, "ffvhuff"))) | |
8190 | 948 { |
949 /* XXX: hack: huffyuv needs to store huffman tables (allthough we dunno the size yet ...) */ | |
950 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+1000); | |
951 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+1000); | |
952 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+1000; | |
953 } | |
10131 | 954 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv1")) |
955 { | |
956 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
957 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
958 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
959 } | |
10777 | 960 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "asv2")) |
961 { | |
962 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+8); | |
963 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+8); | |
964 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+8; | |
965 } | |
8587 | 966 else if (lavc_param_vcodec && !strcasecmp(lavc_param_vcodec, "wmv2")) |
967 { | |
968 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)+4); | |
969 memset(mux_v->bih, 0, sizeof(BITMAPINFOHEADER)+4); | |
970 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER)+4; | |
971 } | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
972 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
973 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
974 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
975 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
|
976 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
977 } |
5550 | 978 mux_v->bih->biWidth=0; |
979 mux_v->bih->biHeight=0; | |
980 mux_v->bih->biPlanes=1; | |
981 mux_v->bih->biBitCount=24; | |
982 if (!lavc_param_vcodec) | |
983 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
984 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 985 return 0; |
986 } | |
987 | |
988 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
989 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
10699 | 990 else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video")) |
991 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2'); | |
5550 | 992 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) |
993 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
994 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
995 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
996 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
997 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
10302 | 998 else if (!strcasecmp(lavc_param_vcodec, "ljpeg")) |
999 mux_v->bih->biCompression = mmioFOURCC('L', 'J', 'P', 'G'); | |
5550 | 1000 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) |
14766 | 1001 mux_v->bih->biCompression = mmioFOURCC('F', 'M', 'P', '4'); |
5550 | 1002 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) |
1003 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 1004 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
1005 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 1006 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
1007 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
8587 | 1008 else if (!strcasecmp(lavc_param_vcodec, "wmv2")) |
1009 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '2'); | |
8190 | 1010 else if (!strcasecmp(lavc_param_vcodec, "huffyuv")) |
1011 mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U'); | |
14057 | 1012 else if (!strcasecmp(lavc_param_vcodec, "ffvhuff")) |
1013 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', 'H'); | |
10131 | 1014 else if (!strcasecmp(lavc_param_vcodec, "asv1")) |
1015 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1'); | |
10777 | 1016 else if (!strcasecmp(lavc_param_vcodec, "asv2")) |
1017 mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '2'); | |
10264 | 1018 else if (!strcasecmp(lavc_param_vcodec, "ffv1")) |
1019 mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1'); | |
13074 | 1020 else if (!strcasecmp(lavc_param_vcodec, "snow")) |
1021 mux_v->bih->biCompression = mmioFOURCC('S', 'N', 'O', 'W'); | |
20419 | 1022 else if (!strcasecmp(lavc_param_vcodec, "flv")) |
1023 mux_v->bih->biCompression = mmioFOURCC('F', 'L', 'V', '1'); | |
23288 | 1024 else if (!strcasecmp(lavc_param_vcodec, "dvvideo")) |
1025 mux_v->bih->biCompression = mmioFOURCC('d', 'v', 's', 'd'); | |
24004
73e5eb586eb6
make x264 work again after the h264-libx264 renaming
michael
parents:
23957
diff
changeset
|
1026 else if (!strcasecmp(lavc_param_vcodec, "libx264")) |
73e5eb586eb6
make x264 work again after the h264-libx264 renaming
michael
parents:
23957
diff
changeset
|
1027 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '4'); |
27307
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
26754
diff
changeset
|
1028 else if (!strcasecmp(lavc_param_vcodec, "libschroedinger")) |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
26754
diff
changeset
|
1029 mux_v->bih->biCompression = mmioFOURCC('d', 'r', 'a', 'c'); |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
26754
diff
changeset
|
1030 else if (!strcasecmp(lavc_param_vcodec, "libdirac")) |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
26754
diff
changeset
|
1031 mux_v->bih->biCompression = mmioFOURCC('d', 'r', 'a', 'c'); |
5550 | 1032 else |
1033 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
1034 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
1035 | |
25962 | 1036 if (!avcodec_initialized){ |
5550 | 1037 avcodec_init(); |
1038 avcodec_register_all(); | |
25962 | 1039 avcodec_initialized=1; |
5550 | 1040 } |
1041 | |
1042 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
1043 if (!vf->priv->codec) { | |
1044 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
1045 return 0; | |
1046 } | |
1047 | |
8413 | 1048 vf->priv->pic = avcodec_alloc_frame(); |
7444 | 1049 vf->priv->context = avcodec_alloc_context(); |
29673
a3cc38ad5878
Set codec_type and codec_id in codec context for lavc encoders.
reimar
parents:
29263
diff
changeset
|
1050 vf->priv->context->codec_type = CODEC_TYPE_VIDEO; |
a3cc38ad5878
Set codec_type and codec_id in codec context for lavc encoders.
reimar
parents:
29263
diff
changeset
|
1051 vf->priv->context->codec_id = vf->priv->codec->id; |
7444 | 1052 |
5550 | 1053 return 1; |
1054 } | |
1055 | |
1056 vf_info_t ve_info_lavc = { | |
1057 "libavcodec encoder", | |
1058 "lavc", | |
6673 | 1059 "A'rpi, Alex, Michael", |
5550 | 1060 "for internal use by mencoder", |
1061 vf_open | |
1062 }; | |
1063 | |
1064 //===========================================================================// |