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