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