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