annotate mencoder.c @ 5507:d0d029fda134

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