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