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