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