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