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