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