annotate mencoder.c @ 3563:3d73514ddefc

precaching
author arpi
date Mon, 17 Dec 2001 16:56:56 +0000
parents 48f3b07e174f
children af1f8e2d693a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3384
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
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
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
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
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
6
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
7 #define ACODEC_COPY 0
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
8 #define ACODEC_PCM 1
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
9 #define ACODEC_VBRMP3 2
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
10
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
11 #include <stdio.h>
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
12 #include <stdlib.h>
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
13 #include <string.h>
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
14 #include <signal.h>
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
15
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
16 #include "config.h"
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
17 #include "mp_msg.h"
2978
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
18 #include "version.h"
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
19 #include "help_mp.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
20
2978
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
21 static char* banner_text=
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
22 "\n\n"
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
23 "MEncoder " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS!)\n"
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
24 "\n";
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
25
3323
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
26 #include "cpudetect.h"
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
27
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
28
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
29 #include "codec-cfg.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
30
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
31 #include "stream.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
32 #include "demuxer.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
33 #include "stheader.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
34
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
35 #include "aviwrite.h"
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
36
2897
283eab7c4c8e Added proper #include's for libvo2
mswitch
parents: 2887
diff changeset
37 #ifdef USE_LIBVO2
283eab7c4c8e Added proper #include's for libvo2
mswitch
parents: 2887
diff changeset
38 #include "libvo2/libvo2.h"
283eab7c4c8e Added proper #include's for libvo2
mswitch
parents: 2887
diff changeset
39 #else
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
40 #include "libvo/video_out.h"
2897
283eab7c4c8e Added proper #include's for libvo2
mswitch
parents: 2887
diff changeset
41 #endif
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
42
2574
arpi
parents: 2571
diff changeset
43 #include "dec_audio.h"
arpi
parents: 2571
diff changeset
44 #include "dec_video.h"
arpi
parents: 2571
diff changeset
45
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
46 #include <encore2.h>
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
47 #include "divx4_vbr.h"
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
48
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
49 #ifdef HAVE_MP3LAME
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
50 #include <lame/lame.h>
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
51 #endif
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
52
3521
48f3b07e174f Patch by Adam Di Carlo <adam@onshore-devel.com>:
pl
parents: 3504
diff changeset
53 #ifdef HAVE_LIBCSS
48f3b07e174f Patch by Adam Di Carlo <adam@onshore-devel.com>:
pl
parents: 3504
diff changeset
54 #include "libmpdemux/dvdauth.h"
48f3b07e174f Patch by Adam Di Carlo <adam@onshore-devel.com>:
pl
parents: 3504
diff changeset
55 #endif
48f3b07e174f Patch by Adam Di Carlo <adam@onshore-devel.com>:
pl
parents: 3504
diff changeset
56
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
57 #include <inttypes.h>
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
58 #include "../postproc/swscale.h"
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
59
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
60 #include "fastmemcpy.h"
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
61
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
62 //--------------------------
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
63
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
64 // cache2:
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
65 static int stream_cache_size=0;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
66 #ifdef USE_STREAM_CACHE
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
67 extern int cache_fill_status;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
68 #else
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
69 #define cache_fill_status 0
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
70 #endif
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
71
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
72 int vcd_track=0;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
73 int audio_id=-1;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
74 int video_id=-1;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
75 int dvdsub_id=-1;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
76
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
77 char *audio_codec=NULL; // override audio codec
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
78 char *video_codec=NULL; // override video codec
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
79 int audio_family=-1; // override audio codec family
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
80 int video_family=-1; // override video codec family
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
81
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
82 #ifdef HAVE_MP3LAME
2661
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
83 int out_audio_codec=ACODEC_VBRMP3;
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
84 #else
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
85 int out_audio_codec=ACODEC_PCM;
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
86 #endif
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
87
2661
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
88 int out_video_codec=VCODEC_DIVX4;
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
89
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
90 // audio stream skip/resync functions requires only for seeking.
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
91 // (they should be implemented in the audio codec layer)
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
92 //void skip_audio_frame(sh_audio_t *sh_audio){}
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
93 //void resync_audio_stream(sh_audio_t *sh_audio){}
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
94
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
95 int verbose=0; // must be global!
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
96
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
97 double video_time_usage=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
98 double vout_time_usage=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
99 static double audio_time_usage=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
100 static int total_time_usage_start=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
101 static int benchmark=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
102
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
103 // A-V sync:
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
104 int delay_corrected=1;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
105 static float default_max_pts_correction=-1;//0.01f;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
106 static float max_pts_correction=0;//default_max_pts_correction;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
107 static float c_total=0;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
108
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
109 float force_fps=0;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
110 float force_ofps=0; // set to 24 for inverse telecine
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
111
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
112 int force_srate=0;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
113
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
114 char* out_filename="test.avi";
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
115 char* mp3_filename=NULL;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
116 char* ac3_filename=NULL;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
117
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
118 static int pass=0;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
119 static char* passtmpfile="divx2pass.log";
3377
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
120 int pass_working=0;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
121
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
122 static int play_n_frames=-1;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
123
2661
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
124 //char *out_audio_codec=NULL; // override audio codec
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
125 //char *out_video_codec=NULL; // override video codec
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
126
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
127 //#include "libmpeg2/mpeg2.h"
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
128 //#include "libmpeg2/mpeg2_internal.h"
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
129
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
130 ENC_PARAM divx4_param;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
131 int divx4_crispness=100;
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
132
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
133 #ifdef HAVE_MP3LAME
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
134 int lame_param_quality=0; // best
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
135 int lame_param_vbr=vbr_default;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
136 int lame_param_mode=-1; // unset
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
137 int lame_param_padding=-1; // unset
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
138 int lame_param_br=-1; // unset
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
139 int lame_param_ratio=-1; // unset
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
140 #endif
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
141
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
142 static int scale_srcW=0;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
143 static int scale_srcH=0;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
144 static int vo_w=0, vo_h=0;
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
145 //-------------------------- config stuff:
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
146
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
147 #include "cfgparser.h"
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
148
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
149 static int cfg_inc_verbose(struct config *conf){ ++verbose; return 0;}
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
150
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
151 static int cfg_include(struct config *conf, char *filename){
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
152 return parse_config_file(conf, filename);
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
153 }
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
154
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
155 #include "get_path.c"
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
156
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
157 #include "cfg-mplayer-def.h"
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
158 #include "cfg-mencoder.h"
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
159
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
160 //---------------------------------------------------------------------------
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
161
2627
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
162 // dummy datas for gui :(
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
163
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
164 #ifdef HAVE_NEW_GUI
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
165 float rel_seek_secs=0;
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
166 int abs_seek_pos=0;
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
167 int use_gui=0;
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
168
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
169 void exit_player(char* how){
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
170 }
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
171 void vo_x11_putkey(int key){
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
172 }
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
173 void vo_setwindow( int w,int g ) {
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
174 }
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
175 void vo_setwindowsize( int w,int h ) {
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
176 }
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
177
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
178 int vo_resize = 0;
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
179 int vo_expose = 0;
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
180
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
181 #endif
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
182 // ---
29bc08cc8e43 kurva gui.
pontscho
parents: 2626
diff changeset
183
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
184 // mini dummy libvo:
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
185
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
186 static unsigned char* vo_image=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
187 static unsigned char* vo_image_ptr=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
188
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
189 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h, int x0,int y0){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
190 int y;
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
191 // printf("draw_slice %dx%d %d;%d\n",w,h,x0,y0);
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
192 if(scale_srcW)
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
193 {
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
194 uint8_t* dstPtr[3]= {
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
195 vo_image,
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
196 vo_image + vo_w*vo_h*5/4,
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
197 vo_image + vo_w*vo_h};
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
198 SwScale_YV12slice(src, stride, y0, h, dstPtr, vo_w, 12, scale_srcW, scale_srcH, vo_w, vo_h);
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
199 }
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
200 else
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
201 {
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
202 // copy Y:
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
203 for(y=0;y<h;y++){
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
204 unsigned char* s=src[0]+stride[0]*y;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
205 unsigned char* d=vo_image+vo_w*(y0+y)+x0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
206 memcpy(d,s,w);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
207 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
208 x0>>=1;y0>>=1;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
209 w>>=1;h>>=1;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
210 // copy U:
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
211 for(y=0;y<h;y++){
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
212 unsigned char* s=src[2]+stride[2]*y;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
213 unsigned char* d=vo_image+vo_w*vo_h+(vo_w>>1)*(y0+y)+x0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
214 memcpy(d,s,w);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
215 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
216 // copy V:
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
217 for(y=0;y<h;y++){
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
218 unsigned char* s=src[1]+stride[1]*y;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
219 unsigned char* d=vo_image+vo_w*vo_h+vo_w*vo_h/4+(vo_w>>1)*(y0+y)+x0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
220 memcpy(d,s,w);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
221 }
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
222 } // !swscaler
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
223 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
224
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
225 static uint32_t draw_frame(uint8_t *src[]){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
226 // printf("This function shouldn't be called - report bug!\n");
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
227 // later: add YUY2->YV12 conversion here!
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
228 vo_image_ptr=src[0];
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
229 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
230
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
231 vo_functions_t video_out;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
232
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
233 //---------------------------------------------------------------------------
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
234
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
235 int dec_audio(sh_audio_t *sh_audio,unsigned char* buffer,int total){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
236 int size=0;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
237 int eof=0;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
238 while(size<total && !eof){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
239 int len=total-size;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
240 if(len>MAX_OUTBURST) len=MAX_OUTBURST;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
241 if(len>sh_audio->a_buffer_size) len=sh_audio->a_buffer_size;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
242 if(len>sh_audio->a_buffer_len){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
243 int ret=decode_audio(sh_audio,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
244 &sh_audio->a_buffer[sh_audio->a_buffer_len],
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
245 len-sh_audio->a_buffer_len,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
246 sh_audio->a_buffer_size-sh_audio->a_buffer_len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
247 if(ret>0) sh_audio->a_buffer_len+=ret; else eof=1;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
248 }
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
249 if(len>sh_audio->a_buffer_len) len=sh_audio->a_buffer_len;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
250 memcpy(buffer+size,sh_audio->a_buffer,len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
251 sh_audio->a_buffer_len-=len; size+=len;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
252 if(sh_audio->a_buffer_len>0)
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
253 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[len],sh_audio->a_buffer_len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
254 }
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
255 return size;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
256 }
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
257
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
258 //---------------------------------------------------------------------------
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
259
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
260 static int eof=0;
3320
ac8b70dd5e45 use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents: 3240
diff changeset
261 static int interrupted=0;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
262
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
263 static void exit_sighandler(int x){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
264 eof=1;
3320
ac8b70dd5e45 use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents: 3240
diff changeset
265 interrupted=1;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
266 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
267
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
268 int main(int argc,char* argv[], char *envp[]){
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
269
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
270 stream_t* stream=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
271 demuxer_t* demuxer=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
272 demux_stream_t *d_audio=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
273 demux_stream_t *d_video=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
274 demux_stream_t *d_dvdsub=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
275 sh_audio_t *sh_audio=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
276 sh_video_t *sh_video=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
277 int file_format=DEMUXER_TYPE_UNKNOWN;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
278 int i;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
279 unsigned int out_fmt;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
280
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
281 aviwrite_t* muxer=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
282 aviwrite_stream_t* mux_a=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
283 aviwrite_stream_t* mux_v=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
284 FILE* muxer_f=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
285
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
286 ENC_FRAME enc_frame;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
287 ENC_RESULT enc_result;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
288 void* enc_handle=NULL;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
289
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
290 #ifdef HAVE_MP3LAME
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
291 lame_global_flags *lame;
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
292 #endif
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
293
2653
a863a97f3a1c WMP compatibility fixed
arpi
parents: 2643
diff changeset
294 float audio_preload=0.5;
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
295
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
296 double v_pts_corr=0;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
297 double v_timer_corr=0;
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
298
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
299 char** filenames=NULL;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
300 char* filename=NULL;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
301 int num_filenames;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
302
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
303 int decoded_frameno=0;
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
304
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
305 //int out_buffer_size=0x200000;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
306 //unsigned char* out_buffer=malloc(out_buffer_size);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
307
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
308 mp_msg_init(MSGL_STATUS);
2978
6be2873a5a91 banner + version printed
arpi
parents: 2897
diff changeset
309 mp_msg(MSGT_CPLAYER,MSGL_INFO,"%s",banner_text);
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
310
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
311 // check codec.conf
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
312 if(!parse_codec_cfg(get_path("codecs.conf"))){
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
313 if(!parse_codec_cfg(DATADIR"/codecs.conf")){
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
314 mp_msg(MSGT_MENCODER,MSGL_HINT,MSGTR_CopyCodecsConf);
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
315 exit(0);
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
316 }
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
317 }
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
318
3323
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
319 /* Test for cpu capabilities (and corresponding OS support) for optimizing */
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
320 #ifdef ARCH_X86
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
321 GetCpuCaps(&gCpuCaps);
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
322 mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: Type: %d MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n",
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
323 gCpuCaps.cpuType,gCpuCaps.hasMMX,gCpuCaps.hasMMX2,
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
324 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
325 gCpuCaps.hasSSE, gCpuCaps.hasSSE2);
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
326 #endif
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
327
7cd9dd989662 CPU detection added
arpi
parents: 3320
diff changeset
328
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
329 // set some defaults, before parsing configfile/commandline:
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
330 divx4_param.min_quantizer = 2;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
331 divx4_param.max_quantizer = 31;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
332 divx4_param.rc_period = 2000;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
333 divx4_param.rc_reaction_period = 10;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
334 divx4_param.rc_reaction_ratio = 20;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
335
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
336
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
337 num_filenames=parse_command_line(conf, argc, argv, envp, &filenames);
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
338 if(num_filenames<0) exit(1); // error parsing cmdline
3378
f62a86a9ecf1 no filename needed for tv grabbing
alex
parents: 3377
diff changeset
339 if(!num_filenames && !vcd_track && !dvd_title && !tv_param_on){
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
340 printf("\nMissing filename!\n\n");
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
341 exit(1);
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
342 }
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
343
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
344 mp_msg_init(verbose+MSGL_STATUS);
2600
51a88ac2a602 nosound fixed?
arpi
parents: 2591
diff changeset
345
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
346 filename=(num_filenames>0)?filenames[0]:NULL;
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
347 stream=open_stream(filename,vcd_track,&file_format);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
348
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
349 if(!stream){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
350 printf("Cannot open file/device\n");
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
351 exit(1);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
352 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
353
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
354 printf("success: format: %d data: 0x%X - 0x%X\n",file_format, (int)(stream->start_pos),(int)(stream->end_pos));
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
355
3563
3d73514ddefc precaching
arpi
parents: 3521
diff changeset
356 if(stream_cache_size) stream_enable_cache(stream,stream_cache_size*1024,0,0);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
357
2882
2fd108f6bc68 -aid fixed
arpi
parents: 2840
diff changeset
358 //demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id);
2fd108f6bc68 -aid fixed
arpi
parents: 2840
diff changeset
359 demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
360 if(!demuxer){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
361 printf("Cannot open demuxer\n");
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
362 exit(1);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
363 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
364
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
365 d_audio=demuxer->audio;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
366 d_video=demuxer->video;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
367 d_dvdsub=demuxer->sub;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
368 sh_audio=d_audio->sh;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
369 sh_video=d_video->sh;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
370
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
371 if(!video_read_properties(sh_video)){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
372 printf("Couldn't read video properties\n");
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
373 exit(1);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
374 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
375
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
376 mp_msg(MSGT_MENCODER,MSGL_INFO,"[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n",
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
377 demuxer->file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h,
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
378 sh_video->fps,sh_video->frametime
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
379 );
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
380
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
381
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
382 sh_video->codec=NULL;
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
383 if(out_video_codec>1){
2884
d69598d847e0 fourcc mapping fixed
arpi
parents: 2882
diff changeset
384
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
385 if(video_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceVideoFmt,video_family);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
386 while(1){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
387 sh_video->codec=find_codec(sh_video->format,
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
388 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
389 if(!sh_video->codec){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
390 if(video_family!=-1) {
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
391 sh_video->codec=NULL; /* re-search */
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
392 mp_msg(MSGT_MENCODER,MSGL_WARN,MSGTR_CantFindVfmtFallback);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
393 video_family=-1;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
394 continue;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
395 }
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
396 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindVideoCodec,sh_video->format);
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
397 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf"));
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
398 exit(1);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
399 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
400 if(video_codec && strcmp(sh_video->codec->name,video_codec)) continue;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
401 else if(video_family!=-1 && sh_video->codec->driver!=video_family) continue;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
402 break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
403 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
404
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
405 mp_msg(MSGT_MENCODER,MSGL_INFO,"%s video codec: [%s] drv:%d (%s)\n",video_codec?"Forcing":"Detected",sh_video->codec->name,sh_video->codec->driver,sh_video->codec->info);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
406
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
407 for(i=0;i<CODECS_MAX_OUTFMT;i++){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
408 out_fmt=sh_video->codec->outfmt[i];
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
409 if(out_fmt==0xFFFFFFFF) continue;
3504
21fc87d76300 support for RGB/BGR modes (tested with raw and divx4)
alex
parents: 3480
diff changeset
410 if(IMGFMT_IS_RGB(out_fmt) || IMGFMT_IS_BGR(out_fmt)) break;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
411 if(out_fmt==IMGFMT_YV12) break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
412 if(out_fmt==IMGFMT_I420) break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
413 if(out_fmt==IMGFMT_IYUV) break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
414 if(out_fmt==IMGFMT_YUY2) break;
2825
c4b167e07a62 support for UYVY
arpi
parents: 2661
diff changeset
415 if(out_fmt==IMGFMT_UYVY) break;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
416 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
417 if(i>=CODECS_MAX_OUTFMT){
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
418 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_VOincompCodec);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
419 exit(1); // exit_player(MSGTR_Exit_error);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
420 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
421 sh_video->outfmtidx=i;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
422
3240
fbdb14138675 bugfix if only -x or only -y is used
michael
parents: 3236
diff changeset
423 if(out_fmt==IMGFMT_YV12 && (vo_w!=0 || vo_h!=0))
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
424 {
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
425 scale_srcW= sh_video->disp_w;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
426 scale_srcH= sh_video->disp_h;
3240
fbdb14138675 bugfix if only -x or only -y is used
michael
parents: 3236
diff changeset
427 if(!vo_w) vo_w=sh_video->disp_w;
fbdb14138675 bugfix if only -x or only -y is used
michael
parents: 3236
diff changeset
428 if(!vo_h) vo_h=sh_video->disp_h;
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
429 }
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
430 else
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
431 {
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
432 vo_w=sh_video->disp_w;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
433 vo_h=sh_video->disp_h;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
434 }
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
435
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
436 if(out_fmt==IMGFMT_YV12 || out_fmt==IMGFMT_I420 || out_fmt==IMGFMT_IYUV){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
437 vo_image=malloc(vo_w*vo_h*3/2);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
438 vo_image_ptr=vo_image;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
439 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
440
3504
21fc87d76300 support for RGB/BGR modes (tested with raw and divx4)
alex
parents: 3480
diff changeset
441 if (IMGFMT_IS_BGR(out_fmt))
21fc87d76300 support for RGB/BGR modes (tested with raw and divx4)
alex
parents: 3480
diff changeset
442 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
443
21fc87d76300 support for RGB/BGR modes (tested with raw and divx4)
alex
parents: 3480
diff changeset
444 if (IMGFMT_IS_RGB(out_fmt))
21fc87d76300 support for RGB/BGR modes (tested with raw and divx4)
alex
parents: 3480
diff changeset
445 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
446
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
447 if(!init_video(sh_video)){
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
448 mp_msg(MSGT_MENCODER,MSGL_FATAL,MSGTR_CouldntInitVideoCodec);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
449 exit(1);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
450 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
451
2884
d69598d847e0 fourcc mapping fixed
arpi
parents: 2882
diff changeset
452 } // if(out_video_codec)
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
453
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
454 if(sh_audio){
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
455 // Go through the codec.conf and find the best codec...
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
456 sh_audio->codec=NULL;
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
457 if(audio_family!=-1) mp_msg(MSGT_MENCODER,MSGL_INFO,MSGTR_TryForceAudioFmt,audio_family);
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
458 while(1){
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
459 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1);
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
460 if(!sh_audio->codec){
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
461 if(audio_family!=-1) {
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
462 sh_audio->codec=NULL; /* re-search */
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
463 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAfmtFallback);
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
464 audio_family=-1;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
465 continue;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
466 }
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
467 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantFindAudioCodec,sh_audio->format);
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
468 mp_msg(MSGT_MENCODER,MSGL_HINT, MSGTR_TryUpgradeCodecsConfOrRTFM,get_path("codecs.conf"));
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
469 sh_audio=d_audio->sh=NULL;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
470 break;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
471 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
472 if(audio_codec && strcmp(sh_audio->codec->name,audio_codec)) continue;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
473 else if(audio_family!=-1 && sh_audio->codec->driver!=audio_family) continue;
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
474 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
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
475 break;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
476 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
477 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
478
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
479 if(sh_audio){
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
480 mp_msg(MSGT_MENCODER,MSGL_V,"Initializing audio codec...\n");
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
481 if(!init_audio(sh_audio)){
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
482 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CouldntInitAudioCodec);
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
483 sh_audio=d_audio->sh=NULL;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
484 } else {
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
485 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
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
486 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps);
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
487 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
488 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
489
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
490
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
491
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
492 // set up video encoder:
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
493 SwScale_Init();
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
494 video_out.draw_slice=draw_slice;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
495 video_out.draw_frame=draw_frame;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
496
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
497 // set up output file:
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
498 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
499 if(!muxer_f) {
bc648c6a464a fixes a segfault if file specified in -o can't be accessed
pl
parents: 2884
diff changeset
500 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
501 exit(1);
bc648c6a464a fixes a segfault if file specified in -o can't be accessed
pl
parents: 2884
diff changeset
502 }
bc648c6a464a fixes a segfault if file specified in -o can't be accessed
pl
parents: 2884
diff changeset
503
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
504 muxer=aviwrite_new_muxer();
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
505
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
506 // ============= VIDEO ===============
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
507
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
508 mux_v=aviwrite_new_stream(muxer,AVIWRITE_TYPE_VIDEO);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
509
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
510 mux_v->buffer_size=0x200000;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
511 mux_v->buffer=malloc(mux_v->buffer_size);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
512
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
513 mux_v->source=sh_video;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
514
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
515 mux_v->h.dwSampleSize=0; // VBR
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
516 mux_v->h.dwScale=10000;
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
517 mux_v->h.dwRate=mux_v->h.dwScale*(force_ofps?force_ofps:sh_video->fps);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
518
2661
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
519 mux_v->codec=out_video_codec;
2574
arpi
parents: 2571
diff changeset
520
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
521 switch(mux_v->codec){
3384
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
522 case VCODEC_COPY:
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
523 printf("sh_video->bih: %x\n", sh_video->bih);
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
524 if (sh_video->bih)
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
525 mux_v->bih=sh_video->bih;
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
526 else
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
527 {
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
528 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
529 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
530 mux_v->bih->biWidth=sh_video->disp_w;
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
531 mux_v->bih->biHeight=sh_video->disp_h;
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
532 mux_v->bih->biCompression=sh_video->format;
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
533 mux_v->bih->biPlanes=1;
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
534 mux_v->bih->biBitCount=24; // FIXME!!!
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
535 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8);
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
536 }
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
537 printf("videocodec: framecopy (%dx%d %dbpp fourcc=%x)\n",
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
538 mux_v->bih->biWidth, mux_v->bih->biHeight,
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
539 mux_v->bih->biBitCount, mux_v->bih->biCompression);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
540 break;
3480
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
541 case VCODEC_RAW:
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
542 printf("sh_video->bih: %x\n", sh_video->bih);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
543 if (sh_video->bih)
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
544 mux_v->bih=sh_video->bih;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
545 else
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
546 {
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
547 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
548 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
549 mux_v->bih->biWidth=sh_video->disp_w;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
550 mux_v->bih->biHeight=sh_video->disp_h;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
551 mux_v->bih->biCompression=0;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
552 mux_v->bih->biPlanes=1;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
553 mux_v->bih->biBitCount=24; // FIXME!!!
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
554 mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
555 }
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
556 mux_v->bih->biCompression=0;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
557 printf("videocodec: raw (%dx%d %dbpp fourcc=%x)\n",
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
558 mux_v->bih->biWidth, mux_v->bih->biHeight,
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
559 mux_v->bih->biBitCount, mux_v->bih->biCompression);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
560 break;
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
561 case VCODEC_FRAMENO:
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
562 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
563 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
564 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
565 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
566 mux_v->bih->biPlanes=1;
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
567 mux_v->bih->biBitCount=24;
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
568 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
569 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
570 break;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
571 case VCODEC_DIVX4:
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
572 mux_v->bih=malloc(sizeof(BITMAPINFOHEADER));
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
573 mux_v->bih->biSize=sizeof(BITMAPINFOHEADER);
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
574 mux_v->bih->biWidth=vo_w;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
575 mux_v->bih->biHeight=vo_h;
2635
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
576 mux_v->bih->biPlanes=1;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
577 mux_v->bih->biBitCount=24;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
578 mux_v->bih->biCompression=mmioFOURCC('d','i','v','x');
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
579 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
580
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
581 if (pass)
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
582 printf("Divx: 2-pass logfile: %s\n", passtmpfile);
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
583 break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
584 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
585
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
586 // ============= AUDIO ===============
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
587 if(sh_audio){
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
588
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
589 mux_a=aviwrite_new_stream(muxer,AVIWRITE_TYPE_AUDIO);
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
590
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
591 mux_a->buffer_size=0x100000; //16384;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
592 mux_a->buffer=malloc(mux_a->buffer_size);
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
593
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
594 mux_a->source=sh_audio;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
595
2661
11f4c2b2b70f -oac/-ovc (fake:))
arpi
parents: 2655
diff changeset
596 mux_a->codec=out_audio_codec;
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
597
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
598 switch(mux_a->codec){
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
599 case ACODEC_COPY:
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
600 printf("sh_audio->wf: %x\n", sh_audio->wf);
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
601 mux_a->h.dwSampleSize=sh_audio->audio.dwSampleSize;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
602 mux_a->h.dwScale=sh_audio->audio.dwScale;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
603 mux_a->h.dwRate=sh_audio->audio.dwRate;
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
604 if (sh_audio->wf)
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
605 mux_a->wf=sh_audio->wf;
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
606 else
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
607 {
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
608 mux_a->wf = malloc(sizeof(WAVEFORMATEX));
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
609 mux_a->wf->nBlockAlign = mux_a->h.dwSampleSize;
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
610 mux_a->wf->wFormatTag = sh_audio->sample_format;
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
611 mux_a->wf->nChannels = sh_audio->channels;
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
612 mux_a->wf->nSamplesPerSec = sh_audio->samplerate;
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
613 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec;
3480
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
614 mux_a->wf->wBitsPerSample = 16; // FIXME
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
615 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
616 }
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
617 printf("audiocodec: framecopy (format=%x chans=%d rate=%d bits=%d)\n",
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
618 mux_a->wf->wFormatTag, mux_a->wf->nChannels, mux_a->wf->nSamplesPerSec,
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
619 mux_a->wf->wBitsPerSample);
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
620 break;
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
621 case ACODEC_PCM:
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
622 printf("CBR PCM audio selected\n");
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
623 mux_a->h.dwSampleSize=2*sh_audio->channels;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
624 mux_a->h.dwScale=1;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
625 mux_a->h.dwRate=sh_audio->samplerate;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
626 mux_a->wf=malloc(sizeof(WAVEFORMATEX));
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
627 mux_a->wf->nBlockAlign=mux_a->h.dwSampleSize;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
628 mux_a->wf->wFormatTag=0x1; // PCM
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
629 mux_a->wf->nChannels=sh_audio->channels;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
630 mux_a->wf->nSamplesPerSec=sh_audio->samplerate;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
631 mux_a->wf->nAvgBytesPerSec=mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
632 mux_a->wf->wBitsPerSample=16;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
633 mux_a->wf->cbSize=0; // FIXME for l3codeca.acm
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
634 break;
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
635 case ACODEC_VBRMP3:
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
636 printf("MP3 audio selected\n");
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
637 mux_a->h.dwSampleSize=0; // VBR
2653
a863a97f3a1c WMP compatibility fixed
arpi
parents: 2643
diff changeset
638 mux_a->h.dwScale=1152; // samples/frame
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
639 mux_a->h.dwRate=sh_audio->samplerate;
2635
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
640 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
641 mux_a->wf=malloc(sizeof(MPEGLAYER3WAVEFORMAT)); // should be 30
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
642 mux_a->wf->wFormatTag=0x55; // MP3
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
643 mux_a->wf->nChannels=sh_audio->channels;
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
644 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
645 mux_a->wf->nAvgBytesPerSec=192000/8; // FIXME!
2653
a863a97f3a1c WMP compatibility fixed
arpi
parents: 2643
diff changeset
646 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
647 mux_a->wf->wBitsPerSample=0; //16;
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
648 // from NaNdub: (requires for l3codeca.acm)
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
649 mux_a->wf->cbSize=12;
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
650 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->wID=1;
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
651 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->fdwFlags=2;
2653
a863a97f3a1c WMP compatibility fixed
arpi
parents: 2643
diff changeset
652 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nBlockSize=1152; // ???
2635
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
653 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nFramesPerBlock=1;
c1e24e01601b fixed AVI header creation - now should be compatible with NaNdub
arpi
parents: 2627
diff changeset
654 ((MPEGLAYER3WAVEFORMAT*)(mux_a->wf))->nCodecDelay=0;
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
655 break;
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
656 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
657 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
658
2840
808fe0767cf8 fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents: 2825
diff changeset
659 printf("Writing AVI header...\n");
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
660 aviwrite_write_header(muxer,muxer_f);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
661
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
662 switch(mux_v->codec){
3384
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
663 case VCODEC_COPY:
3480
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
664 case VCODEC_RAW:
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
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 decoded_frameno=0;
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
668 break;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
669 case VCODEC_DIVX4:
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
670 // init divx4linux:
3236
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
671 divx4_param.x_dim=vo_w;
1774d0530a6d yv12 scaling (-x & -y)
michael
parents: 2978
diff changeset
672 divx4_param.y_dim=vo_h;
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
673 divx4_param.framerate=(float)mux_v->h.dwRate/mux_v->h.dwScale;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
674 if(!divx4_param.bitrate) divx4_param.bitrate=800000;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
675 else if(divx4_param.bitrate<=16000) divx4_param.bitrate*=1000;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
676 if(!divx4_param.quality) divx4_param.quality=5; // the quality of compression ( 1 - fastest, 5 - best )
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
677 divx4_param.handle=NULL;
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
678 encore(NULL,ENC_OPT_INIT,&divx4_param,NULL);
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
679 enc_handle=divx4_param.handle;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
680 switch(out_fmt){
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
681 case IMGFMT_YV12: enc_frame.colorspace=ENC_CSP_YV12; break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
682 case IMGFMT_IYUV:
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
683 case IMGFMT_I420: enc_frame.colorspace=ENC_CSP_I420; break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
684 case IMGFMT_YUY2: enc_frame.colorspace=ENC_CSP_YUY2; break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
685 case IMGFMT_UYVY: enc_frame.colorspace=ENC_CSP_UYVY; break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
686 case IMGFMT_RGB24:
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
687 case IMGFMT_BGR24:
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
688 enc_frame.colorspace=ENC_CSP_RGB24; break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
689 default:
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
690 mp_msg(MSGT_MENCODER,MSGL_ERR,"divx4: unsupported out_fmt!\n");
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
691 }
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
692 switch(pass){
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
693 case 1:
3377
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
694 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
695 {
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
696 printf("2pass failed: filename=%s\n", passtmpfile);
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
697 pass_working = 0;
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
698 }
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
699 else
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
700 pass_working = 1;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
701 break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
702 case 2:
3377
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
703 if (VbrControl_init_2pass_vbr_encoding(passtmpfile,
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
704 divx4_param.bitrate,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
705 divx4_param.framerate,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
706 divx4_crispness,
3377
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
707 divx4_param.quality) == -1)
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
708 {
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
709 printf("2pass failed: filename=%s\n", passtmpfile);
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
710 pass_working = 0;
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
711 }
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
712 else
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
713 pass_working = 1;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
714 break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
715 }
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
716 break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
717 }
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
718
2600
51a88ac2a602 nosound fixed?
arpi
parents: 2591
diff changeset
719 if(sh_audio)
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
720 switch(mux_a->codec){
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
721 #ifdef HAVE_MP3LAME
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
722 case ACODEC_VBRMP3:
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
723
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
724 lame=lame_init();
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
725 lame_set_bWriteVbrTag(lame,0);
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
726 lame_set_in_samplerate(lame,sh_audio->samplerate);
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
727 lame_set_num_channels(lame,mux_a->wf->nChannels);
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
728 lame_set_out_samplerate(lame,mux_a->wf->nSamplesPerSec);
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
729 if(lame_param_vbr){ // VBR:
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
730 lame_set_VBR(lame,lame_param_vbr); // vbr mode
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
731 lame_set_VBR_q(lame,lame_param_quality+1); // 1 = best vbr q 6=~128k
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
732 if(lame_param_br>0) lame_set_VBR_mean_bitrate_kbps(lame,lame_param_br);
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
733 } else { // CBR:
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
734 lame_set_quality(lame,lame_param_quality); // 0 = best q
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
735 if(lame_param_br>0) lame_set_brate(lame,lame_param_br);
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
736 }
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
737 if(lame_param_mode>=0) lame_set_mode(lame,lame_param_mode); // j-st
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
738 if(lame_param_ratio>0) lame_set_compression_ratio(lame,lame_param_ratio);
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
739 lame_init_params(lame);
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
740 if(verbose){
2626
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
741 lame_print_config(lame);
da9777831e1b divx4 and lame subconfig support
arpi
parents: 2622
diff changeset
742 lame_print_internals(lame);
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
743 }
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
744 break;
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
745 #endif
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
746
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
747 }
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
748
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
749 signal(SIGINT,exit_sighandler); // Interrupt from keyboard
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
750 signal(SIGQUIT,exit_sighandler); // Quit from keyboard
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
751 signal(SIGTERM,exit_sighandler); // kill
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
752
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
753 while(!eof){
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
754
2571
13608ff3d1e6 simplified
arpi
parents: 2531
diff changeset
755 float frame_time=0;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
756 int blit_frame=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
757 float a_pts=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
758 float v_pts=0;
2574
arpi
parents: 2571
diff changeset
759 unsigned char* start=NULL;
arpi
parents: 2571
diff changeset
760 int in_size;
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
761 int skip_flag=0; // 1=skip -1=duplicate
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
762
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
763 if(play_n_frames>=0){
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
764 --play_n_frames;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
765 if(play_n_frames<0) break;
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
766 }
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
767
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
768 if(sh_audio){
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
769 // get audio:
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
770 while(mux_a->timer-audio_preload<mux_v->timer){
2653
a863a97f3a1c WMP compatibility fixed
arpi
parents: 2643
diff changeset
771 int len=0;
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
772 if(mux_a->h.dwSampleSize){
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
773 // CBR - copy 0.5 sec of audio
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
774 switch(mux_a->codec){
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
775 case ACODEC_COPY: // copy
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
776 len=sh_audio->i_bps/2;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
777 len/=mux_a->h.dwSampleSize;if(len<1) len=1;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
778 len*=mux_a->h.dwSampleSize;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
779 len=demux_read_data(sh_audio->ds,mux_a->buffer,len);
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
780 break;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
781 case ACODEC_PCM:
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
782 len=mux_a->h.dwSampleSize*(mux_a->h.dwRate/2);
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
783 len=dec_audio(sh_audio,mux_a->buffer,len);
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
784 break;
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
785 }
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
786 } else {
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
787 // VBR - encode/copy an audio frame
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
788 switch(mux_a->codec){
3385
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
789 case ACODEC_COPY: // copy
6975a75a47fb fixed cbr audiocopy (if no sh_audio->wf)
alex
parents: 3384
diff changeset
790 printf("VBR audio framecopy not yet implemented!\n");
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
791 break;
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
792 #ifdef HAVE_MP3LAME
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
793 case ACODEC_VBRMP3:
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
794 while(mux_a->buffer_len<4){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
795 unsigned char tmp[2304];
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
796 int len=dec_audio(sh_audio,tmp,2304);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
797 if(len<=0) break; // eof
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
798 len=lame_encode_buffer_interleaved(lame,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
799 tmp,len/4,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
800 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
801 if(len<0) break; // error
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
802 mux_a->buffer_len+=len;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
803 }
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
804 if(mux_a->buffer_len<4) break;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
805 len=mp_decode_mp3_header(mux_a->buffer);
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
806 //printf("%d\n",len);
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
807 if(len<=0) break; // bad frame!
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
808 while(mux_a->buffer_len<len){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
809 unsigned char tmp[2304];
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
810 int len=dec_audio(sh_audio,tmp,2304);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
811 if(len<=0) break; // eof
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
812 len=lame_encode_buffer_interleaved(lame,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
813 tmp,len/4,
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
814 mux_a->buffer+mux_a->buffer_len,mux_a->buffer_size-mux_a->buffer_len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
815 if(len<0) break; // error
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
816 mux_a->buffer_len+=len;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
817 }
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
818 break;
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
819 #endif
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
820 }
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
821 }
2583
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
822 if(len<=0) break; // EOF?
3dce775d82cb PCM audio
arpi
parents: 2581
diff changeset
823 aviwrite_write_chunk(muxer,mux_a,muxer_f,len,0);
2655
40fbed77bbb8 avg bps calc fixed
arpi
parents: 2653
diff changeset
824 if(!mux_a->h.dwSampleSize && mux_a->timer>0)
3354
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
825 mux_a->wf->nAvgBytesPerSec=0.5f+(double)mux_a->size/mux_a->timer; // avg bps (VBR)
2591
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
826 if(mux_a->buffer_len>=len){
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
827 mux_a->buffer_len-=len;
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
828 memcpy(mux_a->buffer,mux_a->buffer+len,mux_a->buffer_len);
f4b01c45b1ea libmp3lame vbr mp3 support
arpi
parents: 2583
diff changeset
829 }
2581
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
830 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
831 }
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
832
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
833 // get video frame!
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
834 in_size=video_read_frame(sh_video,&frame_time,&start,force_fps);
e94a20dec331 avi audio stream copy support
arpi
parents: 2577
diff changeset
835 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
836 sh_video->timer+=frame_time; ++decoded_frameno;
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
837
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
838 v_timer_corr-=frame_time-(float)mux_v->h.dwScale/mux_v->h.dwRate;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
839
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
840 // check frame duplicate/drop:
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
841
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
842 if(v_timer_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate){
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
843 v_timer_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
844 ++skip_flag; // skip
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
845 } else
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
846 while(v_timer_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate){
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
847 v_timer_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
848 --skip_flag; // dup
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
849 }
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
850
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
851 while( (v_pts_corr<=-(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag>0)
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
852 || (v_pts_corr<=-2*(float)mux_v->h.dwScale/mux_v->h.dwRate) ){
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
853 v_pts_corr+=(float)mux_v->h.dwScale/mux_v->h.dwRate;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
854 --skip_flag; // dup
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
855 }
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
856 if( (v_pts_corr>=(float)mux_v->h.dwScale/mux_v->h.dwRate && skip_flag<0)
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
857 || (v_pts_corr>=2*(float)mux_v->h.dwScale/mux_v->h.dwRate) )
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
858 if(skip_flag<=0){ // we can't skip more than 1 frame now
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
859 v_pts_corr-=(float)mux_v->h.dwScale/mux_v->h.dwRate;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
860 ++skip_flag; // skip
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
861 }
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
862
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
863
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
864 switch(mux_v->codec){
3384
cff2875ad6e6 fixed framecopy
alex
parents: 3378
diff changeset
865 case VCODEC_COPY:
2574
arpi
parents: 2571
diff changeset
866 mux_v->buffer=start;
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
867 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,in_size,(sh_video->ds->flags&1)?0x10:0);
2574
arpi
parents: 2571
diff changeset
868 break;
3480
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
869 case VCODEC_RAW:
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
870 blit_frame=decode_video(&video_out,sh_video,start,in_size,0);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
871 if(skip_flag>0) break;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
872 if(!blit_frame){
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
873 // empty.
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
874 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
875 break;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
876 }
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
877 mux_v->buffer = vo_image_ptr;
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
878 aviwrite_write_chunk(muxer,mux_v,muxer_f,mux_v->buffer_size,0x10);
9943dbacb48e vcodec_raw added
alex
parents: 3385
diff changeset
879 break;
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
880 case VCODEC_FRAMENO:
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
881 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
882 if(skip_flag<=0) aviwrite_write_chunk(muxer,mux_v,muxer_f,sizeof(int),0x10);
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
883 break;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
884 case VCODEC_DIVX4:
2574
arpi
parents: 2571
diff changeset
885 blit_frame=decode_video(&video_out,sh_video,start,in_size,0);
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
886 if(skip_flag>0) break;
2574
arpi
parents: 2571
diff changeset
887 if(!blit_frame){
arpi
parents: 2571
diff changeset
888 // empty.
arpi
parents: 2571
diff changeset
889 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0);
arpi
parents: 2571
diff changeset
890 break;
arpi
parents: 2571
diff changeset
891 }
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
892 enc_frame.image=vo_image_ptr;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
893 enc_frame.bitstream=mux_v->buffer;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
894 enc_frame.length=mux_v->buffer_size;
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
895 enc_frame.mvs=NULL;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
896 enc_frame.quant=0;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
897 enc_frame.intra=0;
3377
4723f6fd750a do not fault if 2pass VbrControl can't open the logfile
alex
parents: 3363
diff changeset
898 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
899 enc_frame.quant = VbrControl_get_quant();
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
900 enc_frame.intra = VbrControl_get_intra();
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
901 encore(enc_handle,ENC_OPT_ENCODE_VBR,&enc_frame,&enc_result);
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
902 VbrControl_update_2pass_vbr_encoding(enc_result.motion_bits,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
903 enc_result.texture_bits,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
904 enc_result.total_bits);
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
905 } else {
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
906 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
907 if(pass==1 && pass_working){
2643
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
908 VbrControl_update_2pass_vbr_analysis(enc_result.is_key_frame,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
909 enc_result.motion_bits,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
910 enc_result.texture_bits,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
911 enc_result.total_bits,
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
912 enc_result.quantizer);
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
913 }
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
914 }
9d0a638e211a divx4 2-pass support, -frames option
arpi
parents: 2639
diff changeset
915
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
916 // printf("encoding...\n");
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
917 // printf(" len=%d key:%d qualt:%d \n",enc_frame.length,enc_result.is_key_frame,enc_result.quantizer);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
918 aviwrite_write_chunk(muxer,mux_v,muxer_f,enc_frame.length,enc_result.is_key_frame?0x10:0);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
919 break;
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
920 }
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
921
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
922 if(skip_flag<0){
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
923 // duplicate frame
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
924 printf("\nduplicate %d frame(s)!!! \n",-skip_flag);
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
925 while(skip_flag<0){
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
926 aviwrite_write_chunk(muxer,mux_v,muxer_f,0,0);
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
927 ++skip_flag;
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
928 }
2639
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
929 } else
511f1983e0f0 -srate and -pp 0 fixes
arpi
parents: 2635
diff changeset
930 if(skip_flag>0){
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
931 // skip frame
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
932 printf("\nskip frame!!! \n");
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
933 --skip_flag;
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
934 }
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
935
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
936 if(sh_audio){
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
937 float AV_delay,x;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
938 // A-V sync!
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
939 if(pts_from_bps){
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
940 unsigned int samples=(sh_audio->audio.dwSampleSize)?
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
941 ((ds_tell(d_audio)-sh_audio->a_in_buffer_len)/sh_audio->audio.dwSampleSize) :
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
942 (d_audio->pack_no); // <- used for VBR audio
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
943 a_pts=samples*(float)sh_audio->audio.dwScale/(float)sh_audio->audio.dwRate;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
944 delay_corrected=1;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
945 } else {
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
946 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec)
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
947 a_pts=d_audio->pts;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
948 if(!delay_corrected) if(a_pts) delay_corrected=1;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
949 //printf("*** %5.3f ***\n",a_pts);
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
950 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
951 }
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
952 v_pts=d_video->pts;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
953 // av = compensated (with out buffering delay) A-V diff
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
954 AV_delay=(a_pts-v_pts); AV_delay-=mux_a->timer-(mux_v->timer-(v_timer_corr+v_pts_corr));
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
955 // compensate input video timer by av:
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
956 x=AV_delay*0.1f;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
957 if(x<-max_pts_correction) x=-max_pts_correction; else
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
958 if(x> max_pts_correction) x= max_pts_correction;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
959 if(default_max_pts_correction>=0)
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
960 max_pts_correction=default_max_pts_correction;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
961 else
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
962 max_pts_correction=sh_video->frametime*0.10; // +-10% of time
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
963 // sh_video->timer-=x;
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
964 c_total+=x;
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
965 v_pts_corr+=x;
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
966
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
967 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
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
968 a_pts,v_pts,a_pts-v_pts,
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
969 (float)(mux_a->timer-mux_v->timer),
2613
156efe748b3d new A-V sync correction and fps conversion stuff
arpi
parents: 2605
diff changeset
970 AV_delay, c_total, v_pts_corr );
2605
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
971
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
972 }
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
973
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
974 #if 0
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
975 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",
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
976 a_pts,v_pts,a_pts-v_pts,c_total,
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
977 (int)sh_video->num_frames,(int)sh_video->num_frames_decoded,
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
978 (sh_video->timer>0.5)?(int)(100.0*video_time_usage/(double)sh_video->timer):0,
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
979 (sh_video->timer>0.5)?(int)(100.0*vout_time_usage/(double)sh_video->timer):0,
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
980 (sh_video->timer>0.5)?(100.0*audio_time_usage/(double)sh_video->timer):0
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
981 ,cache_fill_status
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
982 );
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
983 #endif
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
984
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
985 fflush(stdout);
f629b154ecbf input A-V sync correction
arpi
parents: 2600
diff changeset
986
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
987
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
988
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
989 } // while(!eof)
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
990
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
991 #ifdef HAVE_MP3LAME
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
992 // fixup CBR mp3 audio header:
3354
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
993 if(sh_audio && mux_a->codec==ACODEC_VBRMP3 && !lame_param_vbr){
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
994 mux_a->h.dwSampleSize=1;
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
995 mux_a->h.dwRate=mux_a->wf->nAvgBytesPerSec;
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
996 mux_a->h.dwScale=1;
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
997 printf("\n\nCBR audio effective bitrate: %8.3f kbit/s (%d bytes/sec)\n",
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
998 mux_a->h.dwRate*8.0f/1000.0f,mux_a->h.dwRate);
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
999 }
3357
1fa5d7dda911 libmp3lame optional
arpi
parents: 3354
diff changeset
1000 #endif
3354
c68f5da1c61c Using CBR stream format for CBR mp3 audio
arpi
parents: 3323
diff changeset
1001
2840
808fe0767cf8 fix typos - patch by Colin Marquardt <colin@marquardt-home.de>
pl
parents: 2825
diff changeset
1002 printf("\nWriting AVI index...\n");
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1003 aviwrite_write_index(muxer,muxer_f);
2622
fb7220c79b69 verbose fixed
arpi
parents: 2618
diff changeset
1004 printf("Fixup AVI header...\n");
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1005 fseek(muxer_f,0,SEEK_SET);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1006 aviwrite_write_header(muxer,muxer_f); // update header
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1007 fclose(muxer_f);
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1008
3361
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
1009 printf("\nVideo stream: %8.3f kbit/s (%d bps) size: %d bytes %5.3f secs\n",
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
1010 (float)(mux_v->size/mux_v->timer*8.0f/1000.0f), (int)(mux_v->size/mux_v->timer), mux_v->size, (float)mux_v->timer);
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
1011 if(sh_audio)
5d70491f438c new video codec: frameno (just the number of frame - for 3-pass encoding)
arpi
parents: 3357
diff changeset
1012 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
1013 (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
1014
2618
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
1015 if(stream) free_stream(stream); // kill cache thread
47a338888698 mencoder commandline handling
arpi
parents: 2613
diff changeset
1016
3320
ac8b70dd5e45 use return 1; if interrupted - patch by Artur Skawina <skawina@geocities.com>
arpi
parents: 3240
diff changeset
1017 return interrupted;
2531
cf6a236b2d00 very alpha code - needs Makefile modifications to compile
arpi
parents:
diff changeset
1018 }