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