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