Mercurial > mplayer.hg
annotate mencoder.c @ 3266:ff90589b635f
Fixed single buffering problems and -vo mga compatibility by number of buffers
author | nick |
---|---|
date | Sun, 02 Dec 2001 12:21:13 +0000 |
parents | fbdb14138675 |
children | ac8b70dd5e45 |
rev | line source |
---|---|
2531 | 1 |
2 #define VCODEC_DIVX4 1 | |
2583 | 3 #define ACODEC_PCM 1 |
4 #define ACODEC_VBRMP3 2 | |
2531 | 5 |
6 #include <stdio.h> | |
7 #include <stdlib.h> | |
8 #include <string.h> | |
9 #include <signal.h> | |
10 | |
2591 | 11 #include "config.h" |
2531 | 12 #include "mp_msg.h" |
2978 | 13 #include "version.h" |
2531 | 14 #include "help_mp.h" |
15 | |
2978 | 16 static char* banner_text= |
17 "\n\n" | |
18 "MEncoder " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS!)\n" | |
19 "\n"; | |
20 | |
2531 | 21 #include "codec-cfg.h" |
22 | |
23 #include "stream.h" | |
24 #include "demuxer.h" | |
25 #include "stheader.h" | |
26 | |
27 #include "aviwrite.h" | |
28 | |
2897 | 29 #ifdef USE_LIBVO2 |
30 #include "libvo2/libvo2.h" | |
31 #else | |
2531 | 32 #include "libvo/video_out.h" |
2897 | 33 #endif |
2531 | 34 |
2574 | 35 #include "dec_audio.h" |
36 #include "dec_video.h" | |
37 | |
2531 | 38 #include <encore2.h> |
2643 | 39 #include "divx4_vbr.h" |
2531 | 40 |
2591 | 41 #include <lame/lame.h> |
2583 | 42 |
3236 | 43 #include <inttypes.h> |
44 #include "../postproc/swscale.h" | |
45 | |
2583 | 46 //-------------------------- |
47 | |
2531 | 48 // cache2: |
2618 | 49 static int stream_cache_size=0; |
2531 | 50 #ifdef USE_STREAM_CACHE |
51 extern int cache_fill_status; | |
52 #else | |
53 #define cache_fill_status 0 | |
54 #endif | |
55 | |
2618 | 56 int vcd_track=0; |
57 int audio_id=-1; | |
58 int video_id=-1; | |
59 int dvdsub_id=-1; | |
60 | |
2531 | 61 char *audio_codec=NULL; // override audio codec |
62 char *video_codec=NULL; // override video codec | |
63 int audio_family=-1; // override audio codec family | |
64 int video_family=-1; // override video codec family | |
65 | |
2661 | 66 int out_audio_codec=ACODEC_VBRMP3; |
67 int out_video_codec=VCODEC_DIVX4; | |
68 | |
2531 | 69 // audio stream skip/resync functions requires only for seeking. |
70 // (they should be implemented in the audio codec layer) | |
71 //void skip_audio_frame(sh_audio_t *sh_audio){} | |
72 //void resync_audio_stream(sh_audio_t *sh_audio){} | |
73 | |
2618 | 74 int verbose=0; // must be global! |
2531 | 75 |
76 double video_time_usage=0; | |
77 double vout_time_usage=0; | |
78 static double audio_time_usage=0; | |
79 static int total_time_usage_start=0; | |
80 static int benchmark=0; | |
81 | |
2605 | 82 // A-V sync: |
83 int delay_corrected=1; | |
84 static float default_max_pts_correction=-1;//0.01f; | |
85 static float max_pts_correction=0;//default_max_pts_correction; | |
86 static float c_total=0; | |
87 | |
2613 | 88 float force_fps=0; |
89 float force_ofps=0; // set to 24 for inverse telecine | |
2531 | 90 |
2618 | 91 int force_srate=0; |
92 | |
2626 | 93 char* out_filename="test.avi"; |
94 char* mp3_filename=NULL; | |
95 char* ac3_filename=NULL; | |
96 | |
2643 | 97 static int pass=0; |
98 static char* passtmpfile="divx2pass.log"; | |
99 | |
100 static int play_n_frames=-1; | |
101 | |
2661 | 102 //char *out_audio_codec=NULL; // override audio codec |
103 //char *out_video_codec=NULL; // override video codec | |
2626 | 104 |
2591 | 105 //#include "libmpeg2/mpeg2.h" |
106 //#include "libmpeg2/mpeg2_internal.h" | |
107 | |
2626 | 108 ENC_PARAM divx4_param; |
2643 | 109 int divx4_crispness=100; |
2626 | 110 |
111 int lame_param_quality=0; // best | |
112 int lame_param_vbr=vbr_default; | |
113 int lame_param_mode=-1; // unset | |
114 int lame_param_padding=-1; // unset | |
115 int lame_param_br=-1; // unset | |
116 int lame_param_ratio=-1; // unset | |
117 | |
3236 | 118 static int scale_srcW=0; |
119 static int scale_srcH=0; | |
120 static int vo_w=0, vo_h=0; | |
2618 | 121 //-------------------------- config stuff: |
122 | |
123 #include "cfgparser.h" | |
124 | |
125 static int cfg_inc_verbose(struct config *conf){ ++verbose; return 0;} | |
126 | |
127 static int cfg_include(struct config *conf, char *filename){ | |
128 return parse_config_file(conf, filename); | |
129 } | |
130 | |
131 #include "get_path.c" | |
132 | |
133 #include "cfg-mplayer-def.h" | |
134 #include "cfg-mencoder.h" | |
135 | |
2591 | 136 //--------------------------------------------------------------------------- |
137 | |
2627 | 138 // dummy datas for gui :( |
139 | |
140 #ifdef HAVE_NEW_GUI | |
141 float rel_seek_secs=0; | |
142 int abs_seek_pos=0; | |
143 int use_gui=0; | |
144 | |
145 void exit_player(char* how){ | |
146 } | |
147 void vo_x11_putkey(int key){ | |
148 } | |
149 void vo_setwindow( int w,int g ) { | |
150 } | |
151 void vo_setwindowsize( int w,int h ) { | |
152 } | |
153 | |
154 int vo_resize = 0; | |
155 int vo_expose = 0; | |
156 | |
157 #endif | |
158 // --- | |
159 | |
2591 | 160 // mini dummy libvo: |
2531 | 161 |
162 static unsigned char* vo_image=NULL; | |
163 static unsigned char* vo_image_ptr=NULL; | |
164 | |
165 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h, int x0,int y0){ | |
166 int y; | |
3236 | 167 // printf("draw_slice %dx%d %d;%d\n",w,h,x0,y0); |
168 if(scale_srcW) | |
169 { | |
170 uint8_t* dstPtr[3]= { | |
171 vo_image, | |
172 vo_image + vo_w*vo_h*5/4, | |
173 vo_image + vo_w*vo_h}; | |
174 SwScale_YV12slice(src, stride, y0, h, dstPtr, vo_w, 12, scale_srcW, scale_srcH, vo_w, vo_h); | |
175 } | |
176 else | |
177 { | |
2531 | 178 // copy Y: |
179 for(y=0;y<h;y++){ | |
2639 | 180 unsigned char* s=src[0]+stride[0]*y; |
2531 | 181 unsigned char* d=vo_image+vo_w*(y0+y)+x0; |
182 memcpy(d,s,w); | |
183 } | |
184 x0>>=1;y0>>=1; | |
185 w>>=1;h>>=1; | |
186 // copy U: | |
187 for(y=0;y<h;y++){ | |
2639 | 188 unsigned char* s=src[2]+stride[2]*y; |
2531 | 189 unsigned char* d=vo_image+vo_w*vo_h+(vo_w>>1)*(y0+y)+x0; |
190 memcpy(d,s,w); | |
191 } | |
192 // copy V: | |
193 for(y=0;y<h;y++){ | |
2639 | 194 unsigned char* s=src[1]+stride[1]*y; |
2531 | 195 unsigned char* d=vo_image+vo_w*vo_h+vo_w*vo_h/4+(vo_w>>1)*(y0+y)+x0; |
196 memcpy(d,s,w); | |
197 } | |
3236 | 198 } // !swscaler |
2531 | 199 } |
200 | |
201 static uint32_t draw_frame(uint8_t *src[]){ | |
202 // printf("This function shouldn't be called - report bug!\n"); | |
203 // later: add YUY2->YV12 conversion here! | |
204 vo_image_ptr=src[0]; | |
205 } | |
206 | |
207 vo_functions_t video_out; | |
208 | |
2591 | 209 //--------------------------------------------------------------------------- |
210 | |
211 int dec_audio(sh_audio_t *sh_audio,unsigned char* buffer,int total){ | |
212 int size=0; | |
213 int eof=0; | |
214 while(size<total && !eof){ | |
215 int len=total-size; | |
216 if(len>MAX_OUTBURST) len=MAX_OUTBURST; | |
217 if(len>sh_audio->a_buffer_size) len=sh_audio->a_buffer_size; | |
218 if(len>sh_audio->a_buffer_len){ | |
219 int ret=decode_audio(sh_audio, | |
220 &sh_audio->a_buffer[sh_audio->a_buffer_len], | |
221 len-sh_audio->a_buffer_len, | |
222 sh_audio->a_buffer_size-sh_audio->a_buffer_len); | |
223 if(ret>0) sh_audio->a_buffer_len+=ret; else eof=1; | |
224 } | |
225 if(len>sh_audio->a_buffer_len) len=sh_audio->a_buffer_len; | |
226 memcpy(buffer+size,sh_audio->a_buffer,len); | |
227 sh_audio->a_buffer_len-=len; size+=len; | |
228 if(sh_audio->a_buffer_len>0) | |
229 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[len],sh_audio->a_buffer_len); | |
230 } | |
231 return size; | |
232 } | |
233 | |
234 //--------------------------------------------------------------------------- | |
2531 | 235 |
236 static int eof=0; | |
237 | |
238 static void exit_sighandler(int x){ | |
239 eof=1; | |
240 } | |
241 | |
2618 | 242 int main(int argc,char* argv[], char *envp[]){ |
2531 | 243 |
244 stream_t* stream=NULL; | |
245 demuxer_t* demuxer=NULL; | |
246 demux_stream_t *d_audio=NULL; | |
247 demux_stream_t *d_video=NULL; | |
248 demux_stream_t *d_dvdsub=NULL; | |
249 sh_audio_t *sh_audio=NULL; | |
250 sh_video_t *sh_video=NULL; | |
251 int file_format=DEMUXER_TYPE_UNKNOWN; | |
252 int i; | |
253 unsigned int out_fmt; | |
254 | |
255 aviwrite_t* muxer=NULL; | |
256 aviwrite_stream_t* mux_a=NULL; | |
257 aviwrite_stream_t* mux_v=NULL; | |
258 FILE* muxer_f=NULL; | |
259 | |
260 ENC_FRAME enc_frame; | |
261 ENC_RESULT enc_result; | |
262 void* enc_handle=NULL; | |
263 | |
2591 | 264 lame_global_flags *lame; |
2583 | 265 |
2653 | 266 float audio_preload=0.5; |
2581 | 267 |
2613 | 268 double v_pts_corr=0; |
269 double v_timer_corr=0; | |
2605 | 270 |
2618 | 271 char** filenames=NULL; |
272 char* filename=NULL; | |
273 int num_filenames; | |
274 | |
2531 | 275 //int out_buffer_size=0x200000; |
276 //unsigned char* out_buffer=malloc(out_buffer_size); | |
277 | |
2622 | 278 mp_msg_init(MSGL_STATUS); |
2978 | 279 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text); |
2622 | 280 |
281 // check codec.conf | |
282 if(!parse_codec_cfg(get_path("codecs.conf"))){ | |
283 if(!parse_codec_cfg(DATADIR"/codecs.conf")){ | |
284 mp_msg(MSGT_MENCODER,MSGL_HINT,MSGTR_CopyCodecsConf); | |
285 exit(0); | |
286 } | |
287 } | |
2531 | 288 |
2643 | 289 // set some defaults, before parsing configfile/commandline: |
290 divx4_param.min_quantizer = 2; | |
291 divx4_param.max_quantizer = 31; | |
292 divx4_param.rc_period = 2000; | |
293 divx4_param.rc_reaction_period = 10; | |
294 divx4_param.rc_reaction_ratio = 20; | |
295 | |
296 | |
2618 | 297 num_filenames=parse_command_line(conf, argc, argv, envp, &filenames); |
298 if(num_filenames<0) exit(1); // error parsing cmdline | |
299 if(!num_filenames && !vcd_track && !dvd_title){ | |
300 printf("\nMissing filename!\n\n"); | |
301 exit(1); | |
302 } | |
303 | |
2622 | 304 mp_msg_init(verbose+MSGL_STATUS); |
2600 | 305 |
2618 | 306 filename=(num_filenames>0)?filenames[0]:NULL; |
307 stream=open_stream(filename,vcd_track,&file_format); | |
2531 | 308 |
309 if(!stream){ | |
310 printf("Cannot open file/device\n"); | |
311 exit(1); | |
312 } | |
313 | |
314 printf("success: format: %d data: 0x%X - 0x%X\n",file_format, (int)(stream->start_pos),(int)(stream->end_pos)); | |
315 | |
2618 | 316 if(stream_cache_size) stream_enable_cache(stream,stream_cache_size*1024); |
2531 | 317 |
2882 | 318 //demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id); |
319 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id); | |
2531 | 320 if(!demuxer){ |
321 printf("Cannot open demuxer\n"); | |
322 exit(1); | |
323 } | |
324 | |
325 d_audio=demuxer->audio; | |
326 d_video=demuxer->video; | |
327 d_dvdsub=demuxer->sub; | |
328 sh_audio=d_audio->sh; | |
329 sh_video=d_video->sh; | |
330 | |
331 if(!video_read_properties(sh_video)){ | |
332 printf("Couldn't read video properties\n"); | |
333 exit(1); | |
334 } | |
335 | |
2622 | 336 mp_msg(MSGT_MENCODER,MSGL_INFO,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", |
2531 | 337 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h, |
338 sh_video->fps,sh_video->frametime | |
339 ); | |
340 | |
341 | |
342 sh_video->codec=NULL; | |
2884 | 343 if(out_video_codec){ |
344 | |
2622 | 345 if(video_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceVideoFmt,video_family); |
2531 | 346 while(1){ |
347 sh_video->codec=find_codec(sh_video->format, | |
348 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0); | |
349 if(!sh_video->codec){ | |
350 if(video_family!=-1) { | |
351 sh_video->codec=NULL; /* re-search */ | |
2622 | 352 mp_msg(MSGT_MENCODER,MSGL_WARN,MSGTR_CantFindVfmtFallback); |
2531 | 353 video_family=-1; |
354 continue; | |
355 } | |
2622 | 356 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindVideoCodec,sh_video->format); |
357 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
2531 | 358 exit(1); |
359 } | |
360 if(video_codec && strcmp(sh_video->codec->name,video_codec)) continue; | |
361 else if(video_family!=-1 && sh_video->codec->driver!=video_family) continue; | |
362 break; | |
363 } | |
364 | |
2622 | 365 mp_msg(MSGT_MENCODER,MSGL_INFO,"%s video codec: [%s] drv:%d (%s)\n",video_codec?"Forcing":"Detected",sh_video->codec->name,sh_video->codec->driver,sh_video->codec->info); |
2531 | 366 |
367 for(i=0;i<CODECS_MAX_OUTFMT;i++){ | |
368 out_fmt=sh_video->codec->outfmt[i]; | |
369 if(out_fmt==0xFFFFFFFF) continue; | |
370 if(out_fmt==IMGFMT_YV12) break; | |
371 if(out_fmt==IMGFMT_I420) break; | |
372 if(out_fmt==IMGFMT_IYUV) break; | |
373 if(out_fmt==IMGFMT_YUY2) break; | |
2825 | 374 if(out_fmt==IMGFMT_UYVY) break; |
2531 | 375 } |
376 if(i>=CODECS_MAX_OUTFMT){ | |
2622 | 377 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_VOincompCodec); |
2531 | 378 exit(1); // exit_player(MSGTR_Exit_error); |
379 } | |
380 sh_video->outfmtidx=i; | |
381 | |
3240 | 382 if(out_fmt==IMGFMT_YV12 && (vo_w!=0 || vo_h!=0)) |
3236 | 383 { |
384 scale_srcW= sh_video->disp_w; | |
385 scale_srcH= sh_video->disp_h; | |
3240 | 386 if(!vo_w) vo_w=sh_video->disp_w; |
387 if(!vo_h) vo_h=sh_video->disp_h; | |
3236 | 388 } |
389 else | |
390 { | |
391 vo_w=sh_video->disp_w; | |
392 vo_h=sh_video->disp_h; | |
393 } | |
394 | |
2531 | 395 if(out_fmt==IMGFMT_YV12 || out_fmt==IMGFMT_I420 || out_fmt==IMGFMT_IYUV){ |
396 vo_image=malloc(vo_w*vo_h*3/2); | |
397 vo_image_ptr=vo_image; | |
398 } | |
399 | |
400 if(!init_video(sh_video)){ | |
2622 | 401 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_CouldntInitVideoCodec); |
2531 | 402 exit(1); |
403 } | |
404 | |
2884 | 405 } // if(out_video_codec) |
2581 | 406 |
407 if(sh_audio){ | |
408 // Go through the codec.conf and find the best codec... | |
409 sh_audio->codec=NULL; | |
2622 | 410 if(audio_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceAudioFmt,audio_family); |
2581 | 411 while(1){ |
412 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); | |
413 if(!sh_audio->codec){ | |
414 if(audio_family!=-1) { | |
415 sh_audio->codec=NULL; /* re-search */ | |
2622 | 416 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAfmtFallback); |
2581 | 417 audio_family=-1; |
418 continue; | |
419 } | |
2622 | 420 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAudioCodec,sh_audio->format); |
421 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
2581 | 422 sh_audio=d_audio->sh=NULL; |
423 break; | |
424 } | |
425 if(audio_codec && strcmp(sh_audio->codec->name,audio_codec)) continue; | |
426 else if(audio_family!=-1 && sh_audio->codec->driver!=audio_family) continue; | |
2622 | 427 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 | 428 break; |
429 } | |
430 } | |
431 | |
432 if(sh_audio){ | |
2622 | 433 mp_msg(MSGT_MENCODER,MSGL_V,"Initializing audio codec...\n"); |
2581 | 434 if(!init_audio(sh_audio)){ |
2622 | 435 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CouldntInitAudioCodec); |
2581 | 436 sh_audio=d_audio->sh=NULL; |
437 } else { | |
2622 | 438 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 | 439 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); |
440 } | |
441 } | |
442 | |
443 | |
444 | |
2531 | 445 // set up video encoder: |
3236 | 446 SwScale_Init(); |
2531 | 447 video_out.draw_slice=draw_slice; |
448 video_out.draw_frame=draw_frame; | |
449 | |
450 // set up output file: | |
2626 | 451 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
|
452 if(!muxer_f) { |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
453 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
|
454 exit(1); |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
455 } |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
456 |
2531 | 457 muxer=aviwrite_new_muxer(); |
2581 | 458 |
459 // ============= VIDEO =============== | |
460 | |
2531 | 461 mux_v=aviwrite_new_stream(muxer,AVIWRITE_TYPE_VIDEO); |
462 | |
463 mux_v->buffer_size=0x200000; | |
464 mux_v->buffer=malloc(mux_v->buffer_size); | |
465 | |
466 mux_v->source=sh_video; | |
467 | |
468 mux_v->h.dwSampleSize=0; // VBR | |
469 mux_v->h.dwScale=10000; | |
2613 | 470 mux_v->h.dwRate=mux_v->h.dwScale*(force_ofps?force_ofps:sh_video->fps); |
2531 | 471 |
2661 | 472 mux_v->codec=out_video_codec; |
2574 | 473 |
2531 | 474 switch(mux_v->codec){ |
475 case 0: | |
476 mux_v->bih=sh_video->bih; | |
477 break; | |
478 case VCODEC_DIVX4: | |
479 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
480 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
3236 | 481 mux_v->bih->biWidth=vo_w; |
482 mux_v->bih->biHeight=vo_h; | |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
483 mux_v->bih->biPlanes=1; |
2531 | 484 mux_v->bih->biBitCount=24; |
485 mux_v->bih->biCompression=mmioFOURCC('d','i','v','x'); | |
486 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
487 break; | |
488 } | |
489 | |
2581 | 490 // ============= AUDIO =============== |
491 if(sh_audio){ | |
492 | |
493 mux_a=aviwrite_new_stream(muxer,AVIWRITE_TYPE_AUDIO); | |
494 | |
495 mux_a->buffer_size=0x100000; //16384; | |
496 mux_a->buffer=malloc(mux_a->buffer_size); | |
497 | |
498 mux_a->source=sh_audio; | |
499 | |
2661 | 500 mux_a->codec=out_audio_codec; |
2581 | 501 |
502 switch(mux_a->codec){ | |
503 case 0: | |
504 mux_a->h.dwSampleSize=sh_audio->audio.dwSampleSize; | |
505 mux_a->h.dwScale=sh_audio->audio.dwScale; | |
506 mux_a->h.dwRate=sh_audio->audio.dwRate; | |
507 mux_a->wf=sh_audio->wf; | |
508 break; | |
2583 | 509 case ACODEC_PCM: |
510 printf("CBR PCM audio selected\n"); | |
511 mux_a->h.dwSampleSize=2*sh_audio->channels; | |
512 mux_a->h.dwScale=1; | |
513 mux_a->h.dwRate=sh_audio->samplerate; | |
514 mux_a->wf=malloc(sizeof(WAVEFORMATEX)); | |
515 mux_a->wf->nBlockAlign=mux_a->h.dwSampleSize; | |
516 mux_a->wf->wFormatTag=0x1; // PCM | |
517 mux_a->wf->nChannels=sh_audio->channels; | |
518 mux_a->wf->nSamplesPerSec=sh_audio->samplerate; | |
519 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec; | |
520 mux_a->wf->wBitsPerSample=16; | |
521 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm | |
522 break; | |
2581 | 523 case ACODEC_VBRMP3: |
524 mux_a->h.dwSampleSize=0; // VBR | |
2653 | 525 mux_a->h.dwScale=1152; // samples/frame |
2581 | 526 mux_a->h.dwRate=sh_audio->samplerate; |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
527 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
|
528 mux_a->wf=malloc(sizeof(MPEGLAYER3WAVEFORMAT)); // should be 30 |
2581 | 529 mux_a->wf->wFormatTag=0x55; // MP3 |
530 mux_a->wf->nChannels=sh_audio->channels; | |
2639 | 531 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
|
532 mux_a->wf->nAvgBytesPerSec=192000/8; // FIXME! |
2653 | 533 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
|
534 mux_a->wf->wBitsPerSample=0; //16; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
535 // from NaNdub: (requires for l3codeca.acm) |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
536 mux_a->wf->cbSize=12; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
537 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->wID=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
538 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->fdwFlags=2; |
2653 | 539 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nBlockSize=1152; // ??? |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
540 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nFramesPerBlock=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
541 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nCodecDelay=0; |
2581 | 542 break; |
543 } | |
544 } | |
545 | |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
546 printf("Writing AVI header...\n"); |
2531 | 547 aviwrite_write_header(muxer,muxer_f); |
548 | |
549 switch(mux_v->codec){ | |
550 case 0: | |
551 break; | |
552 case VCODEC_DIVX4: | |
553 // init divx4linux: | |
3236 | 554 divx4_param.x_dim=vo_w; |
555 divx4_param.y_dim=vo_h; | |
2626 | 556 divx4_param.framerate=(float)mux_v->h.dwRate/mux_v->h.dwScale; |
557 if(!divx4_param.bitrate) divx4_param.bitrate=800000; | |
558 else if(divx4_param.bitrate<=16000) divx4_param.bitrate*=1000; | |
559 if(!divx4_param.quality) divx4_param.quality=5; // the quality of compression ( 1 - fastest, 5 - best ) | |
560 divx4_param.handle=NULL; | |
561 encore(NULL,ENC_OPT_INIT,&divx4_param,NULL); | |
562 enc_handle=divx4_param.handle; | |
2643 | 563 switch(out_fmt){ |
564 case IMGFMT_YV12: enc_frame.colorspace=ENC_CSP_YV12; break; | |
565 case IMGFMT_IYUV: | |
566 case IMGFMT_I420: enc_frame.colorspace=ENC_CSP_I420; break; | |
567 case IMGFMT_YUY2: enc_frame.colorspace=ENC_CSP_YUY2; break; | |
568 case IMGFMT_UYVY: enc_frame.colorspace=ENC_CSP_UYVY; break; | |
569 case IMGFMT_RGB24: | |
570 case IMGFMT_BGR24: | |
571 enc_frame.colorspace=ENC_CSP_RGB24; break; | |
572 default: | |
573 mp_msg(MSGT_MENCODER,MSGL_ERR,"divx4: unsupported out_fmt!\n"); | |
574 } | |
575 switch(pass){ | |
576 case 1: | |
577 VbrControl_init_2pass_vbr_analysis(passtmpfile, divx4_param.quality); | |
578 break; | |
579 case 2: | |
580 VbrControl_init_2pass_vbr_encoding(passtmpfile, | |
581 divx4_param.bitrate, | |
582 divx4_param.framerate, | |
583 divx4_crispness, | |
584 divx4_param.quality); | |
585 break; | |
586 } | |
2531 | 587 break; |
588 } | |
589 | |
2591 | 590 #if 1 |
2600 | 591 if(sh_audio) |
2583 | 592 switch(mux_a->codec){ |
593 case ACODEC_VBRMP3: | |
594 | |
595 lame=lame_init(); | |
2591 | 596 lame_set_bWriteVbrTag(lame,0); |
2583 | 597 lame_set_in_samplerate(lame,sh_audio->samplerate); |
598 lame_set_num_channels(lame,mux_a->wf->nChannels); | |
2639 | 599 lame_set_out_samplerate(lame,mux_a->wf->nSamplesPerSec); |
2626 | 600 if(lame_param_vbr){ // VBR: |
601 lame_set_VBR(lame,lame_param_vbr); // vbr mode | |
602 lame_set_VBR_q(lame,lame_param_quality+1); // 1 = best vbr q 6=~128k | |
603 if(lame_param_br>0) lame_set_VBR_mean_bitrate_kbps(lame,lame_param_br); | |
604 } else { // CBR: | |
605 lame_set_quality(lame,lame_param_quality); // 0 = best q | |
606 if(lame_param_br>0) lame_set_brate(lame,lame_param_br); | |
607 } | |
608 if(lame_param_mode>=0) lame_set_mode(lame,lame_param_mode); // j-st | |
609 if(lame_param_ratio>0) lame_set_compression_ratio(lame,lame_param_ratio); | |
2583 | 610 lame_init_params(lame); |
2622 | 611 if(verbose){ |
2626 | 612 lame_print_config(lame); |
613 lame_print_internals(lame); | |
2622 | 614 } |
2583 | 615 |
616 } | |
617 #endif | |
618 | |
2531 | 619 signal(SIGINT,exit_sighandler); // Interrupt from keyboard |
620 signal(SIGQUIT,exit_sighandler); // Quit from keyboard | |
621 signal(SIGTERM,exit_sighandler); // kill | |
622 | |
623 while(!eof){ | |
624 | |
2571 | 625 float frame_time=0; |
2531 | 626 int blit_frame=0; |
627 float a_pts=0; | |
628 float v_pts=0; | |
2574 | 629 unsigned char* start=NULL; |
630 int in_size; | |
2613 | 631 int skip_flag=0; // 1=skip -1=duplicate |
2531 | 632 |
2643 | 633 if(play_n_frames>=0){ |
634 --play_n_frames; | |
635 if(play_n_frames<0) break; | |
636 } | |
637 | |
2581 | 638 if(sh_audio){ |
639 // get audio: | |
2583 | 640 while(mux_a->timer-audio_preload<mux_v->timer){ |
2653 | 641 int len=0; |
2581 | 642 if(mux_a->h.dwSampleSize){ |
2605 | 643 // CBR - copy 0.5 sec of audio |
2583 | 644 switch(mux_a->codec){ |
645 case 0: // copy | |
646 len=sh_audio->i_bps/2; | |
647 len/=mux_a->h.dwSampleSize;if(len<1) len=1; | |
648 len*=mux_a->h.dwSampleSize; | |
649 len=demux_read_data(sh_audio->ds,mux_a->buffer,len); | |
650 break; | |
651 case ACODEC_PCM: | |
652 len=mux_a->h.dwSampleSize*(mux_a->h.dwRate/2); | |
2591 | 653 len=dec_audio(sh_audio,mux_a->buffer,len); |
2583 | 654 break; |
655 } | |
2581 | 656 } else { |
2605 | 657 // VBR - encode/copy an audio frame |
658 switch(mux_a->codec){ | |
659 case 0: // copy | |
660 printf("not yet implemented!\n"); | |
661 break; | |
662 case ACODEC_VBRMP3: | |
2591 | 663 while(mux_a->buffer_len<4){ |
664 unsigned char tmp[2304]; | |
665 int len=dec_audio(sh_audio,tmp,2304); | |
666 if(len<=0) break; // eof | |
667 len=lame_encode_buffer_interleaved(lame, | |
668 tmp,len/4, | |
669 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
670 if(len<0) break; // error | |
671 mux_a->buffer_len+=len; | |
672 } | |
673 if(mux_a->buffer_len<4) break; | |
674 len=mp_decode_mp3_header(mux_a->buffer); | |
2639 | 675 //printf("%d\n",len); |
2591 | 676 if(len<=0) break; // bad frame! |
677 while(mux_a->buffer_len<len){ | |
678 unsigned char tmp[2304]; | |
679 int len=dec_audio(sh_audio,tmp,2304); | |
680 if(len<=0) break; // eof | |
681 len=lame_encode_buffer_interleaved(lame, | |
682 tmp,len/4, | |
683 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
684 if(len<0) break; // error | |
685 mux_a->buffer_len+=len; | |
686 } | |
2605 | 687 break; |
688 } | |
2581 | 689 } |
2583 | 690 if(len<=0) break; // EOF? |
691 aviwrite_write_chunk(muxer,mux_a,muxer_f,len,0); | |
2655 | 692 if(!mux_a->h.dwSampleSize && mux_a->timer>0) |
693 mux_a->wf->nAvgBytesPerSec=mux_a->size/mux_a->timer; // avg bps (VBR) | |
2591 | 694 if(mux_a->buffer_len>=len){ |
695 mux_a->buffer_len-=len; | |
696 memcpy(mux_a->buffer,mux_a->buffer+len,mux_a->buffer_len); | |
697 } | |
2581 | 698 } |
699 } | |
700 | |
701 // get video frame! | |
702 in_size=video_read_frame(sh_video,&frame_time,&start,force_fps); | |
703 if(in_size<0){ eof=1; break; } | |
2531 | 704 sh_video->timer+=frame_time; |
2613 | 705 |
706 v_timer_corr-=frame_time-(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
2531 | 707 |
2613 | 708 // check frame duplicate/drop: |
709 | |
710 if(v_timer_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
711 v_timer_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
712 ++skip_flag; // skip | |
713 } else | |
714 while(v_timer_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
715 v_timer_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
716 --skip_flag; // dup | |
717 } | |
2531 | 718 |
2613 | 719 while( (v_pts_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag>0) |
720 || (v_pts_corr<=-2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ){ | |
721 v_pts_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
722 --skip_flag; // dup | |
723 } | |
724 if( (v_pts_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag<0) | |
725 || (v_pts_corr>=2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ) | |
726 if(skip_flag<=0){ // we can't skip more than 1 frame now | |
727 v_pts_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
728 ++skip_flag; // skip | |
729 } | |
730 | |
731 | |
2531 | 732 switch(mux_v->codec){ |
2574 | 733 case 0: |
734 mux_v->buffer=start; | |
2639 | 735 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,in_size,(sh_video->ds->flags&1)?0x10:0); |
2574 | 736 break; |
2531 | 737 case VCODEC_DIVX4: |
2574 | 738 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); |
2639 | 739 if(skip_flag>0) break; |
2574 | 740 if(!blit_frame){ |
741 // empty. | |
742 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
743 break; | |
744 } | |
2531 | 745 enc_frame.image=vo_image_ptr; |
746 enc_frame.bitstream=mux_v->buffer; | |
747 enc_frame.length=mux_v->buffer_size; | |
2643 | 748 enc_frame.mvs=NULL; |
2531 | 749 enc_frame.quant=0; |
750 enc_frame.intra=0; | |
2643 | 751 if(pass==2){ // handle 2-pass: |
752 enc_frame.quant = VbrControl_get_quant(); | |
753 enc_frame.intra = VbrControl_get_intra(); | |
754 encore(enc_handle,ENC_OPT_ENCODE_VBR,&enc_frame,&enc_result); | |
755 VbrControl_update_2pass_vbr_encoding(enc_result.motion_bits, | |
756 enc_result.texture_bits, | |
757 enc_result.total_bits); | |
758 } else { | |
759 encore(enc_handle,ENC_OPT_ENCODE,&enc_frame,&enc_result); | |
760 if(pass==1){ | |
761 VbrControl_update_2pass_vbr_analysis(enc_result.is_key_frame, | |
762 enc_result.motion_bits, | |
763 enc_result.texture_bits, | |
764 enc_result.total_bits, | |
765 enc_result.quantizer); | |
766 } | |
767 } | |
768 | |
2531 | 769 // printf("encoding...\n"); |
770 // printf(" len=%d key:%d qualt:%d \n",enc_frame.length,enc_result.is_key_frame,enc_result.quantizer); | |
771 aviwrite_write_chunk(muxer,mux_v,muxer_f,enc_frame.length,enc_result.is_key_frame?0x10:0); | |
772 break; | |
773 } | |
2613 | 774 |
775 if(skip_flag<0){ | |
2605 | 776 // duplicate frame |
2613 | 777 printf("\nduplicate %d frame(s)!!! \n",-skip_flag); |
778 while(skip_flag<0){ | |
779 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
780 ++skip_flag; | |
781 } | |
2639 | 782 } else |
783 if(skip_flag>0){ | |
2605 | 784 // skip frame |
785 printf("\nskip frame!!! \n"); | |
2613 | 786 --skip_flag; |
2605 | 787 } |
788 | |
789 if(sh_audio){ | |
790 float AV_delay,x; | |
791 // A-V sync! | |
792 if(pts_from_bps){ | |
793 unsigned int samples=(sh_audio->audio.dwSampleSize)? | |
794 ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) : | |
795 (d_audio->pack_no); // <- used for VBR audio | |
796 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate; | |
797 delay_corrected=1; | |
798 } else { | |
799 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) | |
800 a_pts=d_audio->pts; | |
801 if(!delay_corrected) if(a_pts) delay_corrected=1; | |
802 //printf("*** %5.3f ***\n",a_pts); | |
803 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; | |
804 } | |
805 v_pts=d_video->pts; | |
806 // av = compensated (with out buffering delay) A-V diff | |
2613 | 807 AV_delay=(a_pts-v_pts); AV_delay-=mux_a->timer-(mux_v->timer-(v_timer_corr+v_pts_corr)); |
2605 | 808 // compensate input video timer by av: |
809 x=AV_delay*0.1f; | |
810 if(x<-max_pts_correction) x=-max_pts_correction; else | |
811 if(x> max_pts_correction) x= max_pts_correction; | |
812 if(default_max_pts_correction>=0) | |
813 max_pts_correction=default_max_pts_correction; | |
814 else | |
815 max_pts_correction=sh_video->frametime*0.10; // +-10% of time | |
816 // sh_video->timer-=x; | |
817 c_total+=x; | |
2613 | 818 v_pts_corr+=x; |
2605 | 819 |
2613 | 820 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 | 821 a_pts,v_pts,a_pts-v_pts, |
822 (float)(mux_a->timer-mux_v->timer), | |
2613 | 823 AV_delay, c_total, v_pts_corr ); |
2605 | 824 |
825 } | |
826 | |
827 #if 0 | |
828 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", | |
829 a_pts,v_pts,a_pts-v_pts,c_total, | |
830 (int)sh_video->num_frames,(int)sh_video->num_frames_decoded, | |
831 (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0, | |
832 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0, | |
833 (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0 | |
834 ,cache_fill_status | |
835 ); | |
836 #endif | |
837 | |
838 fflush(stdout); | |
839 | |
2531 | 840 |
841 | |
842 } // while(!eof) | |
843 | |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
844 printf("\nWriting AVI index...\n"); |
2531 | 845 aviwrite_write_index(muxer,muxer_f); |
2622 | 846 printf("Fixup AVI header...\n"); |
2531 | 847 fseek(muxer_f,0,SEEK_SET); |
848 aviwrite_write_header(muxer,muxer_f); // update header | |
849 fclose(muxer_f); | |
850 | |
2618 | 851 if(stream) free_stream(stream); // kill cache thread |
852 | |
2531 | 853 } |