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