Mercurial > mplayer.hg
annotate mencoder.c @ 4852:534e7b5aaadb
mem corruption bug fix.
author | pontscho |
---|---|
date | Sun, 24 Feb 2002 21:57:16 +0000 |
parents | 76acf5bbda78 |
children | 66b7488f9dd4 |
rev | line source |
---|---|
3384 | 1 #define VCODEC_COPY 0 |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
2 #define VCODEC_FRAMENO 1 |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
3 #define VCODEC_DIVX4 2 |
3480 | 4 #define VCODEC_RAW 3 |
3504
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
5 #define VCODEC_LIBAVCODEC 4 |
4355 | 6 #define VCODEC_NULL 5 |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
7 #define VCODEC_RAWRGB 6 |
4575 | 8 #define VCODEC_VFW 7 |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
9 |
3385 | 10 #define ACODEC_COPY 0 |
2583 | 11 #define ACODEC_PCM 1 |
12 #define ACODEC_VBRMP3 2 | |
4368 | 13 #define ACODEC_NULL 3 |
2531 | 14 |
15 #include <stdio.h> | |
16 #include <stdlib.h> | |
17 #include <string.h> | |
18 #include <signal.h> | |
19 | |
2591 | 20 #include "config.h" |
2531 | 21 #include "mp_msg.h" |
2978 | 22 #include "version.h" |
2531 | 23 #include "help_mp.h" |
24 | |
2978 | 25 static char* banner_text= |
26 "\n\n" | |
4757 | 27 "MEncoder " VERSION "(C) 2000-2002 Arpad Gereoffy (see DOCS!)\n" |
2978 | 28 "\n"; |
29 | |
3323 | 30 #include "cpudetect.h" |
31 | |
2531 | 32 #include "codec-cfg.h" |
4343
b0c8eed7473c
Extended DVD chapter specification. Remove -last-chapter option.
kmkaplan
parents:
4207
diff
changeset
|
33 #include "cfgparser.h" |
2531 | 34 |
35 #include "stream.h" | |
36 #include "demuxer.h" | |
37 #include "stheader.h" | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
38 #include "playtree.h" |
2531 | 39 |
40 #include "aviwrite.h" | |
41 | |
2897 | 42 #ifdef USE_LIBVO2 |
43 #include "libvo2/libvo2.h" | |
44 #else | |
2531 | 45 #include "libvo/video_out.h" |
2897 | 46 #endif |
2531 | 47 |
2574 | 48 #include "dec_audio.h" |
49 #include "dec_video.h" | |
50 | |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
51 #include "postproc/rgb2rgb.h" |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
52 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
53 #ifdef HAVE_DIVX4ENCORE |
2531 | 54 #include <encore2.h> |
2643 | 55 #include "divx4_vbr.h" |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
56 #endif |
2531 | 57 |
3357 | 58 #ifdef HAVE_MP3LAME |
2591 | 59 #include <lame/lame.h> |
3357 | 60 #endif |
2583 | 61 |
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
|
62 #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
|
63 #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
|
64 #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
|
65 #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
|
66 #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
|
67 #endif |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
68 extern int avcodec_inited; |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
69 |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
70 /* for video encoder */ |
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
|
71 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
|
72 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
|
73 static AVPicture lavc_venc_picture; |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
74 /* video options */ |
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
|
75 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
|
76 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
|
77 int lavc_param_vhq = 0; /* default is realtime encoding */ |
4207
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
78 int lavc_param_vme = 3; |
4408
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
79 int lavc_param_vqscale = 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
|
80 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
|
81 #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
|
82 |
4743 | 83 #ifdef USE_WIN32DLL |
4575 | 84 static BITMAPINFOHEADER* vfw_bih=NULL; |
4743 | 85 char *vfw_codecname = NULL; |
86 codecs_t *vfw_codec = NULL; | |
87 #endif | |
4575 | 88 |
3521 | 89 #ifdef HAVE_LIBCSS |
90 #include "libmpdemux/dvdauth.h" | |
91 #endif | |
92 | |
3236 | 93 #include <inttypes.h> |
94 #include "../postproc/swscale.h" | |
95 | |
3385 | 96 #include "fastmemcpy.h" |
97 | |
4388 | 98 /************************************************************************** |
99 Video accelerated architecture | |
100 **************************************************************************/ | |
101 vo_vaa_t vo_vaa; | |
4462 | 102 int vo_doublebuffering; |
4494 | 103 int vaa_use_dr; |
4388 | 104 |
2583 | 105 //-------------------------- |
106 | |
2531 | 107 // cache2: |
2618 | 108 static int stream_cache_size=0; |
2531 | 109 #ifdef USE_STREAM_CACHE |
110 extern int cache_fill_status; | |
111 #else | |
112 #define cache_fill_status 0 | |
113 #endif | |
114 | |
2618 | 115 int vcd_track=0; |
116 int audio_id=-1; | |
117 int video_id=-1; | |
118 int dvdsub_id=-1; | |
119 | |
4355 | 120 static int has_audio=1; |
2531 | 121 char *audio_codec=NULL; // override audio codec |
122 char *video_codec=NULL; // override video codec | |
123 int audio_family=-1; // override audio codec family | |
124 int video_family=-1; // override video codec family | |
125 | |
3357 | 126 #ifdef HAVE_MP3LAME |
2661 | 127 int out_audio_codec=ACODEC_VBRMP3; |
3357 | 128 #else |
129 int out_audio_codec=ACODEC_PCM; | |
130 #endif | |
131 | |
4620 | 132 int out_video_codec= |
133 #ifdef HAVE_DIVX4ENCORE | |
134 VCODEC_DIVX4; | |
135 #else | |
136 #ifdef USE_LIBAVCODEC | |
137 VCODEC_LIBAVCODEC; | |
138 #else | |
139 VCODEC_RAW; | |
140 #endif | |
141 #endif | |
142 | |
2661 | 143 |
2531 | 144 // audio stream skip/resync functions requires only for seeking. |
145 // (they should be implemented in the audio codec layer) | |
146 //void skip_audio_frame(sh_audio_t *sh_audio){} | |
147 //void resync_audio_stream(sh_audio_t *sh_audio){} | |
148 | |
2618 | 149 int verbose=0; // must be global! |
2531 | 150 double video_time_usage=0; |
151 double vout_time_usage=0; | |
4834 | 152 double max_video_time_usage=0; |
153 double max_vout_time_usage=0; | |
4838 | 154 double cur_video_time_usage=0; |
155 double cur_vout_time_usage=0; | |
2531 | 156 static double audio_time_usage=0; |
157 static int total_time_usage_start=0; | |
4844
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
158 int benchmark=0; |
2531 | 159 |
2605 | 160 // A-V sync: |
161 int delay_corrected=1; | |
162 static float default_max_pts_correction=-1;//0.01f; | |
163 static float max_pts_correction=0;//default_max_pts_correction; | |
164 static float c_total=0; | |
165 | |
2613 | 166 float force_fps=0; |
167 float force_ofps=0; // set to 24 for inverse telecine | |
2531 | 168 |
2618 | 169 int force_srate=0; |
170 | |
2626 | 171 char* out_filename="test.avi"; |
172 char* mp3_filename=NULL; | |
173 char* ac3_filename=NULL; | |
174 | |
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
|
175 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
|
176 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
177 #ifdef HAVE_DIVX4ENCORE |
2643 | 178 static int pass=0; |
179 static char* passtmpfile="divx2pass.log"; | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
180 int pass_working=0; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
181 #endif |
2643 | 182 |
183 static int play_n_frames=-1; | |
184 | |
2661 | 185 //char *out_audio_codec=NULL; // override audio codec |
186 //char *out_video_codec=NULL; // override video codec | |
2626 | 187 |
2591 | 188 //#include "libmpeg2/mpeg2.h" |
189 //#include "libmpeg2/mpeg2_internal.h" | |
190 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
191 #ifdef HAVE_DIVX4ENCORE |
2626 | 192 ENC_PARAM divx4_param; |
2643 | 193 int divx4_crispness=100; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
194 #endif |
2626 | 195 |
3357 | 196 #ifdef HAVE_MP3LAME |
2626 | 197 int lame_param_quality=0; // best |
198 int lame_param_vbr=vbr_default; | |
199 int lame_param_mode=-1; // unset | |
200 int lame_param_padding=-1; // unset | |
201 int lame_param_br=-1; // unset | |
202 int lame_param_ratio=-1; // unset | |
3357 | 203 #endif |
2626 | 204 |
3236 | 205 static int scale_srcW=0; |
206 static int scale_srcH=0; | |
207 static int vo_w=0, vo_h=0; | |
2618 | 208 //-------------------------- config stuff: |
209 | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
210 m_config_t* mconfig; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
211 |
2618 | 212 static int cfg_inc_verbose(struct config *conf){ ++verbose; return 0;} |
213 | |
214 static int cfg_include(struct config *conf, char *filename){ | |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
215 return m_config_parse_config_file(mconfig, filename); |
2618 | 216 } |
217 | |
4620 | 218 static char *seek_to_sec=NULL; |
219 static off_t seek_to_byte=0; | |
220 | |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
221 static int parse_end_at(struct config *conf, const char* param); |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
222 static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width, int height); |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
223 |
2618 | 224 #include "get_path.c" |
225 | |
226 #include "cfg-mplayer-def.h" | |
227 #include "cfg-mencoder.h" | |
228 | |
4088 | 229 #ifdef USE_DVDREAD |
230 #include "spudec.h" | |
231 #endif | |
232 | |
4743 | 233 /* FIXME */ |
234 void mencoder_exit(int level, char *how) | |
235 { | |
236 if (how) | |
237 printf("Exiting... (%s)\n", how); | |
238 else | |
239 printf("Exiting...\n"); | |
240 | |
241 exit(level); | |
242 } | |
243 | |
4488 | 244 void parse_cfgfiles( m_config_t* conf ) |
245 { | |
246 char *conffile; | |
247 if ((conffile = get_path("mencoder")) == NULL) { | |
248 mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem); | |
249 } else { | |
250 if (m_config_parse_config_file(conf, conffile) < 0) | |
4743 | 251 mencoder_exit(1,"configfile error"); |
4488 | 252 free(conffile); |
253 } | |
254 } | |
255 | |
2591 | 256 //--------------------------------------------------------------------------- |
257 | |
258 // mini dummy libvo: | |
2531 | 259 |
260 static unsigned char* vo_image=NULL; | |
261 static unsigned char* vo_image_ptr=NULL; | |
262 | |
263 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h, int x0,int y0){ | |
264 int y; | |
3236 | 265 // printf("draw_slice %dx%d %d;%d\n",w,h,x0,y0); |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
266 if(scale_srcW || scale_srcH) |
3236 | 267 { |
268 uint8_t* dstPtr[3]= { | |
269 vo_image, | |
270 vo_image + vo_w*vo_h*5/4, | |
271 vo_image + vo_w*vo_h}; | |
272 SwScale_YV12slice(src, stride, y0, h, dstPtr, vo_w, 12, scale_srcW, scale_srcH, vo_w, vo_h); | |
273 } | |
274 else | |
275 { | |
2531 | 276 // copy Y: |
277 for(y=0;y<h;y++){ | |
2639 | 278 unsigned char* s=src[0]+stride[0]*y; |
2531 | 279 unsigned char* d=vo_image+vo_w*(y0+y)+x0; |
280 memcpy(d,s,w); | |
281 } | |
282 x0>>=1;y0>>=1; | |
283 w>>=1;h>>=1; | |
284 // copy U: | |
285 for(y=0;y<h;y++){ | |
2639 | 286 unsigned char* s=src[2]+stride[2]*y; |
2531 | 287 unsigned char* d=vo_image+vo_w*vo_h+(vo_w>>1)*(y0+y)+x0; |
288 memcpy(d,s,w); | |
289 } | |
290 // copy V: | |
291 for(y=0;y<h;y++){ | |
2639 | 292 unsigned char* s=src[1]+stride[1]*y; |
2531 | 293 unsigned char* d=vo_image+vo_w*vo_h+vo_w*vo_h/4+(vo_w>>1)*(y0+y)+x0; |
294 memcpy(d,s,w); | |
295 } | |
3236 | 296 } // !swscaler |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
297 return(0); |
2531 | 298 } |
299 | |
300 static uint32_t draw_frame(uint8_t *src[]){ | |
301 // printf("This function shouldn't be called - report bug!\n"); | |
302 // later: add YUY2->YV12 conversion here! | |
303 vo_image_ptr=src[0]; | |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
304 return(0); |
2531 | 305 } |
306 | |
307 vo_functions_t video_out; | |
308 | |
2591 | 309 //--------------------------------------------------------------------------- |
310 | |
4088 | 311 void *vo_spudec=NULL; |
312 | |
313 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ | |
314 vo_draw_alpha_yv12(w,h,src,srca,stride,vo_image + vo_w * y0 + x0,vo_w); | |
315 } | |
316 | |
317 static void draw_sub(void) { | |
318 #ifdef USE_DVDREAD | |
319 if (vo_spudec) | |
320 spudec_draw_scaled(vo_spudec, vo_w, vo_h, draw_alpha); | |
321 #endif | |
322 } | |
323 | |
2591 | 324 int dec_audio(sh_audio_t *sh_audio,unsigned char* buffer,int total){ |
325 int size=0; | |
326 int eof=0; | |
327 while(size<total && !eof){ | |
328 int len=total-size; | |
329 if(len>MAX_OUTBURST) len=MAX_OUTBURST; | |
330 if(len>sh_audio->a_buffer_size) len=sh_audio->a_buffer_size; | |
331 if(len>sh_audio->a_buffer_len){ | |
332 int ret=decode_audio(sh_audio, | |
333 &sh_audio->a_buffer[sh_audio->a_buffer_len], | |
334 len-sh_audio->a_buffer_len, | |
335 sh_audio->a_buffer_size-sh_audio->a_buffer_len); | |
336 if(ret>0) sh_audio->a_buffer_len+=ret; else eof=1; | |
337 } | |
338 if(len>sh_audio->a_buffer_len) len=sh_audio->a_buffer_len; | |
339 memcpy(buffer+size,sh_audio->a_buffer,len); | |
340 sh_audio->a_buffer_len-=len; size+=len; | |
341 if(sh_audio->a_buffer_len>0) | |
342 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[len],sh_audio->a_buffer_len); | |
343 } | |
344 return size; | |
345 } | |
346 | |
4767 | 347 extern void me_register_options(m_config_t* cfg); |
348 | |
2591 | 349 //--------------------------------------------------------------------------- |
2531 | 350 |
351 static int eof=0; | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
352 static int interrupted=0; |
2531 | 353 |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
354 enum end_at_type_t {END_AT_NONE, END_AT_TIME, END_AT_SIZE}; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
355 static enum end_at_type_t end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
356 static int end_at; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
357 |
2531 | 358 static void exit_sighandler(int x){ |
359 eof=1; | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
360 interrupted=1; |
2531 | 361 } |
362 | |
2618 | 363 int main(int argc,char* argv[], char *envp[]){ |
2531 | 364 |
365 stream_t* stream=NULL; | |
366 demuxer_t* demuxer=NULL; | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
367 stream_t* stream2=NULL; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
368 demuxer_t* demuxer2=NULL; |
2531 | 369 demux_stream_t *d_audio=NULL; |
370 demux_stream_t *d_video=NULL; | |
371 demux_stream_t *d_dvdsub=NULL; | |
372 sh_audio_t *sh_audio=NULL; | |
373 sh_video_t *sh_video=NULL; | |
374 int file_format=DEMUXER_TYPE_UNKNOWN; | |
4453 | 375 int i,pitches[3]; |
2531 | 376 unsigned int out_fmt; |
377 | |
378 aviwrite_t* muxer=NULL; | |
379 aviwrite_stream_t* mux_a=NULL; | |
380 aviwrite_stream_t* mux_v=NULL; | |
381 FILE* muxer_f=NULL; | |
4377 | 382 int muxer_f_size=0; |
2531 | 383 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
384 #ifdef HAVE_DIVX4ENCORE |
2531 | 385 ENC_FRAME enc_frame; |
386 ENC_RESULT enc_result; | |
387 void* enc_handle=NULL; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
388 #endif |
2531 | 389 |
3357 | 390 #ifdef HAVE_MP3LAME |
2591 | 391 lame_global_flags *lame; |
3357 | 392 #endif |
2583 | 393 |
2653 | 394 float audio_preload=0.5; |
2581 | 395 |
2613 | 396 double v_pts_corr=0; |
397 double v_timer_corr=0; | |
2605 | 398 |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
399 play_tree_t* playtree; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
400 play_tree_iter_t* playtree_iter; |
2618 | 401 char* filename=NULL; |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
402 char* frameno_filename="frameno.avi"; |
2618 | 403 |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
404 int decoded_frameno=0; |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
405 int next_frameno=-1; |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
406 |
4387 | 407 unsigned int timer_start; |
408 | |
2531 | 409 //int out_buffer_size=0x200000; |
410 //unsigned char* out_buffer=malloc(out_buffer_size); | |
411 | |
2622 | 412 mp_msg_init(MSGL_STATUS); |
2978 | 413 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text); |
2622 | 414 |
415 // check codec.conf | |
416 if(!parse_codec_cfg(get_path("codecs.conf"))){ | |
3748 | 417 if(!parse_codec_cfg(CONFDIR"/codecs.conf")){ |
2622 | 418 mp_msg(MSGT_MENCODER,MSGL_HINT,MSGTR_CopyCodecsConf); |
4743 | 419 mencoder_exit(1,NULL); |
2622 | 420 } |
421 } | |
2531 | 422 |
3323 | 423 /* Test for cpu capabilities (and corresponding OS support) for optimizing */ |
424 #ifdef ARCH_X86 | |
425 GetCpuCaps(&gCpuCaps); | |
426 mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: Type: %d MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n", | |
427 gCpuCaps.cpuType,gCpuCaps.hasMMX,gCpuCaps.hasMMX2, | |
428 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt, | |
429 gCpuCaps.hasSSE, gCpuCaps.hasSSE2); | |
430 #endif | |
431 | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
432 #ifdef HAVE_DIVX4ENCORE |
2643 | 433 // set some defaults, before parsing configfile/commandline: |
434 divx4_param.min_quantizer = 2; | |
435 divx4_param.max_quantizer = 31; | |
436 divx4_param.rc_period = 2000; | |
437 divx4_param.rc_reaction_period = 10; | |
438 divx4_param.rc_reaction_ratio = 20; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
439 #endif |
2643 | 440 |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
441 // FIXME: get rid of -dvd and other tricky options and config/playtree |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
442 stream2=open_stream(frameno_filename,0,&i); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
443 if(stream2){ |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
444 demuxer2=demux_open(stream2,DEMUXER_TYPE_AVI,-1,-1,-2); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
445 if(demuxer2) printf("Using pass3 control file: %s\n",frameno_filename); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
446 } |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
447 |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
448 playtree = play_tree_new(); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
449 mconfig = m_config_new(playtree); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
450 m_config_register_options(mconfig,mencoder_opts); |
4767 | 451 me_register_options(mconfig); |
4488 | 452 parse_cfgfiles(mconfig); |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
453 |
4743 | 454 if(m_config_parse_command_line(mconfig, argc, argv, envp) < 0) mencoder_exit(1, "error parsing cmdline"); |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
455 playtree = play_tree_cleanup(playtree); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
456 if(playtree) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
457 playtree_iter = play_tree_iter_new(playtree,mconfig); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
458 if(playtree_iter) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
459 if(play_tree_iter_step(playtree_iter,0,0) != PLAY_TREE_ITER_ENTRY) { |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
460 play_tree_iter_free(playtree_iter); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
461 playtree_iter = NULL; |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
462 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
463 filename = play_tree_iter_get_file(playtree_iter,1); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
464 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
465 } |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
466 |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4088
diff
changeset
|
467 if(!filename && !vcd_track && !dvd_title && !tv_param_on){ |
2618 | 468 printf("\nMissing filename!\n\n"); |
4743 | 469 mencoder_exit(1,NULL); |
2618 | 470 } |
471 | |
2622 | 472 mp_msg_init(verbose+MSGL_STATUS); |
2600 | 473 |
2618 | 474 stream=open_stream(filename,vcd_track,&file_format); |
2531 | 475 |
476 if(!stream){ | |
477 printf("Cannot open file/device\n"); | |
4743 | 478 mencoder_exit(1,NULL); |
2531 | 479 } |
480 | |
481 printf("success: format: %d data: 0x%X - 0x%X\n",file_format, (int)(stream->start_pos),(int)(stream->end_pos)); | |
482 | |
3563 | 483 if(stream_cache_size) stream_enable_cache(stream,stream_cache_size*1024,0,0); |
2531 | 484 |
3979 | 485 #ifdef HAVE_LIBCSS |
486 // current_module="libcss"; | |
487 if (dvdimportkey) { | |
488 if (dvd_import_key(dvdimportkey)) { | |
489 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorDVDkey); | |
4743 | 490 mencoder_exit(1,NULL); |
3979 | 491 } |
492 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CmdlineDVDkey); | |
493 } | |
494 if (dvd_auth_device) { | |
495 // if (dvd_auth(dvd_auth_device,f)) { | |
496 if (dvd_auth(dvd_auth_device,filename)) { | |
497 mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Error in DVD auth...\n"); | |
4743 | 498 mencoder_exit(1,NULL); |
3979 | 499 } |
500 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_DVDauthOk); | |
501 } | |
502 #endif | |
503 | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
504 if(!has_audio || demuxer2) audio_id=-2; /* do NOT read audio packets... */ |
4355 | 505 |
2882 | 506 //demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id); |
507 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id); | |
2531 | 508 if(!demuxer){ |
509 printf("Cannot open demuxer\n"); | |
4743 | 510 mencoder_exit(1,NULL); |
2531 | 511 } |
512 | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
513 d_audio=demuxer2 ? demuxer2->audio : demuxer->audio; |
2531 | 514 d_video=demuxer->video; |
515 d_dvdsub=demuxer->sub; | |
516 sh_audio=d_audio->sh; | |
517 sh_video=d_video->sh; | |
518 | |
519 if(!video_read_properties(sh_video)){ | |
520 printf("Couldn't read video properties\n"); | |
4743 | 521 mencoder_exit(1,NULL); |
2531 | 522 } |
523 | |
2622 | 524 mp_msg(MSGT_MENCODER,MSGL_INFO,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", |
2531 | 525 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h, |
526 sh_video->fps,sh_video->frametime | |
527 ); | |
528 | |
529 | |
530 sh_video->codec=NULL; | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
531 if(out_video_codec>1){ |
2884 | 532 |
2622 | 533 if(video_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceVideoFmt,video_family); |
3712 | 534 { /* local vars */ |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
535 short bestprio=-1; |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
536 struct codecs_st *bestcodec=NULL; |
2531 | 537 while(1){ |
538 sh_video->codec=find_codec(sh_video->format, | |
539 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0); | |
540 if(!sh_video->codec){ | |
541 if(video_family!=-1) { | |
3712 | 542 //sh_video->codec=NULL; /* re-search */ |
2622 | 543 mp_msg(MSGT_MENCODER,MSGL_WARN,MSGTR_CantFindVfmtFallback); |
2531 | 544 video_family=-1; |
545 continue; | |
546 } | |
3712 | 547 if(bestprio==-1 || !video_codec) { |
548 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindVideoCodec,sh_video->format); | |
549 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
4743 | 550 mencoder_exit(1,NULL); |
3712 | 551 } |
552 } else { | |
553 if(video_codec && strcmp(sh_video->codec->name,video_codec)) continue; | |
554 else if(video_family!=-1 && sh_video->codec->driver!=video_family) continue; | |
555 else if(video_family==-1 && !video_codec && sh_video->codec->priority) { | |
556 if(sh_video->codec->priority > bestprio) { | |
557 //printf("\n\n!!! setting bestprio from %d to %d for %s!!!\n\n", bestprio, sh_video->codec->priority, sh_video->codec->name); | |
558 bestprio=sh_video->codec->priority; | |
559 bestcodec=sh_video->codec; | |
560 } | |
561 continue; | |
562 } | |
563 } /* sh_video->codec */ | |
2531 | 564 break; |
565 } | |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
566 if(bestprio!=-1) { |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
567 //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
|
568 sh_video->codec=bestcodec; |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
569 } |
2531 | 570 |
3712 | 571 } /* end local vars */ |
3667
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
572 |
ec943f8ec439
add support for priotity <int> in codecs.conf, higher numbers are better
atmos4
parents:
3663
diff
changeset
|
573 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 | 574 |
575 for(i=0;i<CODECS_MAX_OUTFMT;i++){ | |
576 out_fmt=sh_video->codec->outfmt[i]; | |
577 if(out_fmt==0xFFFFFFFF) continue; | |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
578 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
579 if(IMGFMT_IS_RGB(out_fmt)) break; |
2531 | 580 if(out_fmt==IMGFMT_YV12) break; |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
581 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
582 if(out_video_codec == VCODEC_RAWRGB) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
583 if(IMGFMT_IS_BGR(out_fmt) && IMGFMT_BGR_DEPTH(out_fmt) == 32) break; |
4575 | 584 } else |
585 if(out_video_codec == VCODEC_VFW) { | |
586 if(IMGFMT_IS_BGR(out_fmt) && IMGFMT_BGR_DEPTH(out_fmt) == 24) break; | |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
587 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
588 else { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
589 if(IMGFMT_IS_BGR(out_fmt)) break; |
2531 | 590 if(out_fmt==IMGFMT_I420) break; |
591 if(out_fmt==IMGFMT_IYUV) break; | |
592 if(out_fmt==IMGFMT_YUY2) break; | |
2825 | 593 if(out_fmt==IMGFMT_UYVY) break; |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
594 } |
2531 | 595 } |
596 if(i>=CODECS_MAX_OUTFMT){ | |
2622 | 597 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_VOincompCodec); |
4743 | 598 mencoder_exit(1,NULL); // exit_player(MSGTR_Exit_error); |
2531 | 599 } |
600 sh_video->outfmtidx=i; | |
601 | |
4639 | 602 if((out_fmt==IMGFMT_YV12 || out_fmt==IMGFMT_IYUV || out_fmt==IMGFMT_I420) && |
603 (vo_w!=0 || vo_h!=0)) | |
3236 | 604 { |
605 scale_srcW= sh_video->disp_w; | |
606 scale_srcH= sh_video->disp_h; | |
3240 | 607 if(!vo_w) vo_w=sh_video->disp_w; |
608 if(!vo_h) vo_h=sh_video->disp_h; | |
3236 | 609 } |
610 else | |
611 { | |
612 vo_w=sh_video->disp_w; | |
613 vo_h=sh_video->disp_h; | |
614 } | |
615 | |
2531 | 616 if(out_fmt==IMGFMT_YV12 || out_fmt==IMGFMT_I420 || out_fmt==IMGFMT_IYUV){ |
617 vo_image=malloc(vo_w*vo_h*3/2); | |
618 vo_image_ptr=vo_image; | |
619 } | |
620 | |
3504
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
621 if (IMGFMT_IS_BGR(out_fmt)) |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
622 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
|
623 |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
624 if (IMGFMT_IS_RGB(out_fmt)) |
21fc87d76300
support for RGB/BGR modes (tested with raw and divx4)
alex
parents:
3480
diff
changeset
|
625 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
|
626 |
4453 | 627 if(!init_video(sh_video,pitches)){ |
2622 | 628 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_CouldntInitVideoCodec); |
4743 | 629 mencoder_exit(1,NULL); |
2531 | 630 } |
631 | |
2884 | 632 } // if(out_video_codec) |
2581 | 633 |
4620 | 634 if(sh_audio && (out_audio_codec || seek_to_sec || !sh_audio->wf)){ |
2581 | 635 // Go through the codec.conf and find the best codec... |
636 sh_audio->codec=NULL; | |
2622 | 637 if(audio_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceAudioFmt,audio_family); |
2581 | 638 while(1){ |
639 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); | |
640 if(!sh_audio->codec){ | |
641 if(audio_family!=-1) { | |
642 sh_audio->codec=NULL; /* re-search */ | |
2622 | 643 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAfmtFallback); |
2581 | 644 audio_family=-1; |
645 continue; | |
646 } | |
2622 | 647 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAudioCodec,sh_audio->format); |
648 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf")); | |
2581 | 649 sh_audio=d_audio->sh=NULL; |
650 break; | |
651 } | |
652 if(audio_codec && strcmp(sh_audio->codec->name,audio_codec)) continue; | |
653 else if(audio_family!=-1 && sh_audio->codec->driver!=audio_family) continue; | |
2622 | 654 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 | 655 break; |
656 } | |
657 } | |
658 | |
4620 | 659 if(sh_audio && (out_audio_codec || seek_to_sec || !sh_audio->wf)){ |
2622 | 660 mp_msg(MSGT_MENCODER,MSGL_V,"Initializing audio codec...\n"); |
2581 | 661 if(!init_audio(sh_audio)){ |
2622 | 662 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CouldntInitAudioCodec); |
2581 | 663 sh_audio=d_audio->sh=NULL; |
664 } else { | |
2622 | 665 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 | 666 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); |
667 } | |
668 } | |
669 | |
670 | |
671 | |
2531 | 672 // set up video encoder: |
3236 | 673 SwScale_Init(); |
2531 | 674 video_out.draw_slice=draw_slice; |
675 video_out.draw_frame=draw_frame; | |
676 | |
4088 | 677 #ifdef USE_DVDREAD |
4557 | 678 vo_spudec=spudec_new_scaled(stream->type==STREAMTYPE_DVD?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL, |
4088 | 679 sh_video->disp_w, sh_video->disp_h); |
680 #endif | |
681 | |
2531 | 682 // set up output file: |
2626 | 683 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
|
684 if(!muxer_f) { |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
685 printf("Cannot open output file '%s'\n", out_filename); |
4743 | 686 mencoder_exit(1,NULL); |
2887
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
687 } |
bc648c6a464a
fixes a segfault if file specified in -o can't be accessed
pl
parents:
2884
diff
changeset
|
688 |
2531 | 689 muxer=aviwrite_new_muxer(); |
2581 | 690 |
691 // ============= VIDEO =============== | |
692 | |
2531 | 693 mux_v=aviwrite_new_stream(muxer,AVIWRITE_TYPE_VIDEO); |
694 | |
4575 | 695 mux_v->buffer_size=0x200000; // 2MB |
2531 | 696 mux_v->buffer=malloc(mux_v->buffer_size); |
697 | |
698 mux_v->source=sh_video; | |
699 | |
700 mux_v->h.dwSampleSize=0; // VBR | |
701 mux_v->h.dwScale=10000; | |
2613 | 702 mux_v->h.dwRate=mux_v->h.dwScale*(force_ofps?force_ofps:sh_video->fps); |
2531 | 703 |
2661 | 704 mux_v->codec=out_video_codec; |
2574 | 705 |
2531 | 706 switch(mux_v->codec){ |
3384 | 707 case VCODEC_COPY: |
708 if (sh_video->bih) | |
709 mux_v->bih=sh_video->bih; | |
710 else | |
711 { | |
712 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
713 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
714 mux_v->bih->biWidth=sh_video->disp_w; | |
715 mux_v->bih->biHeight=sh_video->disp_h; | |
716 mux_v->bih->biCompression=sh_video->format; | |
717 mux_v->bih->biPlanes=1; | |
718 mux_v->bih->biBitCount=24; // FIXME!!! | |
719 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
720 } | |
721 printf("videocodec: framecopy (%dx%d %dbpp fourcc=%x)\n", | |
722 mux_v->bih->biWidth, mux_v->bih->biHeight, | |
723 mux_v->bih->biBitCount, mux_v->bih->biCompression); | |
2531 | 724 break; |
3480 | 725 case VCODEC_RAW: |
726 if (sh_video->bih) | |
727 mux_v->bih=sh_video->bih; | |
728 else | |
729 { | |
730 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
731 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
732 mux_v->bih->biWidth=sh_video->disp_w; | |
733 mux_v->bih->biHeight=sh_video->disp_h; | |
734 mux_v->bih->biCompression=0; | |
735 mux_v->bih->biPlanes=1; | |
736 mux_v->bih->biBitCount=24; // FIXME!!! | |
737 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
738 } | |
739 mux_v->bih->biCompression=0; | |
740 printf("videocodec: raw (%dx%d %dbpp fourcc=%x)\n", | |
741 mux_v->bih->biWidth, mux_v->bih->biHeight, | |
742 mux_v->bih->biBitCount, mux_v->bih->biCompression); | |
743 break; | |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
744 case VCODEC_RAWRGB: |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
745 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
746 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
747 mux_v->bih->biWidth=sh_video->disp_w; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
748 mux_v->bih->biHeight=sh_video->disp_h; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
749 mux_v->bih->biCompression=0; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
750 mux_v->bih->biPlanes=1; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
751 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
752 if(IMGFMT_IS_RGB(out_fmt)) |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
753 mux_v->bih->biBitCount = IMGFMT_RGB_DEPTH(out_fmt); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
754 else if(IMGFMT_IS_BGR(out_fmt)) |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
755 mux_v->bih->biBitCount = IMGFMT_BGR_DEPTH(out_fmt); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
756 else { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
757 mux_v->bih->biBitCount = 24; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
758 yuv2rgb_init(24, MODE_BGR); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
759 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
760 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
761 if(mux_v->bih->biBitCount == 32) |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
762 mux_v->bih->biBitCount = 24; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
763 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
764 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
765 printf("videocodec: rawrgb (%dx%d %dbpp fourcc=%x)\n", |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
766 mux_v->bih->biWidth, mux_v->bih->biHeight, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
767 mux_v->bih->biBitCount, mux_v->bih->biCompression); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
768 break; |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
769 case VCODEC_FRAMENO: |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
770 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
|
771 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
|
772 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
|
773 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
|
774 mux_v->bih->biPlanes=1; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
775 mux_v->bih->biBitCount=24; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
776 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
|
777 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
|
778 break; |
4575 | 779 case VCODEC_VFW: |
780 #ifdef USE_WIN32DLL | |
4743 | 781 #if 0 |
782 if (!vfw_codecname) | |
783 { | |
784 printf("No vfw/dshow codec specified! It's requested!\n"); | |
785 mencoder_exit(1, NULL); | |
786 } | |
787 #endif | |
4575 | 788 vfw_bih=malloc(sizeof(BITMAPINFOHEADER)); |
789 vfw_bih->biSize=sizeof(BITMAPINFOHEADER); | |
790 vfw_bih->biWidth=vo_w; | |
791 vfw_bih->biHeight=vo_h; | |
4638 | 792 vfw_bih->biPlanes=1; |
4575 | 793 vfw_bih->biBitCount=24; |
794 vfw_bih->biCompression=0; | |
795 vfw_bih->biSizeImage=vo_w*vo_h*((vfw_bih->biBitCount+7)/8); | |
4638 | 796 // mux_v->bih=vfw_open_encoder("divxc32.dll",vfw_bih,mmioFOURCC('D', 'I', 'V', '3')); |
797 mux_v->bih=vfw_open_encoder("AvidAVICodec.dll",vfw_bih, 0); | |
4575 | 798 break; |
799 #else | |
800 printf("No support for Win32/VfW codecs compiled in\n"); | |
4743 | 801 mencoder_exit(1,NULL); |
4575 | 802 #endif |
4355 | 803 case VCODEC_NULL: |
804 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
805 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
806 mux_v->bih->biWidth=vo_w; | |
807 mux_v->bih->biHeight=vo_h; | |
808 mux_v->bih->biPlanes=1; | |
809 mux_v->bih->biBitCount=24; | |
810 mux_v->bih->biCompression=0; | |
811 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); | |
812 break; | |
2531 | 813 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
814 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
815 printf("No support for Divx4 encore compiled in\n"); |
4743 | 816 mencoder_exit(1,NULL); |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
817 #else |
2531 | 818 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER)); |
819 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER); | |
3236 | 820 mux_v->bih->biWidth=vo_w; |
821 mux_v->bih->biHeight=vo_h; | |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
822 mux_v->bih->biPlanes=1; |
2531 | 823 mux_v->bih->biBitCount=24; |
824 mux_v->bih->biCompression=mmioFOURCC('d','i','v','x'); | |
825 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
|
826 |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
827 if (pass) |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
828 printf("Divx: 2-pass logfile: %s\n", passtmpfile); |
2531 | 829 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
830 #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
|
831 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
|
832 #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
|
833 printf("No support for FFmpeg's libavcodec compiled in\n"); |
4743 | 834 mencoder_exit(1,NULL); |
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
|
835 #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
|
836 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
|
837 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
|
838 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
|
839 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
|
840 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
|
841 mux_v->bih->biBitCount=24; |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
842 if (!lavc_param_vcodec) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
843 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
844 printf("No libavcodec codec specified! It's requested!\n"); |
4743 | 845 mencoder_exit(1,NULL); |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
846 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
847 else |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
848 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
849 const char *vcodec = lavc_param_vcodec; |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
850 if (!strcasecmp(vcodec, "mpeg1video")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
851 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
852 mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
853 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
854 else if (!strcasecmp(vcodec, "h263") || !strcasecmp(vcodec, "h263p")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
855 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
856 mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
857 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
858 else if (!strcasecmp(vcodec, "rv10")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
859 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
860 mux_v->bih->biCompression = mmioFOURCC('R', 'V', '1', '0'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
861 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
862 else if (!strcasecmp(vcodec, "mjpeg")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
863 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
864 mux_v->bih->biCompression = mmioFOURCC('M', 'J', 'P', 'G'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
865 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
866 else if (!strcasecmp(vcodec, "mpeg4")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
867 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
868 mux_v->bih->biCompression = mmioFOURCC('M', 'P', '4', 'S'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
869 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
870 else if (!strcasecmp(vcodec, "msmpeg4")) |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
871 { |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
872 mux_v->bih->biCompression = mmioFOURCC('d', 'i', 'v', '3'); |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
873 } |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
874 else |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
875 mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0], |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
876 lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */ |
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
877 } |
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
|
878 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
|
879 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
880 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
|
881 mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
882 (char *)&mux_v->bih->biCompression); |
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
|
883 #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
|
884 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
885 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
886 /* force output fourcc to .. */ |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
887 if ((force_fourcc != NULL) && (strlen(force_fourcc) >= 4)) |
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
|
888 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
889 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
|
890 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
|
891 printf("Forcing output fourcc to %x [%.4s]\n", |
4365
9e20866c3250
added better fourcc handling for lavc, exiting if no lavc video codec name specified
alex
parents:
4355
diff
changeset
|
892 mux_v->bih->biCompression, (char *)&mux_v->bih->biCompression); |
2531 | 893 } |
894 | |
4370 | 895 if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf! |
896 | |
2581 | 897 // ============= AUDIO =============== |
898 if(sh_audio){ | |
899 | |
900 mux_a=aviwrite_new_stream(muxer,AVIWRITE_TYPE_AUDIO); | |
901 | |
902 mux_a->buffer_size=0x100000; //16384; | |
903 mux_a->buffer=malloc(mux_a->buffer_size); | |
904 | |
905 mux_a->source=sh_audio; | |
906 | |
2661 | 907 mux_a->codec=out_audio_codec; |
2581 | 908 |
909 switch(mux_a->codec){ | |
3385 | 910 case ACODEC_COPY: |
4369 | 911 if (sh_audio->wf){ |
3385 | 912 mux_a->wf=sh_audio->wf; |
4370 | 913 if(!sh_audio->i_bps) sh_audio->i_bps=mux_a->wf->nAvgBytesPerSec; |
4369 | 914 } else { |
3385 | 915 mux_a->wf = malloc(sizeof(WAVEFORMATEX)); |
4370 | 916 mux_a->wf->nBlockAlign = 1; //mux_a->h.dwSampleSize; |
4369 | 917 mux_a->wf->wFormatTag = sh_audio->format; |
3385 | 918 mux_a->wf->nChannels = sh_audio->channels; |
919 mux_a->wf->nSamplesPerSec = sh_audio->samplerate; | |
4369 | 920 mux_a->wf->nAvgBytesPerSec=sh_audio->i_bps; //mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec; |
3480 | 921 mux_a->wf->wBitsPerSample = 16; // FIXME |
3385 | 922 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm |
923 } | |
4370 | 924 if(sh_audio->audio.dwScale){ |
925 mux_a->h.dwSampleSize=sh_audio->audio.dwSampleSize; | |
926 mux_a->h.dwScale=sh_audio->audio.dwScale; | |
927 mux_a->h.dwRate=sh_audio->audio.dwRate; | |
928 } else { | |
929 mux_a->h.dwSampleSize=mux_a->wf->nBlockAlign; | |
930 mux_a->h.dwScale=mux_a->h.dwSampleSize; | |
931 mux_a->h.dwRate=mux_a->wf->nAvgBytesPerSec; | |
932 } | |
933 printf("audiocodec: framecopy (format=%x chans=%d rate=%d bits=%d bps=%d sample=%d)\n", | |
3385 | 934 mux_a->wf->wFormatTag, mux_a->wf->nChannels, mux_a->wf->nSamplesPerSec, |
4370 | 935 mux_a->wf->wBitsPerSample, mux_a->wf->nAvgBytesPerSec, mux_a->h.dwSampleSize); |
2581 | 936 break; |
2583 | 937 case ACODEC_PCM: |
938 printf("CBR PCM audio selected\n"); | |
939 mux_a->h.dwSampleSize=2*sh_audio->channels; | |
940 mux_a->h.dwScale=1; | |
941 mux_a->h.dwRate=sh_audio->samplerate; | |
942 mux_a->wf=malloc(sizeof(WAVEFORMATEX)); | |
943 mux_a->wf->nBlockAlign=mux_a->h.dwSampleSize; | |
944 mux_a->wf->wFormatTag=0x1; // PCM | |
945 mux_a->wf->nChannels=sh_audio->channels; | |
946 mux_a->wf->nSamplesPerSec=sh_audio->samplerate; | |
947 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec; | |
948 mux_a->wf->wBitsPerSample=16; | |
949 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm | |
950 break; | |
2581 | 951 case ACODEC_VBRMP3: |
3385 | 952 printf("MP3 audio selected\n"); |
2581 | 953 mux_a->h.dwSampleSize=0; // VBR |
2653 | 954 mux_a->h.dwScale=1152; // samples/frame |
2581 | 955 mux_a->h.dwRate=sh_audio->samplerate; |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
956 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
|
957 mux_a->wf=malloc(sizeof(MPEGLAYER3WAVEFORMAT)); // should be 30 |
2581 | 958 mux_a->wf->wFormatTag=0x55; // MP3 |
959 mux_a->wf->nChannels=sh_audio->channels; | |
2639 | 960 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
|
961 mux_a->wf->nAvgBytesPerSec=192000/8; // FIXME! |
2653 | 962 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
|
963 mux_a->wf->wBitsPerSample=0; //16; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
964 // from NaNdub: (requires for l3codeca.acm) |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
965 mux_a->wf->cbSize=12; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
966 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->wID=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
967 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->fdwFlags=2; |
2653 | 968 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nBlockSize=1152; // ??? |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
969 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nFramesPerBlock=1; |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2627
diff
changeset
|
970 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nCodecDelay=0; |
2581 | 971 break; |
972 } | |
973 } | |
974 | |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
975 printf("Writing AVI header...\n"); |
2531 | 976 aviwrite_write_header(muxer,muxer_f); |
977 | |
978 switch(mux_v->codec){ | |
3384 | 979 case VCODEC_COPY: |
3480 | 980 case VCODEC_RAW: |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
981 case VCODEC_RAWRGB: |
4355 | 982 case VCODEC_NULL: |
2531 | 983 break; |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
984 case VCODEC_FRAMENO: |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
985 decoded_frameno=0; |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
986 break; |
2531 | 987 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
988 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
989 printf("No support for Divx4 encore compiled in\n"); |
4743 | 990 mencoder_exit(1,NULL); |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
991 #else |
2531 | 992 // init divx4linux: |
3236 | 993 divx4_param.x_dim=vo_w; |
994 divx4_param.y_dim=vo_h; | |
2626 | 995 divx4_param.framerate=(float)mux_v->h.dwRate/mux_v->h.dwScale; |
996 if(!divx4_param.bitrate) divx4_param.bitrate=800000; | |
997 else if(divx4_param.bitrate<=16000) divx4_param.bitrate*=1000; | |
998 if(!divx4_param.quality) divx4_param.quality=5; // the quality of compression ( 1 - fastest, 5 - best ) | |
999 divx4_param.handle=NULL; | |
1000 encore(NULL,ENC_OPT_INIT,&divx4_param,NULL); | |
1001 enc_handle=divx4_param.handle; | |
2643 | 1002 switch(out_fmt){ |
1003 case IMGFMT_YV12: enc_frame.colorspace=ENC_CSP_YV12; break; | |
1004 case IMGFMT_IYUV: | |
1005 case IMGFMT_I420: enc_frame.colorspace=ENC_CSP_I420; break; | |
1006 case IMGFMT_YUY2: enc_frame.colorspace=ENC_CSP_YUY2; break; | |
1007 case IMGFMT_UYVY: enc_frame.colorspace=ENC_CSP_UYVY; break; | |
1008 case IMGFMT_RGB24: | |
1009 case IMGFMT_BGR24: | |
1010 enc_frame.colorspace=ENC_CSP_RGB24; break; | |
1011 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
|
1012 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
|
1013 vo_format_name(out_fmt)); |
4743 | 1014 mencoder_exit(1,NULL); |
2643 | 1015 } |
1016 switch(pass){ | |
1017 case 1: | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1018 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
|
1019 { |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1020 printf("2pass failed: filename=%s\n", passtmpfile); |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1021 pass_working = 0; |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1022 } |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1023 else |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1024 pass_working = 1; |
2643 | 1025 break; |
1026 case 2: | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1027 if (VbrControl_init_2pass_vbr_encoding(passtmpfile, |
2643 | 1028 divx4_param.bitrate, |
1029 divx4_param.framerate, | |
1030 divx4_crispness, | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1031 divx4_param.quality) == -1) |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1032 { |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1033 printf("2pass failed: filename=%s\n", passtmpfile); |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1034 pass_working = 0; |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1035 } |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1036 else |
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1037 pass_working = 1; |
2643 | 1038 break; |
1039 } | |
2531 | 1040 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1041 #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
|
1042 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
|
1043 #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
|
1044 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
|
1045 #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
|
1046 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
|
1047 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1048 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
|
1049 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
|
1050 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
|
1051 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1052 |
3702
e16996f5497d
supporting -ofps by lavc, using avcodec_find_encoder_by_name (latest libavcodec cvs)
alex
parents:
3693
diff
changeset
|
1053 #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
|
1054 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1055 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
|
1056 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
|
1057 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1058 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
|
1059 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
|
1060 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1061 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
|
1062 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
|
1063 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
|
1064 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1065 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
|
1066 } |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1067 #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
|
1068 /* 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
|
1069 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
|
1070 #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
|
1071 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1072 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
|
1073 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1074 printf(MSGTR_MissingLAVCcodec, lavc_param_vcodec); |
4743 | 1075 mencoder_exit(1,NULL); |
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
|
1076 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1077 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1078 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
|
1079 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1080 // lavc_venc_context.width = mux_v->bih->biWidth; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1081 // 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
|
1082 /* 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
|
1083 lavc_venc_context.width = vo_w; |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1084 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
|
1085 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
|
1086 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
|
1087 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
|
1088 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
|
1089 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
|
1090 /* 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
|
1091 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
|
1092 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
|
1093 else |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1094 lavc_venc_context.gop_size = 250; /* default */ |
3693 | 1095 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1096 /* 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
|
1097 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
|
1098 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1099 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
|
1100 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
|
1101 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1102 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
|
1103 lavc_venc_context.flags = 0; |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1104 |
4207
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
1105 /* motion estimation (0 = none ... 3 = high quality but slow) */ |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
1106 /* this is just an extern from libavcodec but it should be in the |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
1107 encoder context - FIXME */ |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
1108 motion_estimation_method = lavc_param_vme; |
1427d0f1f2d6
-lavcopts vme= option to set motion estimation method - patch by Rich Felker <dalias@aerifal.cx>
arpi
parents:
4176
diff
changeset
|
1109 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1110 /* fixed qscale :p */ |
4408
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1111 if (lavc_param_vqscale) |
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1112 { |
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1113 printf("Using constant qscale = %d (VBR)\n", lavc_param_vqscale); |
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1114 lavc_venc_context.flags |= CODEC_FLAG_QSCALE; |
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1115 lavc_venc_context.quality = lavc_param_vqscale; |
291832d8d984
added constant-qscale encoding support with lavc, fixed slightly incorrect definition for the vme lavc option
rfelker
parents:
4395
diff
changeset
|
1116 } |
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
|
1117 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1118 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
|
1119 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1120 printf(MSGTR_CantOpenCodec); |
4743 | 1121 mencoder_exit(1,NULL); |
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
|
1122 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1123 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1124 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
|
1125 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1126 printf("avcodec init failed (ctx->codec->encode == NULL)!\n"); |
4743 | 1127 mencoder_exit(1,NULL); |
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
|
1128 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1129 |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1130 #if 1 |
4743 | 1131 if (out_fmt != IMGFMT_YV12 && out_fmt != IMGFMT_I420 && out_fmt != IMGFMT_IYUV) |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1132 { |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1133 printf("Not supported image format! (%s)\n", |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1134 vo_format_name(out_fmt)); |
4743 | 1135 mencoder_exit(1,NULL); |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1136 } |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1137 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1138 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
|
1139 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1140 { |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1141 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
|
1142 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1143 /* 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
|
1144 if (out_fmt == IMGFMT_YV12) |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
1145 { |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
1146 /* 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
|
1147 /* 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
|
1148 } |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
1149 else /* IMGFMT_I420 */ |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
1150 { |
0195894e279f
added support for I420 input (used by TV V4L) in lavc encoder
alex
parents:
3748
diff
changeset
|
1151 /* 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
|
1152 /* 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
|
1153 } |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1154 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
|
1155 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
|
1156 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
|
1157 } |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1158 #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
|
1159 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
|
1160 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1161 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
|
1162 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
|
1163 break; |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1164 #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
|
1165 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
|
1166 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
|
1167 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
|
1168 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
|
1169 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
|
1170 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
|
1171 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
|
1172 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
|
1173 break; |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1174 #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
|
1175 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
|
1176 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
|
1177 vo_format_name(out_fmt)); |
4743 | 1178 mencoder_exit(1,NULL); |
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
|
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 |
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 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
|
1182 |
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 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
|
1184 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1185 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
|
1186 lavc_venc_context.width, lavc_venc_context.height), |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1187 vo_h*vo_w*3/2); |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1188 |
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
|
1189 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
|
1190 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
|
1191 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
|
1192 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1193 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1194 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
|
1195 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1196 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
|
1197 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
|
1198 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1199 #endif |
3691
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1200 |
ed9404084ca7
fixed scaling and colors with libavcodec (and some comments added)
alex
parents:
3667
diff
changeset
|
1201 #endif |
2531 | 1202 } |
1203 | |
2600 | 1204 if(sh_audio) |
2583 | 1205 switch(mux_a->codec){ |
3357 | 1206 #ifdef HAVE_MP3LAME |
2583 | 1207 case ACODEC_VBRMP3: |
1208 | |
1209 lame=lame_init(); | |
2591 | 1210 lame_set_bWriteVbrTag(lame,0); |
2583 | 1211 lame_set_in_samplerate(lame,sh_audio->samplerate); |
1212 lame_set_num_channels(lame,mux_a->wf->nChannels); | |
2639 | 1213 lame_set_out_samplerate(lame,mux_a->wf->nSamplesPerSec); |
2626 | 1214 if(lame_param_vbr){ // VBR: |
1215 lame_set_VBR(lame,lame_param_vbr); // vbr mode | |
1216 lame_set_VBR_q(lame,lame_param_quality+1); // 1 = best vbr q 6=~128k | |
1217 if(lame_param_br>0) lame_set_VBR_mean_bitrate_kbps(lame,lame_param_br); | |
1218 } else { // CBR: | |
1219 lame_set_quality(lame,lame_param_quality); // 0 = best q | |
1220 if(lame_param_br>0) lame_set_brate(lame,lame_param_br); | |
1221 } | |
1222 if(lame_param_mode>=0) lame_set_mode(lame,lame_param_mode); // j-st | |
1223 if(lame_param_ratio>0) lame_set_compression_ratio(lame,lame_param_ratio); | |
2583 | 1224 lame_init_params(lame); |
2622 | 1225 if(verbose){ |
2626 | 1226 lame_print_config(lame); |
1227 lame_print_internals(lame); | |
2622 | 1228 } |
3357 | 1229 break; |
1230 #endif | |
2583 | 1231 } |
1232 | |
2531 | 1233 signal(SIGINT,exit_sighandler); // Interrupt from keyboard |
1234 signal(SIGQUIT,exit_sighandler); // Quit from keyboard | |
1235 signal(SIGTERM,exit_sighandler); // kill | |
1236 | |
4387 | 1237 timer_start=GetTimerMS(); |
1238 | |
4620 | 1239 if (seek_to_sec) { |
1240 int a,b; float d; | |
1241 | |
1242 if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3) | |
1243 d += 3600*a + 60*b; | |
1244 else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2) | |
1245 d += 60*a; | |
1246 else | |
1247 sscanf(seek_to_sec, "%f", &d); | |
1248 | |
1249 demux_seek(demuxer, d, 1); | |
1250 } | |
1251 | |
2531 | 1252 while(!eof){ |
1253 | |
2571 | 1254 float frame_time=0; |
2531 | 1255 int blit_frame=0; |
1256 float a_pts=0; | |
1257 float v_pts=0; | |
2574 | 1258 unsigned char* start=NULL; |
1259 int in_size; | |
2613 | 1260 int skip_flag=0; // 1=skip -1=duplicate |
2531 | 1261 |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1262 if((end_at_type == END_AT_SIZE && end_at <= ftell(muxer_f)) || |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1263 (end_at_type == END_AT_TIME && end_at < sh_video->timer)) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1264 break; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1265 |
2643 | 1266 if(play_n_frames>=0){ |
1267 --play_n_frames; | |
1268 if(play_n_frames<0) break; | |
1269 } | |
1270 | |
2581 | 1271 if(sh_audio){ |
1272 // get audio: | |
2583 | 1273 while(mux_a->timer-audio_preload<mux_v->timer){ |
2653 | 1274 int len=0; |
2581 | 1275 if(mux_a->h.dwSampleSize){ |
2605 | 1276 // CBR - copy 0.5 sec of audio |
2583 | 1277 switch(mux_a->codec){ |
3385 | 1278 case ACODEC_COPY: // copy |
4370 | 1279 len=mux_a->wf->nAvgBytesPerSec/2; |
2583 | 1280 len/=mux_a->h.dwSampleSize;if(len<1) len=1; |
1281 len*=mux_a->h.dwSampleSize; | |
1282 len=demux_read_data(sh_audio->ds,mux_a->buffer,len); | |
1283 break; | |
1284 case ACODEC_PCM: | |
1285 len=mux_a->h.dwSampleSize*(mux_a->h.dwRate/2); | |
2591 | 1286 len=dec_audio(sh_audio,mux_a->buffer,len); |
2583 | 1287 break; |
1288 } | |
2581 | 1289 } else { |
2605 | 1290 // VBR - encode/copy an audio frame |
1291 switch(mux_a->codec){ | |
3385 | 1292 case ACODEC_COPY: // copy |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1293 len=ds_get_packet(sh_audio->ds,(unsigned char**) &mux_a->buffer); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1294 // printf("VBR audio framecopy not yet implemented!\n"); |
2605 | 1295 break; |
3357 | 1296 #ifdef HAVE_MP3LAME |
2605 | 1297 case ACODEC_VBRMP3: |
2591 | 1298 while(mux_a->buffer_len<4){ |
1299 unsigned char tmp[2304]; | |
1300 int len=dec_audio(sh_audio,tmp,2304); | |
1301 if(len<=0) break; // eof | |
1302 len=lame_encode_buffer_interleaved(lame, | |
1303 tmp,len/4, | |
1304 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
1305 if(len<0) break; // error | |
1306 mux_a->buffer_len+=len; | |
1307 } | |
1308 if(mux_a->buffer_len<4) break; | |
1309 len=mp_decode_mp3_header(mux_a->buffer); | |
2639 | 1310 //printf("%d\n",len); |
2591 | 1311 if(len<=0) break; // bad frame! |
1312 while(mux_a->buffer_len<len){ | |
1313 unsigned char tmp[2304]; | |
1314 int len=dec_audio(sh_audio,tmp,2304); | |
1315 if(len<=0) break; // eof | |
1316 len=lame_encode_buffer_interleaved(lame, | |
1317 tmp,len/4, | |
1318 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len); | |
1319 if(len<0) break; // error | |
1320 mux_a->buffer_len+=len; | |
1321 } | |
2605 | 1322 break; |
3357 | 1323 #endif |
2605 | 1324 } |
2581 | 1325 } |
2583 | 1326 if(len<=0) break; // EOF? |
1327 aviwrite_write_chunk(muxer,mux_a,muxer_f,len,0); | |
2655 | 1328 if(!mux_a->h.dwSampleSize && mux_a->timer>0) |
3354 | 1329 mux_a->wf->nAvgBytesPerSec=0.5f+(double)mux_a->size/mux_a->timer; // avg bps (VBR) |
2591 | 1330 if(mux_a->buffer_len>=len){ |
1331 mux_a->buffer_len-=len; | |
1332 memcpy(mux_a->buffer,mux_a->buffer+len,mux_a->buffer_len); | |
1333 } | |
2581 | 1334 } |
1335 } | |
1336 | |
1337 // get video frame! | |
1338 in_size=video_read_frame(sh_video,&frame_time,&start,force_fps); | |
1339 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
|
1340 sh_video->timer+=frame_time; ++decoded_frameno; |
2613 | 1341 |
1342 v_timer_corr-=frame_time-(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
2531 | 1343 |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1344 if(demuxer2){ |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1345 // find our frame: |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1346 while(next_frameno<decoded_frameno){ |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1347 int* start; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1348 int len=ds_get_packet(demuxer2->video,(unsigned char**) &start); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1349 if(len<0){ eof=1;break;} |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1350 if(len==0) --skip_flag; else // duplicate |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1351 if(len==4) next_frameno=start[0]; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1352 } |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1353 if(eof) break; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1354 if(skip_flag) printf("!!!!!!!!!!!!\n"); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1355 skip_flag=next_frameno-decoded_frameno; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1356 // find next frame: |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1357 while(next_frameno<=decoded_frameno){ |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1358 int* start; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1359 int len=ds_get_packet(demuxer2->video,(unsigned char**) &start); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1360 if(len<0){ eof=1;break;} |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1361 if(len==0) --skip_flag; else // duplicate |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1362 if(len==4) next_frameno=start[0]; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1363 } |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1364 // if(eof) break; |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1365 // printf("Current fno=%d requested=%d skip=%d \n",decoded_frameno,fno,skip_flag); |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1366 } else { |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1367 |
2613 | 1368 // check frame duplicate/drop: |
1369 | |
1370 if(v_timer_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
1371 v_timer_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1372 ++skip_flag; // skip | |
1373 } else | |
1374 while(v_timer_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate){ | |
1375 v_timer_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1376 --skip_flag; // dup | |
1377 } | |
2531 | 1378 |
2613 | 1379 while( (v_pts_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag>0) |
1380 || (v_pts_corr<=-2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ){ | |
1381 v_pts_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1382 --skip_flag; // dup | |
1383 } | |
1384 if( (v_pts_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag<0) | |
1385 || (v_pts_corr>=2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ) | |
1386 if(skip_flag<=0){ // we can't skip more than 1 frame now | |
1387 v_pts_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate; | |
1388 ++skip_flag; // skip | |
1389 } | |
1390 | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1391 } // demuxer2 |
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1392 |
4088 | 1393 #ifdef USE_DVDREAD |
1394 // DVD sub: | |
1395 if(vo_spudec){ | |
1396 unsigned char* packet=NULL; | |
1397 int len; | |
1398 while((len=ds_get_packet_sub(d_dvdsub,&packet))>0){ | |
1399 mp_msg(MSGT_MENCODER,MSGL_V,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f \n",len,d_video->pts,d_dvdsub->pts); | |
1400 spudec_assemble(vo_spudec,packet,len,100*d_dvdsub->pts); | |
1401 } | |
1402 spudec_heartbeat(vo_spudec,100*d_video->pts); | |
1403 } | |
1404 #endif | |
2613 | 1405 |
2531 | 1406 switch(mux_v->codec){ |
3384 | 1407 case VCODEC_COPY: |
2574 | 1408 mux_v->buffer=start; |
2639 | 1409 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,in_size,(sh_video->ds->flags&1)?0x10:0); |
2574 | 1410 break; |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1411 case VCODEC_RAWRGB: |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1412 { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1413 static uint8_t* raw_rgb_buffer = NULL; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1414 static uint8_t* raw_rgb_buffer2 = NULL; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1415 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1416 if(!raw_rgb_buffer) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1417 raw_rgb_buffer = malloc(vo_w*vo_h*4); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1418 raw_rgb_buffer2 = malloc(vo_w*vo_h*4); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1419 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1420 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1421 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1422 if(skip_flag>0) break; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1423 if(!blit_frame){ |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1424 // empty. |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1425 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1426 break; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1427 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1428 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1429 /* Uncompressed avi files store rgb data with the top most row last so we |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1430 * have to flip the frames. */ |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1431 if(IMGFMT_IS_BGR(out_fmt)) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1432 if(IMGFMT_BGR_DEPTH(out_fmt) == 32) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1433 rgb32to24(vo_image_ptr, raw_rgb_buffer, vo_w*vo_h*4); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1434 mux_v->buffer = flip_upside_down(raw_rgb_buffer, raw_rgb_buffer, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1435 vo_w*3, vo_h); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1436 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1437 else |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1438 mux_v->buffer = flip_upside_down(raw_rgb_buffer, vo_image_ptr, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1439 vo_w*3, vo_h); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1440 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1441 else if(IMGFMT_IS_RGB(out_fmt)) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1442 if(IMGFMT_RGB_DEPTH(out_fmt) == 32) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1443 rgb32tobgr32(vo_image_ptr, raw_rgb_buffer2, vo_w*vo_h*4); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1444 rgb32to24(raw_rgb_buffer2, raw_rgb_buffer, vo_w*vo_h*4); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1445 mux_v->buffer = flip_upside_down(raw_rgb_buffer, raw_rgb_buffer, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1446 vo_w*3, vo_h); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1447 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1448 else |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1449 mux_v->buffer = flip_upside_down(raw_rgb_buffer, vo_image_ptr, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1450 vo_w*3, vo_h); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1451 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1452 else { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1453 yuv2rgb(raw_rgb_buffer, vo_image_ptr, vo_image_ptr + vo_w*vo_h*5/4, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1454 vo_image_ptr + vo_w*vo_h, vo_w, vo_h, vo_w*24/8, vo_w, vo_w/2); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1455 mux_v->buffer = flip_upside_down(raw_rgb_buffer, raw_rgb_buffer, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1456 vo_w*3, vo_h); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1457 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1458 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1459 aviwrite_write_chunk(muxer,mux_v,muxer_f, vo_w*vo_h*3, 0x10); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1460 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1461 break; |
3480 | 1462 case VCODEC_RAW: |
1463 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); | |
1464 if(skip_flag>0) break; | |
1465 if(!blit_frame){ | |
1466 // empty. | |
1467 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1468 break; | |
1469 } | |
1470 mux_v->buffer = vo_image_ptr; | |
1471 aviwrite_write_chunk(muxer,mux_v,muxer_f,mux_v->buffer_size,0x10); | |
1472 break; | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1473 case VCODEC_FRAMENO: { |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1474 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
|
1475 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,sizeof(int),0x10); |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1476 break; } |
4575 | 1477 #ifdef USE_WIN32DLL |
1478 case VCODEC_VFW: { | |
1479 //int vfw_encode_frame(BITMAPINFOHEADER* biOutput,void* OutBuf, | |
1480 // BITMAPINFOHEADER* biInput,void* Image, | |
1481 // long* keyframe, int quality); | |
1482 long flags=0; | |
1483 int ret; | |
1484 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); | |
1485 if(skip_flag>0) break; | |
1486 if(!blit_frame){ | |
1487 // empty. | |
1488 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1489 break; | |
1490 } | |
4625 | 1491 flip_upside_down(vo_image_ptr,vo_image_ptr,3*vo_w,vo_h); // dirty hack |
4575 | 1492 ret=vfw_encode_frame(mux_v->bih, mux_v->buffer, vfw_bih, vo_image_ptr, &flags, 10000); |
1493 // printf("vfw_encode_frame -> %d (size=%d,flag=%X)\n",ret,mux_v->bih->biSizeImage,flags); | |
1494 aviwrite_write_chunk(muxer,mux_v,muxer_f,mux_v->bih->biSizeImage,flags); | |
1495 break; | |
1496 } | |
1497 #endif | |
2531 | 1498 case VCODEC_DIVX4: |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1499 #ifndef HAVE_DIVX4ENCORE |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1500 printf("No support for Divx4 encore compiled in\n"); |
4743 | 1501 mencoder_exit(1,NULL); |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1502 #else |
2574 | 1503 blit_frame=decode_video(&video_out,sh_video,start,in_size,0); |
4088 | 1504 draw_sub(); |
2639 | 1505 if(skip_flag>0) break; |
2574 | 1506 if(!blit_frame){ |
1507 // empty. | |
1508 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1509 break; | |
1510 } | |
2531 | 1511 enc_frame.image=vo_image_ptr; |
1512 enc_frame.bitstream=mux_v->buffer; | |
1513 enc_frame.length=mux_v->buffer_size; | |
2643 | 1514 enc_frame.mvs=NULL; |
2531 | 1515 enc_frame.quant=0; |
1516 enc_frame.intra=0; | |
3377
4723f6fd750a
do not fault if 2pass VbrControl can't open the logfile
alex
parents:
3363
diff
changeset
|
1517 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
|
1518 enc_frame.quant = VbrControl_get_quant(); |
2643 | 1519 enc_frame.intra = VbrControl_get_intra(); |
1520 encore(enc_handle,ENC_OPT_ENCODE_VBR,&enc_frame,&enc_result); | |
1521 VbrControl_update_2pass_vbr_encoding(enc_result.motion_bits, | |
1522 enc_result.texture_bits, | |
1523 enc_result.total_bits); | |
1524 } else { | |
1525 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
|
1526 if(pass==1 && pass_working){ |
2643 | 1527 VbrControl_update_2pass_vbr_analysis(enc_result.is_key_frame, |
1528 enc_result.motion_bits, | |
1529 enc_result.texture_bits, | |
1530 enc_result.total_bits, | |
1531 enc_result.quantizer); | |
1532 } | |
1533 } | |
1534 | |
2531 | 1535 // printf("encoding...\n"); |
1536 // printf(" len=%d key:%d qualt:%d \n",enc_frame.length,enc_result.is_key_frame,enc_result.quantizer); | |
1537 aviwrite_write_chunk(muxer,mux_v,muxer_f,enc_frame.length,enc_result.is_key_frame?0x10:0); | |
1538 break; | |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1539 #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
|
1540 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
|
1541 { |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1542 #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
|
1543 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
|
1544 #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
|
1545 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
|
1546 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1547 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
|
1548 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
|
1549 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
|
1550 // 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
|
1551 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
|
1552 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
|
1553 } |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1554 |
af1f8e2d693a
added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
alex
parents:
3563
diff
changeset
|
1555 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
|
1556 &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
|
1557 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
|
1558 #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
|
1559 } |
2531 | 1560 } |
2613 | 1561 |
1562 if(skip_flag<0){ | |
2605 | 1563 // duplicate frame |
2613 | 1564 printf("\nduplicate %d frame(s)!!! \n",-skip_flag); |
1565 while(skip_flag<0){ | |
1566 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0); | |
1567 ++skip_flag; | |
1568 } | |
2639 | 1569 } else |
1570 if(skip_flag>0){ | |
2605 | 1571 // skip frame |
1572 printf("\nskip frame!!! \n"); | |
2613 | 1573 --skip_flag; |
2605 | 1574 } |
1575 | |
4367
c2be4fb65cee
3-pass encoding support (reads frame skip/dup control and audio stream from frameno.avi)
arpi
parents:
4365
diff
changeset
|
1576 if(sh_audio && !demuxer2){ |
2605 | 1577 float AV_delay,x; |
1578 // A-V sync! | |
1579 if(pts_from_bps){ | |
1580 unsigned int samples=(sh_audio->audio.dwSampleSize)? | |
1581 ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) : | |
1582 (d_audio->pack_no); // <- used for VBR audio | |
4378 | 1583 // printf("samples=%d \n",samples); |
2605 | 1584 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate; |
1585 delay_corrected=1; | |
1586 } else { | |
1587 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) | |
1588 a_pts=d_audio->pts; | |
1589 if(!delay_corrected) if(a_pts) delay_corrected=1; | |
1590 //printf("*** %5.3f ***\n",a_pts); | |
1591 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; | |
1592 } | |
1593 v_pts=d_video->pts; | |
1594 // av = compensated (with out buffering delay) A-V diff | |
2613 | 1595 AV_delay=(a_pts-v_pts); AV_delay-=mux_a->timer-(mux_v->timer-(v_timer_corr+v_pts_corr)); |
2605 | 1596 // compensate input video timer by av: |
1597 x=AV_delay*0.1f; | |
1598 if(x<-max_pts_correction) x=-max_pts_correction; else | |
1599 if(x> max_pts_correction) x= max_pts_correction; | |
1600 if(default_max_pts_correction>=0) | |
1601 max_pts_correction=default_max_pts_correction; | |
1602 else | |
1603 max_pts_correction=sh_video->frametime*0.10; // +-10% of time | |
1604 // sh_video->timer-=x; | |
1605 c_total+=x; | |
2613 | 1606 v_pts_corr+=x; |
4387 | 1607 } |
2605 | 1608 |
4387 | 1609 // printf("A:%6.1f V:%6.1f A-V:%7.3f oAV:%7.3f diff:%7.3f ct:%7.3f vpc:%7.3f \r", |
1610 // a_pts,v_pts,a_pts-v_pts, | |
1611 // (float)(mux_a->timer-mux_v->timer), | |
1612 // AV_delay, c_total, v_pts_corr ); | |
1613 // printf("V:%6.1f \r", d_video->pts ); | |
2605 | 1614 |
1615 #if 0 | |
1616 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", | |
1617 a_pts,v_pts,a_pts-v_pts,c_total, | |
1618 (int)sh_video->num_frames,(int)sh_video->num_frames_decoded, | |
1619 (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0, | |
1620 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0, | |
1621 (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0 | |
1622 ,cache_fill_status | |
1623 ); | |
1624 #endif | |
1625 | |
4387 | 1626 { float t=(GetTimerMS()-timer_start)*0.001f; |
1627 float len=(demuxer->movi_end-demuxer->movi_start); | |
1628 float p=len>1000 ? (float)(demuxer->filepos-demuxer->movi_start) / len : 0; | |
4393 | 1629 if(!len && sh_audio && sh_audio->audio.dwLength>100){ |
1630 p=(sh_audio->audio.dwSampleSize? ds_tell(sh_audio->ds)/sh_audio->audio.dwSampleSize : sh_audio->ds->pack_no) | |
1631 / (float)(sh_audio->audio.dwLength); | |
1632 } | |
4392
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1633 #if 0 |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1634 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"%d < %d < %d \r", |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1635 (int)demuxer->movi_start, |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1636 (int)demuxer->filepos, |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1637 (int)demuxer->movi_end); |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1638 #else |
4394 | 1639 mp_msg(MSGT_AVSYNC,MSGL_STATUS,"Pos:%6.1fs %6df (%2d%%) %3dfps Trem:%4dmin %3dmb A-V:%5.3f [%d:%d]\r", |
4387 | 1640 mux_v->timer, decoded_frameno, (int)(p*100), |
1641 (t>1) ? (int)(decoded_frameno/t) : 0, | |
4392
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1642 (p>0.001) ? (int)((t/p-t)/60) : 0, |
4387 | 1643 (p>0.001) ? (int)(ftell(muxer_f)/p/1024/1024) : 0, |
4394 | 1644 v_pts_corr, |
1645 (mux_v->timer>1) ? (int)(mux_v->size/mux_v->timer/125) : 0, | |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1646 (mux_a && mux_a->timer>1) ? (int)(mux_a->size/mux_a->timer/125) : 0 |
4387 | 1647 ); |
4392
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1648 #endif |
4387 | 1649 } |
1650 | |
2605 | 1651 fflush(stdout); |
1652 | |
2531 | 1653 |
1654 | |
1655 } // while(!eof) | |
1656 | |
3357 | 1657 #ifdef HAVE_MP3LAME |
1658 // fixup CBR mp3 audio header: | |
3354 | 1659 if(sh_audio && mux_a->codec==ACODEC_VBRMP3 && !lame_param_vbr){ |
1660 mux_a->h.dwSampleSize=1; | |
1661 mux_a->h.dwRate=mux_a->wf->nAvgBytesPerSec; | |
1662 mux_a->h.dwScale=1; | |
1663 printf("\n\nCBR audio effective bitrate: %8.3f kbit/s (%d bytes/sec)\n", | |
1664 mux_a->h.dwRate*8.0f/1000.0f,mux_a->h.dwRate); | |
1665 } | |
3357 | 1666 #endif |
3354 | 1667 |
3663
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1668 #ifdef USE_LIBAVCODEC |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1669 if (mux_v->codec == VCODEC_LIBAVCODEC) |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1670 avcodec_close(&lavc_venc_context); |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1671 #endif |
9092546e7765
made divx4 optional (also configure checking needed) and added avcodec_close
alex
parents:
3657
diff
changeset
|
1672 |
2840
808fe0767cf8
fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents:
2825
diff
changeset
|
1673 printf("\nWriting AVI index...\n"); |
2531 | 1674 aviwrite_write_index(muxer,muxer_f); |
4377 | 1675 muxer_f_size=ftell(muxer_f); |
2622 | 1676 printf("Fixup AVI header...\n"); |
2531 | 1677 fseek(muxer_f,0,SEEK_SET); |
1678 aviwrite_write_header(muxer,muxer_f); // update header | |
4377 | 1679 fclose(muxer_f); |
4368 | 1680 |
1681 if(out_video_codec==VCODEC_FRAMENO && mux_v->timer>100){ | |
4392
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1682 printf("Recommended video bitrate for 650MB CD: %d\n",(int)((650*1024*1024-muxer_f_size)/mux_v->timer/125)); |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1683 printf("Recommended video bitrate for 700MB CD: %d\n",(int)((700*1024*1024-muxer_f_size)/mux_v->timer/125)); |
b50b2b0c65ea
status print fixes - DVD estimation worx, print remaining time instead of total
arpi
parents:
4388
diff
changeset
|
1684 printf("Recommended video bitrate for 800MB CD: %d\n",(int)((800*1024*1024-muxer_f_size)/mux_v->timer/125)); |
4368 | 1685 } |
1686 | |
4355 | 1687 printf("\nVideo stream: %8.3f kbit/s (%d bps) size: %d bytes %5.3f secs %d frames\n", |
1688 (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, decoded_frameno); | |
3361
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1689 if(sh_audio) |
5d70491f438c
new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents:
3357
diff
changeset
|
1690 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
|
1691 (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
|
1692 |
2618 | 1693 if(stream) free_stream(stream); // kill cache thread |
1694 | |
3320
ac8b70dd5e45
use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents:
3240
diff
changeset
|
1695 return interrupted; |
2531 | 1696 } |
4159
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1697 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1698 static int parse_end_at(struct config *conf, const char* param) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1699 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1700 int i; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1701 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1702 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1703 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1704 /* End at size parsing */ |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1705 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1706 char unit[4]; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1707 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1708 end_at_type = END_AT_SIZE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1709 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1710 if(sscanf(param, "%d%3s", &end_at, unit) == 2) { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1711 if(!strcasecmp(unit, "b")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1712 ; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1713 else if(!strcasecmp(unit, "kb")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1714 end_at *= 1024; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1715 else if(!strcasecmp(unit, "mb")) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1716 end_at *= 1024*1024; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1717 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1718 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1719 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1720 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1721 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1722 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1723 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1724 /* End at time parsing. This has to be last because of |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1725 * sscanf("%f", ...) below */ |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1726 if(end_at_type == END_AT_NONE) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1727 { |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1728 int a,b; float d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1729 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1730 end_at_type = END_AT_TIME; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1731 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1732 if (sscanf(param, "%d:%d:%f", &a, &b, &d) == 3) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1733 end_at = 3600*a + 60*b + d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1734 else if (sscanf(param, "%d:%f", &a, &d) == 2) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1735 end_at = 60*a + d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1736 else if (sscanf(param, "%f", &d) == 1) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1737 end_at = d; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1738 else |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1739 end_at_type = END_AT_NONE; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1740 } |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1741 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1742 if(end_at_type == END_AT_NONE) |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1743 return ERR_FUNC_ERR; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1744 |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1745 return 1; |
42fec596fe7c
-endpos option, patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4156
diff
changeset
|
1746 } |
4427
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1747 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1748 /* Flip the image in src and store the result in dst. src and dst may overlap. |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1749 width is the size of each line in bytes. */ |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1750 static uint8_t* flip_upside_down(uint8_t* dst, const uint8_t* src, int width, |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1751 int height) |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1752 { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1753 uint8_t* tmp = malloc(width); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1754 int i; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1755 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1756 for(i = 0; i < height/2; i++) { |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1757 memcpy(tmp, &src[i*width], width); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1758 memcpy(&dst[i * width], &src[(height - i) * width], width); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1759 memcpy(&dst[(height - i) * width], tmp, width); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1760 } |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1761 |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1762 free(tmp); |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1763 return dst; |
6310422b9557
new video format: yuvrgb. patch by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
4408
diff
changeset
|
1764 } |