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