Mercurial > mplayer.hg
annotate mencoder.c @ 4220:fe2c20d52a25
Fixed a few bugs and added support for VCD/DVD/TV in playlist using virtual url
like dvd://1 vcd://2 tv://5
author | albeu |
---|---|
date | Thu, 17 Jan 2002 20:24:28 +0000 |
parents | 1427d0f1f2d6 |
children | b0c8eed7473c |
rev | line source |
---|---|
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1 |
3384 | 2 #define VCODEC_COPY 0 |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
3 #define VCODEC_FRAMENO 1 |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
4 #define VCODEC_DIVX4 2 |
3480 | 5 #define VCODEC_RAW 3 |
3504
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
6 #define VCODEC_LIBAVCODEC 4 |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
7 |
3385 | 8 #define ACODEC_COPY 0 |
2583 | 9 #define ACODEC_PCM 1 |
10 #define ACODEC_VBRMP3 2 | |
2531 | 11 |
12 #include <stdio.h> | |
13 #include <stdlib.h> | |
14 #include <string.h> | |
15 #include <signal.h> | |
16 | |
2591 | 17 #include "config.h" |
2531 | 18 #include "mp_msg.h" |
2978 | 19 #include "version.h" |
2531 | 20 #include "help_mp.h" |
21 | |
2978 | 22 static char* banner_text= |
23 "\n\n" | |
24 "MEncoder " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS!)\n" | |
25 "\n"; | |
26 | |
3323 | 27 #include "cpudetect.h" |
28 | |
2531 | 29 #include "codec-cfg.h" |
30 | |
31 #include "stream.h" | |
32 #include "demuxer.h" | |
33 #include "stheader.h" | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
34 #include "playtree.h" |
2531 | 35 |
36 #include "aviwrite.h" | |
37 | |
2897 | 38 #ifdef USE_LIBVO2 |
39 #include "libvo2/libvo2.h" | |
40 #else | |
2531 | 41 #include "libvo/video_out.h" |
2897 | 42 #endif |
2531 | 43 |
2574 | 44 #include "dec_audio.h" |
45 #include "dec_video.h" | |
46 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
47 #ifdef HAVE_DIVX4ENCORE |
2531 | 48 #include <encore2.h> |
2643 | 49 #include "divx4_vbr.h" |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
50 #endif |
2531 | 51 |
3357 | 52 #ifdef HAVE_MP3LAME |
2591 | 53 #include <lame/lame.h> |
3357 | 54 #endif |
2583 | 55 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
56 #ifdef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
57 #ifdef USE_LIBAVCODEC_SO |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
58 #include <libffmpeg/avcodec.h> |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
59 #else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
60 #include "libavcodec/avcodec.h" |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
61 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
62 static AVCodec *lavc_venc_codec=NULL; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
63 static AVCodecContext lavc_venc_context; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
64 static AVPicture lavc_venc_picture; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
65 extern int avcodec_inited; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
66 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
67 char *lavc_param_vcodec = NULL; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
68 int lavc_param_vbitrate = -1; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
69 int lavc_param_vhq = 0; /* default is realtime encoding */ |
4207
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
70 int lavc_param_vme = 3; |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
71 int lavc_param_keyint = -1; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
72 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
73 |
3521 | 74 #ifdef HAVE_LIBCSS |
75 #include "libmpdemux/dvdauth.h" | |
76 #endif | |
77 | |
3236 | 78 #include <inttypes.h> |
79 #include "../postproc/swscale.h" | |
80 | |
3385 | 81 #include "fastmemcpy.h" |
82 | |
2583 | 83 //-------------------------- |
84 | |
2531 | 85 // cache2: |
2618 | 86 static int stream_cache_size=0; |
2531 | 87 #ifdef USE_STREAM_CACHE |
88 extern int cache_fill_status; | |
89 #else | |
90 #define cache_fill_status 0 | |
91 #endif | |
92 | |
2618 | 93 int vcd_track=0; |
94 int audio_id=-1; | |
95 int video_id=-1; | |
96 int dvdsub_id=-1; | |
97 | |
2531 | 98 char *audio_codec=NULL; // override audio codec |
99 char *video_codec=NULL; // override video codec | |
100 int audio_family=-1; // override audio codec family | |
101 int video_family=-1; // override video codec family | |
102 | |
3357 | 103 #ifdef HAVE_MP3LAME |
2661 | 104 int out_audio_codec=ACODEC_VBRMP3; |
3357 | 105 #else |
106 int out_audio_codec=ACODEC_PCM; | |
107 #endif | |
108 | |
2661 | 109 int out_video_codec=VCODEC_DIVX4; |
110 | |
2531 | 111 // audio stream skip/resync functions requires only for seeking. |
112 // (they should be implemented in the audio codec layer) | |
113 //void skip_audio_frame(sh_audio_t *sh_audio){} | |
114 //void resync_audio_stream(sh_audio_t *sh_audio){} | |
115 | |
2618 | 116 int verbose=0; // must be global! |
2531 | 117 |
118 double video_time_usage=0; | |
119 double vout_time_usage=0; | |
120 static double audio_time_usage=0; | |
121 static int total_time_usage_start=0; | |
122 static int benchmark=0; | |
123 | |
2605 | 124 // A-V sync: |
125 int delay_corrected=1; | |
126 static float default_max_pts_correction=-1;//0.01f; | |
127 static float max_pts_correction=0;//default_max_pts_correction; | |
128 static float c_total=0; | |
129 | |
2613 | 130 float force_fps=0; |
131 float force_ofps=0; // set to 24 for inverse telecine | |
2531 | 132 |
2618 | 133 int force_srate=0; |
134 | |
2626 | 135 char* out_filename="test.avi"; |
136 char* mp3_filename=NULL; | |
137 char* ac3_filename=NULL; | |
138 | |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
139 char *force_fourcc=NULL; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
140 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
141 #ifdef HAVE_DIVX4ENCORE |
2643 | 142 static int pass=0; |
143 static char* passtmpfile="divx2pass.log"; | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
144 int pass_working=0; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
145 #endif |
2643 | 146 |
147 static int play_n_frames=-1; | |
148 | |
2661 | 149 //char *out_audio_codec=NULL; // override audio codec |
150 //char *out_video_codec=NULL; // override video codec | |
2626 | 151 |
2591 | 152 //#include "libmpeg2/mpeg2.h" |
153 //#include "libmpeg2/mpeg2_internal.h" | |
154 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
155 #ifdef HAVE_DIVX4ENCORE |
2626 | 156 ENC_PARAM divx4_param; |
2643 | 157 int divx4_crispness=100; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
158 #endif |
2626 | 159 |
3357 | 160 #ifdef HAVE_MP3LAME |
2626 | 161 int lame_param_quality=0; // best |
162 int lame_param_vbr=vbr_default; | |
163 int lame_param_mode=-1; // unset | |
164 int lame_param_padding=-1; // unset | |
165 int lame_param_br=-1; // unset | |
166 int lame_param_ratio=-1; // unset | |
3357 | 167 #endif |
2626 | 168 |
3236 | 169 static int scale_srcW=0; |
170 static int scale_srcH=0; | |
171 static int vo_w=0, vo_h=0; | |
2618 | 172 //-------------------------- config stuff: |
173 | |
174 #include "cfgparser.h" | |
175 | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
176 m_config_t* mconfig; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
177 |
2618 | 178 static int cfg_inc_verbose(struct config *conf){ ++verbose; return 0;} |
179 | |
180 static int cfg_include(struct config *conf, char *filename){ | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
181 return m_config_parse_config_file(mconfig, filename); |
2618 | 182 } |
183 | |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
184 static int parse_end_at(struct config *conf, const char* param); |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
185 |
2618 | 186 #include "get_path.c" |
187 | |
188 #include "cfg-mplayer-def.h" | |
189 #include "cfg-mencoder.h" | |
190 | |
4088 | 191 #ifdef USE_DVDREAD |
192 #include "spudec.h" | |
193 #endif | |
194 | |
2591 | 195 //--------------------------------------------------------------------------- |
196 | |
197 // mini dummy libvo: | |
2531 | 198 |
199 static unsigned char* vo_image=NULL; | |
200 static unsigned char* vo_image_ptr=NULL; | |
201 | |
202 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h, int x0,int y0){ | |
203 int y; | |
3236 | 204 // printf("draw_slice %dx%d %d;%d\n",w,h,x0,y0); |
205 if(scale_srcW) | |
206 { | |
207 uint8_t* dstPtr[3]= { | |
208 vo_image, | |
209 vo_image + vo_w*vo_h*5/4, | |
210 vo_image + vo_w*vo_h}; | |
211 SwScale_YV12slice(src, stride, y0, h, dstPtr, vo_w, 12, scale_srcW, scale_srcH, vo_w, vo_h); | |
212 } | |
213 else | |
214 { | |
2531 | 215 // copy Y: |
216 for(y=0;y<h;y++){ | |
2639 | 217 unsigned char* s=src[0]+stride[0]*y; |
2531 | 218 unsigned char* d=vo_image+vo_w*(y0+y)+x0; |
219 memcpy(d,s,w); | |
220 } | |
221 x0>>=1;y0>>=1; | |
222 w>>=1;h>>=1; | |
223 // copy U: | |
224 for(y=0;y<h;y++){ | |
2639 | 225 unsigned char* s=src[2]+stride[2]*y; |
2531 | 226 unsigned char* d=vo_image+vo_w*vo_h+(vo_w>>1)*(y0+y)+x0; |
227 memcpy(d,s,w); | |
228 } | |
229 // copy V: | |
230 for(y=0;y<h;y++){ | |
2639 | 231 unsigned char* s=src[1]+stride[1]*y; |
2531 | 232 unsigned char* d=vo_image+vo_w*vo_h+vo_w*vo_h/4+(vo_w>>1)*(y0+y)+x0; |
233 memcpy(d,s,w); | |
234 } | |
3236 | 235 } // !swscaler |
2531 | 236 } |
237 | |
238 static uint32_t draw_frame(uint8_t *src[]){ | |
239 // printf("This function shouldn't be called - report bug!\n"); | |
240 // later: add YUY2->YV12 conversion here! | |
241 vo_image_ptr=src[0]; | |
242 } | |
243 | |
244 vo_functions_t video_out; | |
245 | |
2591 | 246 //--------------------------------------------------------------------------- |
247 | |
4088 | 248 void *vo_spudec=NULL; |
249 | |
250 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ | |
251 vo_draw_alpha_yv12(w,h,src,srca,stride,vo_image + vo_w * y0 + x0,vo_w); | |
252 } | |
253 | |
254 static void draw_sub(void) { | |
255 #ifdef USE_DVDREAD | |
256 if (vo_spudec) | |
257 spudec_draw_scaled(vo_spudec, vo_w, vo_h, draw_alpha); | |
258 #endif | |
259 } | |
260 | |
2591 | 261 int dec_audio(sh_audio_t *sh_audio,unsigned char* buffer,int total){ |
262 int size=0; | |
263 int eof=0; | |
264 while(size<total && !eof){ | |
265 int len=total-size; | |
266 if(len>MAX_OUTBURST) len=MAX_OUTBURST; | |
267 if(len>sh_audio->a_buffer_size) len=sh_audio->a_buffer_size; | |
268 if(len>sh_audio->a_buffer_len){ | |
269 int ret=decode_audio(sh_audio, | |
270 &sh_audio->a_buffer[sh_audio->a_buffer_len], | |
271 len-sh_audio->a_buffer_len, | |
272 sh_audio->a_buffer_size-sh_audio->a_buffer_len); | |
273 if(ret>0) sh_audio->a_buffer_len+=ret; else eof=1; | |
274 } | |
275 if(len>sh_audio->a_buffer_len) len=sh_audio->a_buffer_len; | |
276 memcpy(buffer+size,sh_audio->a_buffer,len); | |
277 sh_audio->a_buffer_len-=len; size+=len; | |
278 if(sh_audio->a_buffer_len>0) | |
279 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[len],sh_audio->a_buffer_len); | |
280 } | |
281 return size; | |
282 } | |
283 | |
284 //--------------------------------------------------------------------------- | |
2531 | 285 |
286 static int eof=0; | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
287 static int interrupted=0; |
2531 | 288 |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
289 enum end_at_type_t {END_AT_NONE, END_AT_TIME, END_AT_SIZE}; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
290 static enum end_at_type_t end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
291 static int end_at; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
292 |
2531 | 293 static void exit_sighandler(int x){ |
294 eof=1; | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
295 interrupted=1; |
2531 | 296 } |
297 | |
2618 | 298 int main(int argc,char* argv[], char *envp[]){ |
2531 | 299 |
300 stream_t* stream=NULL; | |
301 demuxer_t* demuxer=NULL; | |
302 demux_stream_t *d_audio=NULL; | |
303 demux_stream_t *d_video=NULL; | |
304 demux_stream_t *d_dvdsub=NULL; | |
305 sh_audio_t *sh_audio=NULL; | |
306 sh_video_t *sh_video=NULL; | |
307 int file_format=DEMUXER_TYPE_UNKNOWN; | |
308 int i; | |
309 unsigned int out_fmt; | |
310 | |
311 aviwrite_t* muxer=NULL; | |
312 aviwrite_stream_t* mux_a=NULL; | |
313 aviwrite_stream_t* mux_v=NULL; | |
314 FILE* muxer_f=NULL; | |
315 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
316 #ifdef HAVE_DIVX4ENCORE |
2531 | 317 ENC_FRAME enc_frame; |
318 ENC_RESULT enc_result; | |
319 void* enc_handle=NULL; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
320 #endif |
2531 | 321 |
3357 | 322 #ifdef HAVE_MP3LAME |
2591 | 323 lame_global_flags *lame; |
3357 | 324 #endif |
2583 | 325 |
2653 | 326 float audio_preload=0.5; |
2581 | 327 |
2613 | 328 double v_pts_corr=0; |
329 double v_timer_corr=0; | |
2605 | 330 |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
331 play_tree_t* playtree; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
332 play_tree_iter_t* playtree_iter; |
2618 | 333 char* filename=NULL; |
334 | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
335 int decoded_frameno=0; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
336 |
2531 | 337 //int out_buffer_size=0x200000; |
338 //unsigned char* out_buffer=malloc(out_buffer_size); | |
339 | |
2622 | 340 mp_msg_init(MSGL_STATUS); |
2978 | 341 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text); |
2622 | 342 |
343 // check codec.conf | |
344 if(!parse_codec_cfg(get_path("codecs.conf"))){ | |
3748 | 345 if(!parse_codec_cfg(CONFDIR"/codecs.conf")){ |
2622 | 346 mp_msg(MSGT_MENCODER,MSGL_HINT,MSGTR_CopyCodecsConf); |
347 exit(0); | |
348 } | |
349 } | |
2531 | 350 |
3323 | 351 /* Test for cpu capabilities (and corresponding OS support) for optimizing */ |
352 #ifdef ARCH_X86 | |
353 GetCpuCaps(&gCpuCaps); | |
354 mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: Type: %d MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n", | |
355 gCpuCaps.cpuType,gCpuCaps.hasMMX,gCpuCaps.hasMMX2, | |
356 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt, | |
357 gCpuCaps.hasSSE, gCpuCaps.hasSSE2); | |
358 #endif | |
359 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
360 #ifdef HAVE_DIVX4ENCORE |
2643 | 361 // set some defaults, before parsing configfile/commandline: |
362 divx4_param.min_quantizer = 2; | |
363 divx4_param.max_quantizer = 31; | |
364 divx4_param.rc_period = 2000; | |
365 divx4_param.rc_reaction_period = 10; | |
366 divx4_param.rc_reaction_ratio = 20; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
367 #endif |
2643 | 368 |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
369 playtree = play_tree_new(); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
370 mconfig = m_config_new(playtree); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
371 m_config_register_options(mconfig,mencoder_opts); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
372 |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
373 if(m_config_parse_command_line(mconfig, argc, argv, envp) < 0) exit(1); // error parsing cmdline |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
374 playtree = play_tree_cleanup(playtree); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
375 if(playtree) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
376 playtree_iter = play_tree_iter_new(playtree,mconfig); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
377 if(playtree_iter) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
378 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
379 play_tree_iter_free(playtree_iter); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
380 playtree_iter = NULL; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
381 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
382 filename = play_tree_iter_get_file(playtree_iter,1); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
383 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
384 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
385 |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
386 if(!filename && !vcd_track && !dvd_title && !tv_param_on){ |
2618 | 387 printf("\nMissing filename!\n\n"); |
388 exit(1); | |
389 } | |
390 | |
2622 | 391 mp_msg_init(verbose+MSGL_STATUS); |
2600 | 392 |
2618 | 393 stream=open_stream(filename,vcd_track,&file_format); |
2531 | 394 |
395 if(!stream){ | |
396 printf("Cannot open file/device\n"); | |
397 exit(1); | |
398 } | |
399 | |
400 printf("success: format: %d data: 0x%X - 0x%X\n",file_format, (int)(stream->start_pos),(int)(stream->end_pos)); | |
401 | |
3563 | 402 if(stream_cache_size) stream_enable_cache(stream,stream_cache_size*1024,0,0); |
2531 | 403 |
3979 | 404 #ifdef HAVE_LIBCSS |
405 // current_module="libcss"; | |
406 if (dvdimportkey) { | |
407 if (dvd_import_key(dvdimportkey)) { | |
408 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorDVDkey); | |
409 exit(1); | |
410 } | |
411 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CmdlineDVDkey); | |
412 } | |
413 if (dvd_auth_device) { | |
414 // if (dvd_auth(dvd_auth_device,f)) { | |
415 if (dvd_auth(dvd_auth_device,filename)) { | |
416 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Error in DVD auth...\n"); | |
417 exit(1); | |
418 } | |
419 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_DVDauthOk); | |
420 } | |
421 #endif | |
422 | |
2882 | 423 //demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id); |
424 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id); | |
2531 | 425 if(!demuxer){ |
426 printf("Cannot open demuxer\n"); | |
427 exit(1); | |
428 } | |
429 | |
430 d_audio=demuxer->audio; | |
431 d_video=demuxer->video; | |
432 d_dvdsub=demuxer->sub; | |
433 sh_audio=d_audio->sh; | |
434 sh_video=d_video->sh; | |
435 | |
436 if(!video_read_properties(sh_video)){ | |
437 printf("Couldn't read video properties\n"); | |
438 exit(1); | |
439 } | |
440 | |
2622 | 441 mp_msg(MSGT_MENCODER,MSGL_INFO,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", |
2531 | 442 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h, |
443 sh_video->fps,sh_video->frametime | |
444 ); | |
445 | |
446 | |
447 sh_video->codec=NULL; | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
448 if(out_video_codec>1){ |
2884 | 449 |
2622 | 450 if(video_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceVideoFmt,video_family); |
3712 | 451 { /* local vars */ |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
452 short bestprio=-1; |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
453 struct codecs_st *bestcodec=NULL; |
2531 | 454 while(1){ |
455 sh_video->codec=find_codec(sh_video->format, | |
456 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0); | |
457 if(!sh_video->codec){ | |
458 if(video_family!=-1) { | |
3712 | 459 //sh_video->codec=NULL; /* re-search */ |
2622 | 460 mp_msg(MSGT_MENCODER,MSGL_WARN,MSGTR_CantFindVfmtFallback); |
2531 | 461 video_family=-1; |
462 continue; | |
463 } | |
3712 | 464 if(bestprio==-1 || !video_codec) { |
465 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindVideoCodec,sh_video->format); | |
466 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
467 exit(1); | |
468 } | |
469 } else { | |
470 if(video_codec && strcmp(sh_video->codec->name,video_codec)) continue; | |
471 else if(video_family!=-1 && sh_video->codec->driver!=video_family) continue; | |
472 else if(video_family==-1 && !video_codec && sh_video->codec->priority) { | |
473 if(sh_video->codec->priority > bestprio) { | |
474 //printf("\n\n!!! setting bestprio from %d to %d for %s!!!\n\n", bestprio, sh_video->codec->priority, sh_video->codec->name); | |
475 bestprio=sh_video->codec->priority; | |
476 bestcodec=sh_video->codec; | |
477 } | |
478 continue; | |
479 } | |
480 } /* sh_video->codec */ | |
2531 | 481 break; |
482 } | |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
483 if(bestprio!=-1) { |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
484 //printf("chose codec %s by priority.\n", bestcodec->name); |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
485 sh_video->codec=bestcodec; |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
486 } |
2531 | 487 |
3712 | 488 } /* end local vars */ |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
489 |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
490 mp_msg(MSGT_MENCODER,MSGL_INFO,"%s video codec: [%s] drv:%d prio:%d (%s)\n",video_codec?"Forcing":"Detected",sh_video->codec->name,sh_video->codec->driver,sh_video->codec->priority!=-1?sh_video->codec->priority:0,sh_video->codec->info); |
2531 | 491 |
492 for(i=0;i<CODECS_MAX_OUTFMT;i++){ | |
493 out_fmt=sh_video->codec->outfmt[i]; | |
494 if(out_fmt==0xFFFFFFFF) continue; | |
3504
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
495 if(IMGFMT_IS_RGB(out_fmt) || IMGFMT_IS_BGR(out_fmt)) break; |
2531 | 496 if(out_fmt==IMGFMT_YV12) break; |
497 if(out_fmt==IMGFMT_I420) break; | |
498 if(out_fmt==IMGFMT_IYUV) break; | |
499 if(out_fmt==IMGFMT_YUY2) break; | |
2825 | 500 if(out_fmt==IMGFMT_UYVY) break; |
2531 | 501 } |
502 if(i>=CODECS_MAX_OUTFMT){ | |
2622 | 503 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_VOincompCodec); |
2531 | 504 exit(1); // exit_player(MSGTR_Exit_error); |
505 } | |
506 sh_video->outfmtidx=i; | |
507 | |
3240 | 508 if(out_fmt==IMGFMT_YV12 && (vo_w!=0 || vo_h!=0)) |
3236 | 509 { |
510 scale_srcW= sh_video->disp_w; | |
511 scale_srcH= sh_video->disp_h; | |
3240 | 512 if(!vo_w) vo_w=sh_video->disp_w; |
513 if(!vo_h) vo_h=sh_video->disp_h; | |
3236 | 514 } |
515 else | |
516 { | |
517 vo_w=sh_video->disp_w; | |
518 vo_h=sh_video->disp_h; | |
519 } | |
520 | |
2531 | 521 if(out_fmt==IMGFMT_YV12 || out_fmt==IMGFMT_I420 || out_fmt==IMGFMT_IYUV){ |
522 vo_image=malloc(vo_w*vo_h*3/2); | |
523 vo_image_ptr=vo_image; | |
524 } | |
525 | |
3504
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
526 if (IMGFMT_IS_BGR(out_fmt)) |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
527 vo_image_ptr = vo_image = malloc(vo_w*vo_h*IMGFMT_BGR_DEPTH(out_fmt)/8); |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
528 |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
529 if (IMGFMT_IS_RGB(out_fmt)) |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
530 vo_image_ptr = vo_image = malloc(vo_w*vo_h*IMGFMT_RGB_DEPTH(out_fmt)/8); |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
531 |
2531 | 532 if(!init_video(sh_video)){ |
2622 | 533 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_CouldntInitVideoCodec); |
2531 | 534 exit(1); |
535 } | |
536 | |
2884 | 537 } // if(out_video_codec) |
2581 | 538 |
539 if(sh_audio){ | |
540 // Go through the codec.conf and find the best codec... | |
541 sh_audio->codec=NULL; | |
2622 | 542 if(audio_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceAudioFmt,audio_family); |
2581 | 543 while(1){ |
544 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); | |
545 if(!sh_audio->codec){ | |
546 if(audio_family!=-1) { | |
547 sh_audio->codec=NULL; /* re-search */ | |
2622 | 548 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAfmtFallback); |
2581 | 549 audio_family=-1; |
550 continue; | |
551 } | |
2622 | 552 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAudioCodec,sh_audio->format); |
553 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
2581 | 554 sh_audio=d_audio->sh=NULL; |
555 break; | |
556 } | |
557 if(audio_codec && strcmp(sh_audio->codec->name,audio_codec)) continue; | |
558 else if(audio_family!=-1 && sh_audio->codec->driver!=audio_family) continue; | |
2622 | 559 mp_msg(MSGT_MENCODER,MSGL_INFO,"%s audio codec: [%s] drv:%d (%s)\n",audio_codec?"Forcing":"Detected",sh_audio->codec->name,sh_audio->codec->driver,sh_audio->codec->info); |
2581 | 560 break; |
561 } | |
562 } | |
563 | |
564 if(sh_audio){ | |
2622 | 565 mp_msg(MSGT_MENCODER,MSGL_V,"Initializing audio codec...\n"); |
2581 | 566 if(!init_audio(sh_audio)){ |
2622 | 567 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CouldntInitAudioCodec); |
2581 | 568 sh_audio=d_audio->sh=NULL; |
569 } else { | |
2622 | 570 mp_msg(MSGT_MENCODER,MSGL_INFO,"AUDIO: srate=%d chans=%d bps=%d sfmt=0x%X ratio: %d->%d\n",sh_audio->samplerate,sh_audio->channels,sh_audio->samplesize, |
2581 | 571 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); |
572 } | |
573 } | |
574 | |
575 | |
576 | |
2531 | 577 // set up video encoder: |
3236 | 578 SwScale_Init(); |
2531 | 579 video_out.draw_slice=draw_slice; |
580 video_out.draw_frame=draw_frame; | |
581 | |
4088 | 582 #ifdef USE_DVDREAD |
583 vo_spudec=spudec_new_scaled(stream->priv?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL, | |
584 sh_video->disp_w, sh_video->disp_h); | |
585 #endif | |
586 | |
2531 | 587 // set up output file: |
2626 | 588 muxer_f=fopen(out_filename,"wb"); |
2887
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
589 if(!muxer_f) { |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
590 printf("Cannot open output file '%s'\n", out_filename); |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
591 exit(1); |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
592 } |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
593 |
2531 | 594 muxer=aviwrite_new_muxer(); |
2581 | 595 |
596 // ============= VIDEO =============== | |
597 | |
2531 | 598 mux_v=aviwrite_new_stream(muxer,AVIWRITE_TYPE_VIDEO); |
599 | |
600 mux_v->buffer_size=0x200000; | |
601 mux_v->buffer=malloc(mux_v->buffer_size); | |
602 | |
603 mux_v->source=sh_video; | |
604 | |
605 mux_v->h.dwSampleSize=0; // VBR | |
606 mux_v->h.dwScale=10000; | |
2613 | 607 mux_v->h.dwRate=mux_v->h.dwScale*(force_ofps?force_ofps:sh_video->fps); |
2531 | 608 |
2661 | 609 mux_v->codec=out_video_codec; |
2574 | 610 |
2531 | 611 switch(mux_v->codec){ |
3384 | 612 case VCODEC_COPY: |
613 printf("sh_video->bih: %x\n", sh_video->bih); | |
614 if (sh_video->bih) | |
615 mux_v->bih=sh_video->bih; | |
616 else | |
617 { | |
618 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
619 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
620 mux_v->bih->biWidth=sh_video->disp_w; | |
621 mux_v->bih->biHeight=sh_video->disp_h; | |
622 mux_v->bih->biCompression=sh_video->format; | |
623 mux_v->bih->biPlanes=1; | |
624 mux_v->bih->biBitCount=24; // FIXME!!! | |
625 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
626 } | |
627 printf("videocodec: framecopy (%dx%d %dbpp fourcc=%x)\n", | |
628 mux_v->bih->biWidth, mux_v->bih->biHeight, | |
629 mux_v->bih->biBitCount, mux_v->bih->biCompression); | |
2531 | 630 break; |
3480 | 631 case VCODEC_RAW: |
632 printf("sh_video->bih: %x\n", sh_video->bih); | |
633 if (sh_video->bih) | |
634 mux_v->bih=sh_video->bih; | |
635 else | |
636 { | |
637 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
638 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
639 mux_v->bih->biWidth=sh_video->disp_w; | |
640 mux_v->bih->biHeight=sh_video->disp_h; | |
641 mux_v->bih->biCompression=0; | |
642 mux_v->bih->biPlanes=1; | |
643 mux_v->bih->biBitCount=24; // FIXME!!! | |
644 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
645 } | |
646 mux_v->bih->biCompression=0; | |
647 printf("videocodec: raw (%dx%d %dbpp fourcc=%x)\n", | |
648 mux_v->bih->biWidth, mux_v->bih->biHeight, | |
649 mux_v->bih->biBitCount, mux_v->bih->biCompression); | |
650 break; | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
651 case VCODEC_FRAMENO: |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
652 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
653 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
654 mux_v->bih->biWidth=vo_w; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
655 mux_v->bih->biHeight=vo_h; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
656 mux_v->bih->biPlanes=1; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
657 mux_v->bih->biBitCount=24; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
658 mux_v->bih->biCompression=mmioFOURCC('F','r','N','o'); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
659 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
660 break; |
2531 | 661 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
662 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
663 printf("No support for Divx4 encore compiled in\n"); |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
664 return 0; /* FIXME */ |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
665 #else |
2531 | 666 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
667 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
3236 | 668 mux_v->bih->biWidth=vo_w; |
669 mux_v->bih->biHeight=vo_h; | |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
670 mux_v->bih->biPlanes=1; |
2531 | 671 mux_v->bih->biBitCount=24; |
672 mux_v->bih->biCompression=mmioFOURCC('d','i','v','x'); | |
673 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
674 |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
675 if (pass) |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
676 printf("Divx: 2-pass logfile: %s\n", passtmpfile); |
2531 | 677 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
678 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
679 case VCODEC_LIBAVCODEC: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
680 #ifndef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
681 printf("No support for FFmpeg's libavcodec compiled in\n"); |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
682 return 0; /* FIXME */ |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
683 #else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
684 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
685 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
686 mux_v->bih->biWidth=vo_w; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
687 mux_v->bih->biHeight=vo_h; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
688 mux_v->bih->biPlanes=1; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
689 mux_v->bih->biBitCount=24; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
690 mux_v->bih->biCompression=mmioFOURCC(lavc_param_vcodec[0], |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
691 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
692 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
693 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
694 printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
695 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
696 &mux_v->bih->biCompression); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
697 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
698 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
699 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
700 /* force output fourcc to .. */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
701 if (force_fourcc != NULL) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
702 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
703 mux_v->bih->biCompression = mmioFOURCC(force_fourcc[0], force_fourcc[1], |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
704 force_fourcc[2], force_fourcc[3]); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
705 printf("Forcing output fourcc to %x [%.4s]\n", |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
706 mux_v->bih->biCompression, &mux_v->bih->biCompression); |
2531 | 707 } |
708 | |
2581 | 709 // ============= AUDIO =============== |
710 if(sh_audio){ | |
711 | |
712 mux_a=aviwrite_new_stream(muxer,AVIWRITE_TYPE_AUDIO); | |
713 | |
714 mux_a->buffer_size=0x100000; //16384; | |
715 mux_a->buffer=malloc(mux_a->buffer_size); | |
716 | |
717 mux_a->source=sh_audio; | |
718 | |
2661 | 719 mux_a->codec=out_audio_codec; |
2581 | 720 |
721 switch(mux_a->codec){ | |
3385 | 722 case ACODEC_COPY: |
723 printf("sh_audio->wf: %x\n", sh_audio->wf); | |
2581 | 724 mux_a->h.dwSampleSize=sh_audio->audio.dwSampleSize; |
725 mux_a->h.dwScale=sh_audio->audio.dwScale; | |
726 mux_a->h.dwRate=sh_audio->audio.dwRate; | |
3385 | 727 if (sh_audio->wf) |
728 mux_a->wf=sh_audio->wf; | |
729 else | |
730 { | |
731 mux_a->wf = malloc(sizeof(WAVEFORMATEX)); | |
732 mux_a->wf->nBlockAlign = mux_a->h.dwSampleSize; | |
733 mux_a->wf->wFormatTag = sh_audio->sample_format; | |
734 mux_a->wf->nChannels = sh_audio->channels; | |
735 mux_a->wf->nSamplesPerSec = sh_audio->samplerate; | |
736 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec; | |
3480 | 737 mux_a->wf->wBitsPerSample = 16; // FIXME |
3385 | 738 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm |
739 } | |
740 printf("audiocodec: framecopy (format=%x chans=%d rate=%d bits=%d)\n", | |
741 mux_a->wf->wFormatTag, mux_a->wf->nChannels, mux_a->wf->nSamplesPerSec, | |
742 mux_a->wf->wBitsPerSample); | |
2581 | 743 break; |
2583 | 744 case ACODEC_PCM: |
745 printf("CBR PCM audio selected\n"); | |
746 mux_a->h.dwSampleSize=2*sh_audio->channels; | |
747 mux_a->h.dwScale=1; | |
748 mux_a->h.dwRate=sh_audio->samplerate; | |
749 mux_a->wf=malloc(sizeof(WAVEFORMATEX)); | |
750 mux_a->wf->nBlockAlign=mux_a->h.dwSampleSize; | |
751 mux_a->wf->wFormatTag=0x1; // PCM | |
752 mux_a->wf->nChannels=sh_audio->channels; | |
753 mux_a->wf->nSamplesPerSec=sh_audio->samplerate; | |
754 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec; | |
755 mux_a->wf->wBitsPerSample=16; | |
756 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm | |
757 break; | |
2581 | 758 case ACODEC_VBRMP3: |
3385 | 759 printf("MP3 audio selected\n"); |
2581 | 760 mux_a->h.dwSampleSize=0; // VBR |
2653 | 761 mux_a->h.dwScale=1152; // samples/frame |
2581 | 762 mux_a->h.dwRate=sh_audio->samplerate; |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
763 if(sizeof(MPEGLAYER3WAVEFORMAT)!=30) mp_msg(MSGT_MENCODER,MSGL_WARN,"sizeof(MPEGLAYER3WAVEFORMAT)==%d!=30, maybe broken C compiler?\n",sizeof(MPEGLAYER3WAVEFORMAT)); |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
764 mux_a->wf=malloc(sizeof(MPEGLAYER3WAVEFORMAT)); // should be 30 |
2581 | 765 mux_a->wf->wFormatTag=0x55; // MP3 |
766 mux_a->wf->nChannels=sh_audio->channels; | |
2639 | 767 mux_a->wf->nSamplesPerSec=force_srate?force_srate:sh_audio->samplerate; |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
768 mux_a->wf->nAvgBytesPerSec=192000/8; // FIXME! |
2653 | 769 mux_a->wf->nBlockAlign=1152; // requires for l3codeca.acm + WMP 6.4 |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
770 mux_a->wf->wBitsPerSample=0; //16; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
771 // from NaNdub: (requires for l3codeca.acm) |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
772 mux_a->wf->cbSize=12; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
773 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->wID=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
774 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->fdwFlags=2; |
2653 | 775 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nBlockSize=1152; // ??? |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
776 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nFramesPerBlock=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
777 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nCodecDelay=0; |
2581 | 778 break; |
779 } | |
780 } | |
781 | |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
782 printf("Writing AVI header...\n"); |
2531 | 783 aviwrite_write_header(muxer,muxer_f); |
784 | |
785 switch(mux_v->codec){ | |
3384 | 786 case VCODEC_COPY: |
3480 | 787 case VCODEC_RAW: |
2531 | 788 break; |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
789 case VCODEC_FRAMENO: |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
790 decoded_frameno=0; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
791 break; |
2531 | 792 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
793 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
794 printf("No support for Divx4 encore compiled in\n"); |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
795 return 0; /* FIXME */ |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
796 #else |
2531 | 797 // init divx4linux: |
3236 | 798 divx4_param.x_dim=vo_w; |
799 divx4_param.y_dim=vo_h; | |
2626 | 800 divx4_param.framerate=(float)mux_v->h.dwRate/mux_v->h.dwScale; |
801 if(!divx4_param.bitrate) divx4_param.bitrate=800000; | |
802 else if(divx4_param.bitrate<=16000) divx4_param.bitrate*=1000; | |
803 if(!divx4_param.quality) divx4_param.quality=5; // the quality of compression ( 1 - fastest, 5 - best ) | |
804 divx4_param.handle=NULL; | |
805 encore(NULL,ENC_OPT_INIT,&divx4_param,NULL); | |
806 enc_handle=divx4_param.handle; | |
2643 | 807 switch(out_fmt){ |
808 case IMGFMT_YV12: enc_frame.colorspace=ENC_CSP_YV12; break; | |
809 case IMGFMT_IYUV: | |
810 case IMGFMT_I420: enc_frame.colorspace=ENC_CSP_I420; break; | |
811 case IMGFMT_YUY2: enc_frame.colorspace=ENC_CSP_YUY2; break; | |
812 case IMGFMT_UYVY: enc_frame.colorspace=ENC_CSP_UYVY; break; | |
813 case IMGFMT_RGB24: | |
814 case IMGFMT_BGR24: | |
815 enc_frame.colorspace=ENC_CSP_RGB24; break; | |
816 default: | |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
817 mp_msg(MSGT_MENCODER,MSGL_ERR,"divx4: unsupported picture format (%s)!\n", |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
818 vo_format_name(out_fmt)); |
2643 | 819 } |
820 switch(pass){ | |
821 case 1: | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
822 if (VbrControl_init_2pass_vbr_analysis(passtmpfile, divx4_param.quality) == -1) |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
823 { |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
824 printf("2pass failed: filename=%s\n", passtmpfile); |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
825 pass_working = 0; |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
826 } |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
827 else |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
828 pass_working = 1; |
2643 | 829 break; |
830 case 2: | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
831 if (VbrControl_init_2pass_vbr_encoding(passtmpfile, |
2643 | 832 divx4_param.bitrate, |
833 divx4_param.framerate, | |
834 divx4_crispness, | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
835 divx4_param.quality) == -1) |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
836 { |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
837 printf("2pass failed: filename=%s\n", passtmpfile); |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
838 pass_working = 0; |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
839 } |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
840 else |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
841 pass_working = 1; |
2643 | 842 break; |
843 } | |
2531 | 844 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
845 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
846 case VCODEC_LIBAVCODEC: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
847 #ifndef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
848 printf("No support for FFmpeg's libavcodec compiled in\n"); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
849 #else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
850 if (!avcodec_inited) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
851 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
852 avcodec_init(); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
853 avcodec_register_all(); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
854 avcodec_inited=1; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
855 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
856 |
3702
e16996f5497d
supporting -ofps by lavc, using avcodec_find_encoder_by_name (latest libavcodec cvs)
alex
parents:
3693
diff
changeset
|
857 #if 0 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
858 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
859 extern AVCodec *first_avcodec; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
860 AVCodec *p = first_avcodec; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
861 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
862 lavc_venc_codec = NULL; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
863 while (p) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
864 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
865 if (p->encode != NULL && strcmp(lavc_param_vcodec, p->name) == 0) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
866 break; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
867 p = p->next; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
868 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
869 lavc_venc_codec = p; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
870 } |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
871 #else |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
872 /* XXX: implement this in avcodec (i will send a patch to ffmpeglist) -- alex */ |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
873 lavc_venc_codec = (AVCodec *)avcodec_find_encoder_by_name(lavc_param_vcodec); |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
874 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
875 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
876 if (!lavc_venc_codec) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
877 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
878 printf(MSGTR_MissingLAVCcodec, lavc_param_vcodec); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
879 return 0; /* FIXME */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
880 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
881 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
882 memset(&lavc_venc_context, 0, sizeof(lavc_venc_context)); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
883 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
884 // lavc_venc_context.width = mux_v->bih->biWidth; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
885 // lavc_venc_context.height = mux_v->bih->biHeight; |
3702
e16996f5497d
supporting -ofps by lavc, using avcodec_find_encoder_by_name (latest libavcodec cvs)
alex
parents:
3693
diff
changeset
|
886 /* scaling only for YV12 (and lavc supports only YV12 ;) */ |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
887 lavc_venc_context.width = vo_w; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
888 lavc_venc_context.height = vo_h; |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
889 if (lavc_param_vbitrate >= 0) /* != -1 */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
890 lavc_venc_context.bit_rate = lavc_param_vbitrate; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
891 else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
892 lavc_venc_context.bit_rate = 800000; /* default */ |
3702
e16996f5497d
supporting -ofps by lavc, using avcodec_find_encoder_by_name (latest libavcodec cvs)
alex
parents:
3693
diff
changeset
|
893 lavc_venc_context.frame_rate = (float)(force_ofps?force_ofps:sh_video->fps) * FRAME_RATE_BASE; |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
894 /* keyframe interval */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
895 if (lavc_param_keyint >= 0) /* != -1 */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
896 lavc_venc_context.gop_size = lavc_param_keyint; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
897 else |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
898 lavc_venc_context.gop_size = 250; /* default */ |
3693 | 899 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
900 /* ignored by libavcodec? */ |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
901 if (lavc_param_vhq) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
902 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
903 printf("High quality encoding selected (non real time)!\n"); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
904 lavc_venc_context.flags = CODEC_FLAG_HQ; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
905 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
906 else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
907 lavc_venc_context.flags = 0; |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
908 |
4207
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
909 /* motion estimation (0 = none ... 3 = high quality but slow) */ |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
910 /* this is just an extern from libavcodec but it should be in the |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
911 encoder context - FIXME */ |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
912 motion_estimation_method = lavc_param_vme; |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
913 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
914 #if 0 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
915 /* fixed qscale :p */ |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
916 lavc_venc_context.flags |= CODEC_FLAG_QSCALE; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
917 lavc_venc_context.quality = 1; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
918 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
919 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
920 if (avcodec_open(&lavc_venc_context, lavc_venc_codec) != 0) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
921 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
922 printf(MSGTR_CantOpenCodec); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
923 return 0; /* FIXME */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
924 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
925 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
926 if (lavc_venc_context.codec->encode == NULL) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
927 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
928 printf("avcodec init failed (ctx->codec->encode == NULL)!\n"); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
929 return 0; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
930 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
931 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
932 #if 1 |
3764
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
933 if (out_fmt != IMGFMT_YV12 && out_fmt != IMGFMT_I420) |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
934 { |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
935 printf("Not supported image format! (%s)\n", |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
936 vo_format_name(out_fmt)); |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
937 return 0; /* FIXME */ |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
938 } |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
939 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
940 memset(&lavc_venc_picture, 0, sizeof(lavc_venc_picture)); |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
941 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
942 { |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
943 int size = lavc_venc_context.width * lavc_venc_context.height; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
944 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
945 /* Y */ lavc_venc_picture.data[0] = vo_image_ptr; |
3764
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
946 if (out_fmt == IMGFMT_YV12) |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
947 { |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
948 /* U */ lavc_venc_picture.data[2] = lavc_venc_picture.data[0] + size; |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
949 /* V */ lavc_venc_picture.data[1] = lavc_venc_picture.data[2] + size/4; |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
950 } |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
951 else /* IMGFMT_I420 */ |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
952 { |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
953 /* U */ lavc_venc_picture.data[1] = lavc_venc_picture.data[0] + size; |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
954 /* V */ lavc_venc_picture.data[2] = lavc_venc_picture.data[1] + size/4; |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
955 } |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
956 lavc_venc_picture.linesize[0] = lavc_venc_context.width; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
957 lavc_venc_picture.linesize[1] = lavc_venc_context.width / 2; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
958 lavc_venc_picture.linesize[2] = lavc_venc_context.width / 2; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
959 } |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
960 #else |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
961 switch(out_fmt) |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
962 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
963 case IMGFMT_YV12: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
964 lavc_venc_context.pix_fmt = PIX_FMT_YUV420P; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
965 break; |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
966 #if 0 /* it's faulting :( -- libavcodec's bug! -- alex */ |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
967 case IMGFMT_YUY2: /* or UYVY */ |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
968 lavc_venc_context.pix_fmt = PIX_FMT_YUV422; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
969 break; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
970 case IMGFMT_BGR24: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
971 lavc_venc_context.pix_fmt = PIX_FMT_BGR24; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
972 break; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
973 case IMGFMT_RGB24: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
974 lavc_venc_context.pix_fmt = PIX_FMT_RGB24; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
975 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
976 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
977 default: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
978 printf("Not supported image format! (%s)\n", |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
979 vo_format_name(out_fmt)); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
980 return 0; /* FIXME */ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
981 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
982 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
983 printf("Using picture format: %s\n", vo_format_name(out_fmt)); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
984 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
985 memset(&lavc_venc_picture, 0, sizeof(lavc_venc_picture)); |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
986 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
987 printf("ahh: avpict_getsize=%d, vo_image_ptr=%d\n", avpicture_get_size(lavc_venc_context.pix_fmt, |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
988 lavc_venc_context.width, lavc_venc_context.height), |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
989 vo_h*vo_w*3/2); |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
990 |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
991 avpicture_fill(&lavc_venc_picture, vo_image_ptr, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
992 lavc_venc_context.pix_fmt, lavc_venc_context.width, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
993 lavc_venc_context.height); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
994 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
995 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
996 char buf[1024]; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
997 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
998 avcodec_string((char *)&buf[0], 1023, &lavc_venc_context, 1); |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
999 printf("%s\n", buf); |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1000 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1001 #endif |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1002 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1003 #endif |
2531 | 1004 } |
1005 | |
2600 | 1006 if(sh_audio) |
2583 | 1007 switch(mux_a->codec){ |
3357 | 1008 #ifdef HAVE_MP3LAME |
2583 | 1009 case ACODEC_VBRMP3: |
1010 | |
1011 lame=lame_init(); | |
2591 | 1012 lame_set_bWriteVbrTag(lame,0); |
2583 | 1013 lame_set_in_samplerate(lame,sh_audio->samplerate); |
1014 lame_set_num_channels(lame,mux_a->wf->nChannels); | |
2639 | 1015 lame_set_out_samplerate(lame,mux_a->wf->nSamplesPerSec); |
2626 | 1016 if(lame_param_vbr){ // VBR: |
1017 lame_set_VBR(lame,lame_param_vbr); // vbr mode | |
1018 lame_set_VBR_q(lame,lame_param_quality+1); // 1 = best vbr q 6=~128k | |
1019 if(lame_param_br>0) lame_set_VBR_mean_bitrate_kbps(lame,lame_param_br); | |
1020 } else { // CBR: | |
1021 lame_set_quality(lame,lame_param_quality); // 0 = best q | |
1022 if(lame_param_br>0) lame_set_brate(lame,lame_param_br); | |
1023 } | |
1024 if(lame_param_mode>=0) lame_set_mode(lame,lame_param_mode); // j-st | |
1025 if(lame_param_ratio>0) lame_set_compression_ratio(lame,lame_param_ratio); | |
2583 | 1026 lame_init_params(lame); |
2622 | 1027 if(verbose){ |
2626 | 1028 lame_print_config(lame); |
1029 lame_print_internals(lame); | |
2622 | 1030 } |
3357 | 1031 break; |
1032 #endif | |
2583 | 1033 |
1034 } | |
1035 | |
2531 | 1036 signal(SIGINT,exit_sighandler); // Interrupt from keyboard |
1037 signal(SIGQUIT,exit_sighandler); // Quit from keyboard | |
1038 signal(SIGTERM,exit_sighandler); // kill | |
1039 | |
1040 while(!eof){ | |
1041 | |
2571 | 1042 float frame_time=0; |
2531 | 1043 int blit_frame=0; |
1044 float a_pts=0; | |
1045 float v_pts=0; | |
2574 | 1046 unsigned char* start=NULL; |
1047 int in_size; | |
2613 | 1048 int skip_flag=0; // 1=skip -1=duplicate |
2531 | 1049 |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1050 if((end_at_type == END_AT_SIZE && end_at <= ftell(muxer_f)) || |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1051 (end_at_type == END_AT_TIME && end_at < sh_video->timer)) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1052 break; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1053 |
2643 | 1054 if(play_n_frames>=0){ |
1055 --play_n_frames; | |
1056 if(play_n_frames<0) break; | |
1057 } | |
1058 | |
2581 | 1059 if(sh_audio){ |
1060 // get audio: | |
2583 | 1061 while(mux_a->timer-audio_preload<mux_v->timer){ |
2653 | 1062 int len=0; |
2581 | 1063 if(mux_a->h.dwSampleSize){ |
2605 | 1064 // CBR - copy 0.5 sec of audio |
2583 | 1065 switch(mux_a->codec){ |
3385 | 1066 case ACODEC_COPY: // copy |
2583 | 1067 len=sh_audio->i_bps/2; |
1068 len/=mux_a->h.dwSampleSize;if(len<1) len=1; | |
1069 len*=mux_a->h.dwSampleSize; | |
1070 len=demux_read_data(sh_audio->ds,mux_a->buffer,len); | |
1071 break; | |
1072 case ACODEC_PCM: | |
1073 len=mux_a->h.dwSampleSize*(mux_a->h.dwRate/2); | |
2591 | 1074 len=dec_audio(sh_audio,mux_a->buffer,len); |
2583 | 1075 break; |
1076 } | |
2581 | 1077 } else { |
2605 | 1078 // VBR - encode/copy an audio frame |
1079 switch(mux_a->codec){ | |
3385 | 1080 case ACODEC_COPY: // copy |
1081 printf("VBR audio framecopy not yet implemented!\n"); | |
2605 | 1082 break; |
3357 | 1083 #ifdef HAVE_MP3LAME |
2605 | 1084 case ACODEC_VBRMP3: |
2591 | 1085 while(mux_a->buffer_len<4){ |
1086 unsigned char tmp[2304]; | |
1087 int len=dec_audio(sh_audio,tmp,2304); | |
1088 if(len<=0) break; // eof | |
1089 len=lame_encode_buffer_interleaved(lame, | |
1090 tmp,len/4, | |
1091 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
1092 if(len<0) break; // error | |
1093 mux_a->buffer_len+=len; | |
1094 } | |
1095 if(mux_a->buffer_len<4) break; | |
1096 len=mp_decode_mp3_header(mux_a->buffer); | |
2639 | 1097 //printf("%d\n",len); |
2591 | 1098 if(len<=0) break; // bad frame! |
1099 while(mux_a->buffer_len<len){ | |
1100 unsigned char tmp[2304]; | |
1101 int len=dec_audio(sh_audio,tmp,2304); | |
1102 if(len<=0) break; // eof | |
1103 len=lame_encode_buffer_interleaved(lame, | |
1104 tmp,len/4, | |
1105 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
1106 if(len<0) break; // error | |
1107 mux_a->buffer_len+=len; | |
1108 } | |
2605 | 1109 break; |
3357 | 1110 #endif |
2605 | 1111 } |
2581 | 1112 } |
2583 | 1113 if(len<=0) break; // EOF? |
1114 aviwrite_write_chunk(muxer,mux_a,muxer_f,len,0); | |
2655 | 1115 if(!mux_a->h.dwSampleSize && mux_a->timer>0) |
3354 | 1116 mux_a->wf->nAvgBytesPerSec=0.5f+(double)mux_a->size/mux_a->timer; // avg bps (VBR) |
2591 | 1117 if(mux_a->buffer_len>=len){ |
1118 mux_a->buffer_len-=len; | |
1119 memcpy(mux_a->buffer,mux_a->buffer+len,mux_a->buffer_len); | |
1120 } | |
2581 | 1121 } |
1122 } | |
1123 | |
1124 // get video frame! | |
1125 in_size=video_read_frame(sh_video,&frame_time,&start,force_fps); | |
1126 if(in_size<0){ eof=1; break; } | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1127 sh_video->timer+=frame_time; ++decoded_frameno; |
2613 | 1128 |
1129 v_timer_corr-=frame_time-(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
2531 | 1130 |
2613 | 1131 // check frame duplicate/drop: |
1132 | |
1133 if(v_timer_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
1134 v_timer_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1135 ++skip_flag; // skip | |
1136 } else | |
1137 while(v_timer_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
1138 v_timer_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1139 --skip_flag; // dup | |
1140 } | |
2531 | 1141 |
2613 | 1142 while( (v_pts_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag>0) |
1143 || (v_pts_corr<=-2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ){ | |
1144 v_pts_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1145 --skip_flag; // dup | |
1146 } | |
1147 if( (v_pts_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag<0) | |
1148 || (v_pts_corr>=2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ) | |
1149 if(skip_flag<=0){ // we can't skip more than 1 frame now | |
1150 v_pts_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1151 ++skip_flag; // skip | |
1152 } | |
1153 | |
4088 | 1154 #ifdef USE_DVDREAD |
1155 // DVD sub: | |
1156 if(vo_spudec){ | |
1157 unsigned char* packet=NULL; | |
1158 int len; | |
1159 while((len=ds_get_packet_sub(d_dvdsub,&packet))>0){ | |
1160 mp_msg(MSGT_MENCODER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f \n",len,d_video->pts,d_dvdsub->pts); | |
1161 spudec_assemble(vo_spudec,packet,len,100*d_dvdsub->pts); | |
1162 } | |
1163 spudec_heartbeat(vo_spudec,100*d_video->pts); | |
1164 } | |
1165 #endif | |
2613 | 1166 |
2531 | 1167 switch(mux_v->codec){ |
3384 | 1168 case VCODEC_COPY: |
2574 | 1169 mux_v->buffer=start; |
2639 | 1170 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,in_size,(sh_video->ds->flags&1)?0x10:0); |
2574 | 1171 break; |
3480 | 1172 case VCODEC_RAW: |
1173 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); | |
1174 if(skip_flag>0) break; | |
1175 if(!blit_frame){ | |
1176 // empty. | |
1177 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1178 break; | |
1179 } | |
1180 mux_v->buffer = vo_image_ptr; | |
1181 aviwrite_write_chunk(muxer,mux_v,muxer_f,mux_v->buffer_size,0x10); | |
1182 break; | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1183 case VCODEC_FRAMENO: |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1184 mux_v->buffer=&decoded_frameno; // tricky |
3363
1459912caea5
set all frames to keyframes for -ovc frameno - allow seeking in resulting audio-only avi
arpi
parents:
3362
diff
changeset
|
1185 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,sizeof(int),0x10); |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1186 break; |
2531 | 1187 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1188 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1189 printf("No support for Divx4 encore compiled in\n"); |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1190 return 0; /* FIXME */ |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1191 #else |
2574 | 1192 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); |
4088 | 1193 draw_sub(); |
2639 | 1194 if(skip_flag>0) break; |
2574 | 1195 if(!blit_frame){ |
1196 // empty. | |
1197 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1198 break; | |
1199 } | |
2531 | 1200 enc_frame.image=vo_image_ptr; |
1201 enc_frame.bitstream=mux_v->buffer; | |
1202 enc_frame.length=mux_v->buffer_size; | |
2643 | 1203 enc_frame.mvs=NULL; |
2531 | 1204 enc_frame.quant=0; |
1205 enc_frame.intra=0; | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1206 if(pass==2 && pass_working){ // handle 2-pass: |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1207 enc_frame.quant = VbrControl_get_quant(); |
2643 | 1208 enc_frame.intra = VbrControl_get_intra(); |
1209 encore(enc_handle,ENC_OPT_ENCODE_VBR,&enc_frame,&enc_result); | |
1210 VbrControl_update_2pass_vbr_encoding(enc_result.motion_bits, | |
1211 enc_result.texture_bits, | |
1212 enc_result.total_bits); | |
1213 } else { | |
1214 encore(enc_handle,ENC_OPT_ENCODE,&enc_frame,&enc_result); | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1215 if(pass==1 && pass_working){ |
2643 | 1216 VbrControl_update_2pass_vbr_analysis(enc_result.is_key_frame, |
1217 enc_result.motion_bits, | |
1218 enc_result.texture_bits, | |
1219 enc_result.total_bits, | |
1220 enc_result.quantizer); | |
1221 } | |
1222 } | |
1223 | |
2531 | 1224 // printf("encoding...\n"); |
1225 // printf(" len=%d key:%d qualt:%d \n",enc_frame.length,enc_result.is_key_frame,enc_result.quantizer); | |
1226 aviwrite_write_chunk(muxer,mux_v,muxer_f,enc_frame.length,enc_result.is_key_frame?0x10:0); | |
1227 break; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1228 #endif |
3657
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1229 case VCODEC_LIBAVCODEC: |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1230 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1231 #ifndef USE_LIBAVCODEC |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1232 printf("No support for FFmpeg's libavcodec compiled in\n"); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1233 #else |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1234 int out_size; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1235 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1236 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1237 if(skip_flag>0) break; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1238 if(!blit_frame){ |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1239 // empty. |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1240 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1241 break; |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1242 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1243 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1244 out_size = avcodec_encode_video(&lavc_venc_context, mux_v->buffer, mux_v->buffer_size, |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1245 &lavc_venc_picture); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1246 // printf("out_size = %d\n", out_size); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1247 aviwrite_write_chunk(muxer,mux_v,muxer_f,out_size,lavc_venc_context.key_frame?0x10:0); |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1248 #endif |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1249 } |
2531 | 1250 } |
2613 | 1251 |
1252 if(skip_flag<0){ | |
2605 | 1253 // duplicate frame |
2613 | 1254 printf("\nduplicate %d frame(s)!!! \n",-skip_flag); |
1255 while(skip_flag<0){ | |
1256 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1257 ++skip_flag; | |
1258 } | |
2639 | 1259 } else |
1260 if(skip_flag>0){ | |
2605 | 1261 // skip frame |
1262 printf("\nskip frame!!! \n"); | |
2613 | 1263 --skip_flag; |
2605 | 1264 } |
1265 | |
1266 if(sh_audio){ | |
1267 float AV_delay,x; | |
1268 // A-V sync! | |
1269 if(pts_from_bps){ | |
1270 unsigned int samples=(sh_audio->audio.dwSampleSize)? | |
1271 ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) : | |
1272 (d_audio->pack_no); // <- used for VBR audio | |
1273 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate; | |
1274 delay_corrected=1; | |
1275 } else { | |
1276 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) | |
1277 a_pts=d_audio->pts; | |
1278 if(!delay_corrected) if(a_pts) delay_corrected=1; | |
1279 //printf("*** %5.3f ***\n",a_pts); | |
1280 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; | |
1281 } | |
1282 v_pts=d_video->pts; | |
1283 // av = compensated (with out buffering delay) A-V diff | |
2613 | 1284 AV_delay=(a_pts-v_pts); AV_delay-=mux_a->timer-(mux_v->timer-(v_timer_corr+v_pts_corr)); |
2605 | 1285 // compensate input video timer by av: |
1286 x=AV_delay*0.1f; | |
1287 if(x<-max_pts_correction) x=-max_pts_correction; else | |
1288 if(x> max_pts_correction) x= max_pts_correction; | |
1289 if(default_max_pts_correction>=0) | |
1290 max_pts_correction=default_max_pts_correction; | |
1291 else | |
1292 max_pts_correction=sh_video->frametime*0.10; // +-10% of time | |
1293 // sh_video->timer-=x; | |
1294 c_total+=x; | |
2613 | 1295 v_pts_corr+=x; |
2605 | 1296 |
2613 | 1297 printf("A:%6.1f V:%6.1f A-V:%7.3f oAV:%7.3f diff:%7.3f ct:%7.3f vpc:%7.3f \r", |
2605 | 1298 a_pts,v_pts,a_pts-v_pts, |
1299 (float)(mux_a->timer-mux_v->timer), | |
2613 | 1300 AV_delay, c_total, v_pts_corr ); |
2605 | 1301 |
1302 } | |
1303 | |
1304 #if 0 | |
1305 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"A:%6.1f V:%6.1f A-V:%7.3f ct:%7.3f %3d/%3d %2d%% %2d%% %4.1f%% %d%%\r", | |
1306 a_pts,v_pts,a_pts-v_pts,c_total, | |
1307 (int)sh_video->num_frames,(int)sh_video->num_frames_decoded, | |
1308 (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0, | |
1309 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0, | |
1310 (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0 | |
1311 ,cache_fill_status | |
1312 ); | |
1313 #endif | |
1314 | |
1315 fflush(stdout); | |
1316 | |
2531 | 1317 |
1318 | |
1319 } // while(!eof) | |
1320 | |
3357 | 1321 #ifdef HAVE_MP3LAME |
1322 // fixup CBR mp3 audio header: | |
3354 | 1323 if(sh_audio && mux_a->codec==ACODEC_VBRMP3 && !lame_param_vbr){ |
1324 mux_a->h.dwSampleSize=1; | |
1325 mux_a->h.dwRate=mux_a->wf->nAvgBytesPerSec; | |
1326 mux_a->h.dwScale=1; | |
1327 printf("\n\nCBR audio effective bitrate: %8.3f kbit/s (%d bytes/sec)\n", | |
1328 mux_a->h.dwRate*8.0f/1000.0f,mux_a->h.dwRate); | |
1329 } | |
3357 | 1330 #endif |
3354 | 1331 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1332 #ifdef USE_LIBAVCODEC |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1333 if (mux_v->codec == VCODEC_LIBAVCODEC) |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1334 avcodec_close(&lavc_venc_context); |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1335 #endif |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1336 |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
1337 printf("\nWriting AVI index...\n"); |
2531 | 1338 aviwrite_write_index(muxer,muxer_f); |
2622 | 1339 printf("Fixup AVI header...\n"); |
2531 | 1340 fseek(muxer_f,0,SEEK_SET); |
1341 aviwrite_write_header(muxer,muxer_f); // update header | |
1342 fclose(muxer_f); | |
1343 | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1344 printf("\nVideo stream: %8.3f kbit/s (%d bps) size: %d bytes %5.3f secs\n", |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1345 (float)(mux_v->size/mux_v->timer*8.0f/1000.0f), (int)(mux_v->size/mux_v->timer), mux_v->size, (float)mux_v->timer); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1346 if(sh_audio) |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1347 printf("\nAudio stream: %8.3f kbit/s (%d bps) size: %d bytes %5.3f secs\n", |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1348 (float)(mux_a->size/mux_a->timer*8.0f/1000.0f), (int)(mux_a->size/mux_a->timer), mux_a->size, (float)mux_a->timer); |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1349 |
2618 | 1350 if(stream) free_stream(stream); // kill cache thread |
1351 | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
1352 return interrupted; |
2531 | 1353 } |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1354 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1355 static int parse_end_at(struct config *conf, const char* param) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1356 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1357 int i; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1358 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1359 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1360 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1361 /* End at size parsing */ |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1362 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1363 char unit[4]; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1364 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1365 end_at_type = END_AT_SIZE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1366 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1367 if(sscanf(param, "%d%3s", &end_at, unit) == 2) { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1368 if(!strcasecmp(unit, "b")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1369 ; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1370 else if(!strcasecmp(unit, "kb")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1371 end_at *= 1024; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1372 else if(!strcasecmp(unit, "mb")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1373 end_at *= 1024*1024; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1374 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1375 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1376 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1377 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1378 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1379 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1380 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1381 /* End at time parsing. This has to be last because of |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1382 * sscanf("%f", ...) below */ |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1383 if(end_at_type == END_AT_NONE) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1384 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1385 int a,b; float d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1386 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1387 end_at_type = END_AT_TIME; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1388 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1389 if (sscanf(param, "%d:%d:%f", &a, &b, &d) == 3) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1390 end_at = 3600*a + 60*b + d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1391 else if (sscanf(param, "%d:%f", &a, &d) == 2) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1392 end_at = 60*a + d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1393 else if (sscanf(param, "%f", &d) == 1) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1394 end_at = d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1395 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1396 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1397 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1398 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1399 if(end_at_type == END_AT_NONE) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1400 return ERR_FUNC_ERR; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1401 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1402 return 1; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1403 } |