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