Mercurial > mplayer.hg
annotate libmpcodecs/ve_lavc.c @ 6714:be17a987e0a1
fix tv bazze
author | atmos4 |
---|---|
date | Fri, 12 Jul 2002 03:26:46 +0000 |
parents | d6adae1af0e3 |
children | c72555c4bc63 |
rev | line source |
---|---|
5550 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #include "../config.h" | |
6 | |
7 #ifdef USE_LIBAVCODEC | |
8 | |
9 #include "../mp_msg.h" | |
10 #include "../help_mp.h" | |
11 | |
12 #include "codec-cfg.h" | |
13 #include "stream.h" | |
14 #include "demuxer.h" | |
15 #include "stheader.h" | |
16 | |
17 #include "aviwrite.h" | |
18 | |
5607 | 19 #include "img_format.h" |
20 #include "mp_image.h" | |
5550 | 21 #include "vf.h" |
22 | |
6673 | 23 #ifdef HAVE_DIVX4ENCORE |
5550 | 24 #include "divx4_vbr.h" |
6673 | 25 extern char* passtmpfile; |
26 #endif | |
5550 | 27 |
28 extern int pass; | |
29 | |
30 //===========================================================================// | |
31 | |
32 #ifdef USE_LIBAVCODEC_SO | |
33 #include <libffmpeg/avcodec.h> | |
34 #else | |
35 #include "libavcodec/avcodec.h" | |
36 #endif | |
37 | |
5778 | 38 #if LIBAVCODEC_BUILD < 4601 |
39 #error your version of libavcodec is too old, get a newer one, and dont send a bugreport, THIS IS NO BUG | |
40 #endif | |
41 | |
5550 | 42 extern int avcodec_inited; |
43 | |
44 /* video options */ | |
45 static char *lavc_param_vcodec = NULL; | |
46 static int lavc_param_vbitrate = -1; | |
47 static int lavc_param_vrate_tolerance = 1024*8; | |
48 static int lavc_param_vhq = 0; /* default is realtime encoding */ | |
49 static int lavc_param_v4mv = 0; | |
5556 | 50 static int lavc_param_vme = 4; |
5550 | 51 static int lavc_param_vqscale = 0; |
52 static int lavc_param_vqmin = 3; | |
53 static int lavc_param_vqmax = 15; | |
54 static int lavc_param_vqdiff = 3; | |
55 static float lavc_param_vqcompress = 0.5; | |
56 static float lavc_param_vqblur = 0.5; | |
5778 | 57 static float lavc_param_vb_qfactor = 2.0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
58 static float lavc_param_vb_qoffset = 0.0; |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
59 static int lavc_param_vmax_b_frames = 0; |
5550 | 60 static int lavc_param_keyint = -1; |
5778 | 61 static int lavc_param_vpass = 0; |
62 static int lavc_param_vrc_strategy = 2; | |
63 static int lavc_param_vb_strategy = 0; | |
6255
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
64 static int lavc_param_luma_elim_threshold = 0; |
140e94c4c89b
single coefficient elimination disabled by default
michael
parents:
6228
diff
changeset
|
65 static int lavc_param_chroma_elim_threshold = 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
66 static int lavc_param_packet_size= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
67 static int lavc_param_strict= 0; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
68 static int lavc_param_data_partitioning= 0; |
6461 | 69 static int lavc_param_gray=0; |
5550 | 70 |
71 #include "cfgparser.h" | |
72 | |
73 #ifdef USE_LIBAVCODEC | |
74 struct config lavcopts_conf[]={ | |
75 {"vcodec", &lavc_param_vcodec, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
76 {"vbitrate", &lavc_param_vbitrate, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
77 {"vratetol", &lavc_param_vrate_tolerance, CONF_TYPE_INT, CONF_RANGE, 4, 24000000, NULL}, | |
78 {"vhq", &lavc_param_vhq, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
79 {"v4mv", &lavc_param_v4mv, CONF_TYPE_FLAG, 0, 0, 1, NULL}, | |
80 {"vme", &lavc_param_vme, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, | |
81 {"vqscale", &lavc_param_vqscale, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
82 {"vqmin", &lavc_param_vqmin, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
83 {"vqmax", &lavc_param_vqmax, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
84 {"vqdiff", &lavc_param_vqdiff, CONF_TYPE_INT, CONF_RANGE, 1, 31, NULL}, | |
85 {"vqcomp", &lavc_param_vqcompress, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
86 {"vqblur", &lavc_param_vqblur, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, | |
5778 | 87 {"vb_qfactor", &lavc_param_vb_qfactor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
88 {"vmax_b_frames", &lavc_param_vmax_b_frames, CONF_TYPE_INT, CONF_RANGE, 0, FF_MAX_B_FRAMES, NULL}, |
5778 | 89 {"vpass", &lavc_param_vpass, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, |
90 {"vrc_strategy", &lavc_param_vrc_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL}, | |
91 {"vb_strategy", &lavc_param_vb_strategy, CONF_TYPE_INT, CONF_RANGE, 0, 1, NULL}, | |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
92 #ifdef CODEC_FLAG_PART |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
93 {"vb_qoffset", &lavc_param_vb_qoffset, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 31.0, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
94 {"vlelim", &lavc_param_luma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
95 {"vcelim", &lavc_param_chroma_elim_threshold, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
96 {"vpsize", &lavc_param_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, 100000000, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
97 {"vstrict", &lavc_param_strict, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
98 {"vdpart", &lavc_param_data_partitioning, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
99 #endif |
5550 | 100 {"keyint", &lavc_param_keyint, CONF_TYPE_INT, 0, 0, 0, NULL}, |
6461 | 101 #if LIBAVCODEC_BUILD >= 4614 |
102 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, | |
103 #endif | |
5550 | 104 {NULL, NULL, 0, 0, 0, 0, NULL} |
105 }; | |
106 #endif | |
107 | |
108 struct vf_priv_s { | |
109 aviwrite_stream_t* mux; | |
110 AVCodecContext context; | |
111 AVCodec *codec; | |
112 }; | |
113 | |
114 #define mux_v (vf->priv->mux) | |
115 #define lavc_venc_context (vf->priv->context) | |
116 | |
117 static int config(struct vf_instance_s* vf, | |
118 int width, int height, int d_width, int d_height, | |
119 unsigned int flags, unsigned int outfmt){ | |
120 | |
121 mux_v->bih->biWidth=width; | |
122 mux_v->bih->biHeight=height; | |
123 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
124 | |
125 memset(&lavc_venc_context, 0, sizeof(lavc_venc_context)); | |
126 | |
127 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", | |
128 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, | |
129 (char *)&mux_v->bih->biCompression); | |
130 | |
131 lavc_venc_context.width = width; | |
132 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
|
133 if (lavc_param_vbitrate > 16000) /* != -1 */ |
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
134 lavc_venc_context.bit_rate = lavc_param_vbitrate; |
a21cab74cde8
bitrate>16000 means bits not kbits - noticed by George Hawkins <george_hawkins@yahoo.com>
arpi
parents:
5657
diff
changeset
|
135 else if (lavc_param_vbitrate >= 0) /* != -1 */ |
5550 | 136 lavc_venc_context.bit_rate = lavc_param_vbitrate*1000; |
137 else | |
138 lavc_venc_context.bit_rate = 800000; /* default */ | |
139 lavc_venc_context.bit_rate_tolerance= lavc_param_vrate_tolerance*1000; | |
140 lavc_venc_context.frame_rate = (float)mux_v->h.dwRate/mux_v->h.dwScale * FRAME_RATE_BASE; | |
141 lavc_venc_context.qmin= lavc_param_vqmin; | |
142 lavc_venc_context.qmax= lavc_param_vqmax; | |
143 lavc_venc_context.max_qdiff= lavc_param_vqdiff; | |
144 lavc_venc_context.qcompress= lavc_param_vqcompress; | |
145 lavc_venc_context.qblur= lavc_param_vqblur; | |
5657
ee2efbf3dc9d
Preliminary support for lavcs b-frame encoding, disabled by default.
atmos4
parents:
5646
diff
changeset
|
146 lavc_venc_context.max_b_frames= lavc_param_vmax_b_frames; |
5778 | 147 lavc_venc_context.b_quant_factor= lavc_param_vb_qfactor; |
148 lavc_venc_context.rc_strategy= lavc_param_vrc_strategy; | |
149 lavc_venc_context.b_frame_strategy= lavc_param_vb_strategy; | |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
150 |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
151 #ifdef CODEC_FLAG_PART |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
152 lavc_venc_context.b_quant_offset= lavc_param_vb_qoffset; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
153 lavc_venc_context.luma_elim_threshold= lavc_param_luma_elim_threshold; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
154 lavc_venc_context.chroma_elim_threshold= lavc_param_chroma_elim_threshold; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
155 lavc_venc_context.rtp_payload_size= lavc_param_packet_size; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
156 if(lavc_param_packet_size )lavc_venc_context.rtp_mode=1; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
157 lavc_venc_context.strict_std_compliance= lavc_param_strict; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
158 #endif |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
159 |
5550 | 160 /* keyframe interval */ |
161 if (lavc_param_keyint >= 0) /* != -1 */ | |
162 lavc_venc_context.gop_size = lavc_param_keyint; | |
163 else | |
164 lavc_venc_context.gop_size = 250; /* default */ | |
165 | |
166 if (lavc_param_vhq) | |
167 { | |
168 printf("High quality encoding selected (non real time)!\n"); | |
169 lavc_venc_context.flags = CODEC_FLAG_HQ; | |
170 } | |
171 else | |
172 lavc_venc_context.flags = 0; | |
173 | |
5781
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
174 /* 4mv is currently buggy with B frames */ |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
175 if (lavc_param_vmax_b_frames > 0 && lavc_param_v4mv) { |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
176 printf("4MV with B-Frames not yet supported -> 4MV disabled\n"); |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
177 lavc_param_v4mv = 0; |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
178 } |
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
179 |
5550 | 180 lavc_venc_context.flags|= lavc_param_v4mv ? CODEC_FLAG_4MV : 0; |
6228
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
181 #ifdef CODEC_FLAG_PART |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
182 lavc_venc_context.flags|= lavc_param_data_partitioning; |
ea6b20e70ac5
new options to support Michael's libavcodec patch, #ifdefed
arpi
parents:
5977
diff
changeset
|
183 #endif |
6461 | 184 #if LIBAVCODEC_BUILD >= 4614 |
185 if(lavc_param_gray) lavc_venc_context.flags|= CODEC_FLAG_GRAY; | |
186 #endif | |
187 | |
5550 | 188 |
5778 | 189 /* lavc internal 2pass bitrate control */ |
6673 | 190 #ifdef HAVE_DIVX4ENCORE |
191 switch(lavc_param_vpass){ | |
192 #else | |
193 switch(lavc_param_vpass?lavc_param_vpass:pass){ | |
194 #endif | |
195 case 1: lavc_venc_context.flags|= CODEC_FLAG_PASS1; break; | |
196 case 2: lavc_venc_context.flags|= CODEC_FLAG_PASS2; break; | |
197 } | |
5778 | 198 |
5624 | 199 #ifdef ME_ZERO |
200 // workaround Juanjo's stupid incompatible change: | |
5550 | 201 motion_estimation_method = lavc_param_vme; |
5624 | 202 #else |
203 lavc_venc_context.me_method = ME_ZERO+lavc_param_vme; | |
204 #endif | |
5550 | 205 |
206 /* fixed qscale :p */ | |
207 if (lavc_param_vqscale) | |
208 { | |
209 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale); | |
210 lavc_venc_context.flags |= CODEC_FLAG_QSCALE; | |
211 lavc_venc_context.quality = lavc_param_vqscale; | |
212 } | |
213 | |
6673 | 214 #ifdef HAVE_DIVX4ENCORE |
5550 | 215 switch(pass){ |
216 case 1: | |
217 if (VbrControl_init_2pass_vbr_analysis(passtmpfile, 5) == -1){ | |
218 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
219 pass=0; | |
5781
62e9e0c0bd6a
hq mode in first pass should work (as bad, ehh as well as LQ)
michael
parents:
5778
diff
changeset
|
220 } |
5550 | 221 break; |
222 case 2: | |
223 if (VbrControl_init_2pass_vbr_encoding(passtmpfile, | |
224 lavc_venc_context.bit_rate, | |
225 (float)mux_v->h.dwRate/mux_v->h.dwScale, | |
226 100, /* crispness */ | |
227 5) == -1){ | |
228 mp_msg(MSGT_MENCODER,MSGL_ERR,"2pass failed: filename=%s\n", passtmpfile); | |
229 pass=0; | |
5632 | 230 } else |
231 lavc_venc_context.flags|=CODEC_FLAG_QSCALE|CODEC_FLAG_TYPE; // VBR | |
5550 | 232 break; |
233 } | |
6673 | 234 #endif |
5550 | 235 |
236 if (avcodec_open(&lavc_venc_context, vf->priv->codec) != 0) { | |
237 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec); | |
238 return 0; | |
239 } | |
240 | |
241 if (lavc_venc_context.codec->encode == NULL) { | |
242 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n"); | |
243 return 0; | |
244 } | |
245 | |
246 return 1; | |
247 } | |
248 | |
249 static int control(struct vf_instance_s* vf, int request, void* data){ | |
250 | |
251 return CONTROL_UNKNOWN; | |
252 } | |
253 | |
254 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
255 switch(fmt){ | |
256 case IMGFMT_YV12: | |
257 case IMGFMT_IYUV: | |
258 case IMGFMT_I420: | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5556
diff
changeset
|
259 return VFCAP_CSP_SUPPORTED | VFCAP_ACCEPT_STRIDE; |
5550 | 260 } |
261 return 0; | |
262 } | |
263 | |
264 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
265 int out_size; | |
266 AVPicture lavc_venc_picture; | |
267 | |
268 lavc_venc_picture.data[0]=mpi->planes[0]; | |
269 lavc_venc_picture.data[1]=mpi->planes[1]; | |
270 lavc_venc_picture.data[2]=mpi->planes[2]; | |
271 lavc_venc_picture.linesize[0]=mpi->stride[0]; | |
272 lavc_venc_picture.linesize[1]=mpi->stride[1]; | |
273 lavc_venc_picture.linesize[2]=mpi->stride[2]; | |
274 | |
6673 | 275 #ifdef HAVE_DIVX4ENCORE |
5550 | 276 if(pass==2){ // handle 2-pass: |
277 lavc_venc_context.flags|=CODEC_FLAG_QSCALE; // enable VBR | |
278 lavc_venc_context.quality=VbrControl_get_quant(); | |
279 lavc_venc_context.key_frame=VbrControl_get_intra(); | |
280 lavc_venc_context.gop_size=0x3fffffff; | |
281 out_size = avcodec_encode_video(&lavc_venc_context, mux_v->buffer, mux_v->buffer_size, | |
282 &lavc_venc_picture); | |
283 VbrControl_update_2pass_vbr_encoding(lavc_venc_context.mv_bits, | |
284 lavc_venc_context.i_tex_bits+lavc_venc_context.p_tex_bits, | |
285 8*out_size); | |
6673 | 286 } else |
287 #endif | |
288 { | |
5550 | 289 out_size = avcodec_encode_video(&lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
290 &lavc_venc_picture); | |
6673 | 291 #ifdef HAVE_DIVX4ENCORE |
5550 | 292 if(pass==1){ |
293 VbrControl_update_2pass_vbr_analysis(lavc_venc_context.key_frame, | |
294 lavc_venc_context.mv_bits, | |
295 lavc_venc_context.i_tex_bits+lavc_venc_context.p_tex_bits, | |
296 8*out_size, lavc_venc_context.quality); | |
297 } | |
6673 | 298 #endif |
5550 | 299 } |
300 | |
301 mencoder_write_chunk(mux_v,out_size,lavc_venc_context.key_frame?0x10:0); | |
302 } | |
303 | |
5551 | 304 static void uninit(struct vf_instance_s* vf){ |
305 avcodec_close(&lavc_venc_context); | |
306 } | |
307 | |
5550 | 308 //===========================================================================// |
309 | |
310 static int vf_open(vf_instance_t *vf, char* args){ | |
5551 | 311 vf->uninit=uninit; |
5550 | 312 vf->config=config; |
313 vf->control=control; | |
314 vf->query_format=query_format; | |
315 vf->put_image=put_image; | |
316 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
317 memset(vf->priv,0,sizeof(struct vf_priv_s)); | |
318 vf->priv->mux=args; | |
319 | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
320 /* 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
|
321 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
|
322 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
|
323 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
|
324 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
325 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
|
326 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
|
327 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
|
328 } |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
329 else |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
330 { |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
331 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
332 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
|
333 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
334 } |
5550 | 335 mux_v->bih->biWidth=0; |
336 mux_v->bih->biHeight=0; | |
337 mux_v->bih->biPlanes=1; | |
338 mux_v->bih->biBitCount=24; | |
339 if (!lavc_param_vcodec) | |
340 { | |
5977
e8f6f477aad0
a hack to make ffmjpeg created files viewable with windows dlls too
alex
parents:
5972
diff
changeset
|
341 printf("No libavcodec codec specified! It's required!\n"); |
5550 | 342 return 0; |
343 } | |
344 | |
345 if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video")) | |
346 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); | |
347 else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p")) | |
348 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); | |
349 else if (!strcasecmp(lavc_param_vcodec, "rv10")) | |
350 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); | |
351 else if (!strcasecmp(lavc_param_vcodec, "mjpeg")) | |
352 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); | |
353 else if (!strcasecmp(lavc_param_vcodec, "mpeg4")) | |
354 mux_v->bih->biCompression = mmioFOURCC('D', 'I', 'V', 'X'); | |
355 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4")) | |
356 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); | |
5972 | 357 else if (!strcasecmp(lavc_param_vcodec, "msmpeg4v2")) |
358 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', '2'); | |
6461 | 359 else if (!strcasecmp(lavc_param_vcodec, "wmv1")) |
360 mux_v->bih->biCompression = mmioFOURCC('W', 'M', 'V', '1'); | |
5550 | 361 else |
362 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], | |
363 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ | |
364 | |
365 if (!avcodec_inited){ | |
366 avcodec_init(); | |
367 avcodec_register_all(); | |
368 avcodec_inited=1; | |
369 } | |
370 | |
371 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); | |
372 if (!vf->priv->codec) { | |
373 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, lavc_param_vcodec); | |
374 return 0; | |
375 } | |
376 | |
377 return 1; | |
378 } | |
379 | |
380 vf_info_t ve_info_lavc = { | |
381 "libavcodec encoder", | |
382 "lavc", | |
6673 | 383 "A'rpi, Alex, Michael", |
5550 | 384 "for internal use by mencoder", |
385 vf_open | |
386 }; | |
387 | |
388 //===========================================================================// | |
389 #endif |