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