Commit | Line | Data |
---|---|---|
85f07f22 | 1 | /* |
115329f1 | 2 | * FFmpeg main |
01310af2 | 3 | * Copyright (c) 2000-2003 Fabrice Bellard |
85f07f22 | 4 | * |
bf5af568 FB |
5 | * This library is free software; you can redistribute it and/or |
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2 of the License, or (at your option) any later version. | |
85f07f22 | 9 | * |
bf5af568 | 10 | * This library is distributed in the hope that it will be useful, |
85f07f22 | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bf5af568 FB |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | * Lesser General Public License for more details. | |
85f07f22 | 14 | * |
bf5af568 FB |
15 | * You should have received a copy of the GNU Lesser General Public |
16 | * License along with this library; if not, write to the Free Software | |
5509bffa | 17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
85f07f22 | 18 | */ |
daf8e955 | 19 | #define HAVE_AV_CONFIG_H |
22f7a060 | 20 | #include <limits.h> |
daf8e955 | 21 | #include "avformat.h" |
10d104e4 | 22 | #include "framehook.h" |
1ac31760 | 23 | #include "dsputil.h" |
6fd46414 | 24 | #include "opt.h" |
daf8e955 | 25 | |
bdc4796f | 26 | #ifndef CONFIG_WIN32 |
85f07f22 FB |
27 | #include <unistd.h> |
28 | #include <fcntl.h> | |
29 | #include <sys/ioctl.h> | |
85f07f22 | 30 | #include <sys/time.h> |
85f07f22 | 31 | #include <termios.h> |
5727b222 | 32 | #include <sys/resource.h> |
9680a722 | 33 | #include <signal.h> |
bdc4796f | 34 | #endif |
f3ec2d46 SG |
35 | #ifdef CONFIG_OS2 |
36 | #include <sys/types.h> | |
37 | #include <sys/select.h> | |
38 | #include <stdlib.h> | |
39 | #endif | |
64c020a8 | 40 | #undef time //needed because HAVE_AV_CONFIG_H is defined on top |
bf5af568 | 41 | #include <time.h> |
85f07f22 | 42 | |
01310af2 FB |
43 | #include "cmdutils.h" |
44 | ||
2b18dcd0 MN |
45 | #undef NDEBUG |
46 | #include <assert.h> | |
47 | ||
8aa1e3da MN |
48 | #if !defined(INFINITY) && defined(HUGE_VAL) |
49 | #define INFINITY HUGE_VAL | |
50 | #endif | |
85f07f22 | 51 | |
85f07f22 FB |
52 | /* select an input stream for an output stream */ |
53 | typedef struct AVStreamMap { | |
54 | int file_index; | |
55 | int stream_index; | |
b4a3389e WG |
56 | int sync_file_index; |
57 | int sync_stream_index; | |
85f07f22 FB |
58 | } AVStreamMap; |
59 | ||
0a38bafd PB |
60 | /** select an input file for an output file */ |
61 | typedef struct AVMetaDataMap { | |
62 | int out_file; | |
63 | int in_file; | |
64 | } AVMetaDataMap; | |
65 | ||
85f07f22 FB |
66 | extern const OptionDef options[]; |
67 | ||
02d504a7 FB |
68 | static void show_help(void); |
69 | static void show_license(void); | |
637b5326 | 70 | static int opt_default(const char *opt, const char *arg); |
85f07f22 FB |
71 | |
72 | #define MAX_FILES 20 | |
73 | ||
74 | static AVFormatContext *input_files[MAX_FILES]; | |
a6a92a9a | 75 | static int64_t input_files_ts_offset[MAX_FILES]; |
85f07f22 FB |
76 | static int nb_input_files = 0; |
77 | ||
78 | static AVFormatContext *output_files[MAX_FILES]; | |
79 | static int nb_output_files = 0; | |
80 | ||
81 | static AVStreamMap stream_maps[MAX_FILES]; | |
82 | static int nb_stream_maps; | |
83 | ||
0a38bafd PB |
84 | static AVMetaDataMap meta_data_maps[MAX_FILES]; |
85 | static int nb_meta_data_maps; | |
86 | ||
79fdaa4c FB |
87 | static AVInputFormat *file_iformat; |
88 | static AVOutputFormat *file_oformat; | |
817b23ff | 89 | static AVImageFormat *image_format; |
55cf1959 MN |
90 | static int frame_width = 0; |
91 | static int frame_height = 0; | |
880e8ba7 | 92 | static float frame_aspect_ratio = 0; |
644a9262 | 93 | static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; |
1ff93ffc TK |
94 | static int frame_padtop = 0; |
95 | static int frame_padbottom = 0; | |
96 | static int frame_padleft = 0; | |
97 | static int frame_padright = 0; | |
98 | static int padcolor[3] = {16,128,128}; /* default to black */ | |
ab6d194a MN |
99 | static int frame_topBand = 0; |
100 | static int frame_bottomBand = 0; | |
101 | static int frame_leftBand = 0; | |
102 | static int frame_rightBand = 0; | |
cf7fc795 | 103 | static int max_frames[4] = {INT_MAX, INT_MAX, INT_MAX, INT_MAX}; |
14bea432 MN |
104 | static int frame_rate = 25; |
105 | static int frame_rate_base = 1; | |
3aa102be MN |
106 | static int video_bit_rate = 200*1000; |
107 | static int video_bit_rate_tolerance = 4000*1000; | |
158c7f05 | 108 | static float video_qscale = 0; |
3aa102be MN |
109 | static int video_qmin = 2; |
110 | static int video_qmax = 31; | |
4ea4b274 MN |
111 | static int video_lmin = 2*FF_QP2LAMBDA; |
112 | static int video_lmax = 31*FF_QP2LAMBDA; | |
6e0d8c06 MN |
113 | static int video_mb_lmin = 2*FF_QP2LAMBDA; |
114 | static int video_mb_lmax = 31*FF_QP2LAMBDA; | |
9cdd6a24 MN |
115 | static int video_qdiff = 3; |
116 | static float video_qblur = 0.5; | |
6a5d4395 | 117 | static float video_qsquish = 0.0; |
9cdd6a24 | 118 | static float video_qcomp = 0.5; |
84f608f4 VM |
119 | static uint16_t *intra_matrix = NULL; |
120 | static uint16_t *inter_matrix = NULL; | |
ac2830ec | 121 | #if 0 //experimental, (can be removed) |
3aa102be MN |
122 | static float video_rc_qsquish=1.0; |
123 | static float video_rc_qmod_amp=0; | |
124 | static int video_rc_qmod_freq=0; | |
ac2830ec | 125 | #endif |
3aa102be MN |
126 | static char *video_rc_override_string=NULL; |
127 | static char *video_rc_eq="tex^qComp"; | |
128 | static int video_rc_buffer_size=0; | |
129 | static float video_rc_buffer_aggressivity=1.0; | |
130 | static int video_rc_max_rate=0; | |
131 | static int video_rc_min_rate=0; | |
132 | static float video_rc_initial_cplx=0; | |
133 | static float video_b_qfactor = 1.25; | |
134 | static float video_b_qoffset = 1.25; | |
b3a391e8 | 135 | static float video_i_qfactor = -0.8; |
3aa102be | 136 | static float video_i_qoffset = 0.0; |
303e50e6 MN |
137 | static int video_intra_quant_bias= FF_DEFAULT_QUANT_BIAS; |
138 | static int video_inter_quant_bias= FF_DEFAULT_QUANT_BIAS; | |
3bea5386 | 139 | static int me_method = ME_EPZS; |
85f07f22 | 140 | static int video_disable = 0; |
f3356e9c | 141 | static int video_discard = 0; |
85f07f22 | 142 | static int video_codec_id = CODEC_ID_NONE; |
b2a2197e | 143 | static int video_codec_tag = 0; |
85f07f22 | 144 | static int same_quality = 0; |
bc6caae2 | 145 | static int b_frames = 0; |
9c3d33d6 | 146 | static int pre_me = 0; |
cfcf0ffd | 147 | static int do_deinterlace = 0; |
4d2858de | 148 | static int workaround_bugs = FF_BUG_AUTODETECT; |
1dbb6d90 | 149 | static int packet_size = 0; |
7ebfc0ea | 150 | static int error_rate = 0; |
f560dd82 | 151 | static int strict = 0; |
bb198e19 | 152 | static int top_field_first = -1; |
303e50e6 | 153 | static int sc_threshold = 0; |
f4f3223f | 154 | static int me_threshold = 0; |
f20f8a8b | 155 | static int mb_threshold = 0; |
1a11cbcc | 156 | static int intra_dc_precision = 8; |
09c3e44e | 157 | static int me_penalty_compensation= 256; |
bbf18b21 MN |
158 | static int frame_skip_threshold= 0; |
159 | static int frame_skip_factor= 0; | |
0fd6aea1 | 160 | static int frame_skip_exp= 0; |
b1b77fe9 | 161 | extern int loop_input; /* currently a hack */ |
8108551a | 162 | static int loop_output = AVFMT_NOOUTPUTLOOP; |
30bc6613 | 163 | static int genpts = 0; |
0888fd22 | 164 | static int qp_hist = 0; |
85f07f22 FB |
165 | |
166 | static int gop_size = 12; | |
167 | static int intra_only = 0; | |
168 | static int audio_sample_rate = 44100; | |
169 | static int audio_bit_rate = 64000; | |
c57c770d JR |
170 | #define QSCALE_NONE -99999 |
171 | static float audio_qscale = QSCALE_NONE; | |
85f07f22 FB |
172 | static int audio_disable = 0; |
173 | static int audio_channels = 1; | |
174 | static int audio_codec_id = CODEC_ID_NONE; | |
b2a2197e | 175 | static int audio_codec_tag = 0; |
cf7fc795 FB |
176 | static char *audio_language = NULL; |
177 | ||
178 | static int subtitle_codec_id = CODEC_ID_NONE; | |
179 | static char *subtitle_language = NULL; | |
85f07f22 | 180 | |
2db3c638 MN |
181 | static int mux_rate= 0; |
182 | static int mux_packet_size= 0; | |
17c88cb0 MN |
183 | static float mux_preload= 0.5; |
184 | static float mux_max_delay= 0.7; | |
2db3c638 | 185 | |
0c1a9eda | 186 | static int64_t recording_time = 0; |
8831db5c | 187 | static int64_t start_time = 0; |
4568325a | 188 | static int64_t rec_timestamp = 0; |
a6a92a9a | 189 | static int64_t input_ts_offset = 0; |
85f07f22 FB |
190 | static int file_overwrite = 0; |
191 | static char *str_title = NULL; | |
192 | static char *str_author = NULL; | |
193 | static char *str_copyright = NULL; | |
194 | static char *str_comment = NULL; | |
5727b222 | 195 | static int do_benchmark = 0; |
a0663ba4 | 196 | static int do_hex_dump = 0; |
254abc2e | 197 | static int do_pkt_dump = 0; |
43f1708f | 198 | static int do_psnr = 0; |
ce7c56c2 | 199 | static int do_vstats = 0; |
5abdb4b1 FB |
200 | static int do_pass = 0; |
201 | static char *pass_logfilename = NULL; | |
1629626f FB |
202 | static int audio_stream_copy = 0; |
203 | static int video_stream_copy = 0; | |
cf7fc795 | 204 | static int subtitle_stream_copy = 0; |
986ebcdb MN |
205 | static int video_sync_method= 1; |
206 | static int audio_sync_method= 0; | |
72bd8100 | 207 | static int copy_ts= 0; |
ca80810b | 208 | static int opt_shortest = 0; // |
90ad92b3 | 209 | static int video_global_header = 0; |
5abdb4b1 | 210 | |
bdfcbbed MK |
211 | static int rate_emu = 0; |
212 | ||
6beefa40 MN |
213 | #ifdef CONFIG_BKTR |
214 | static char *video_grab_format = "bktr"; | |
215 | #else | |
8aa3ee32 | 216 | static char *video_grab_format = "video4linux"; |
6beefa40 | 217 | #endif |
79a7c268 | 218 | static char *video_device = NULL; |
2639c651 | 219 | static char *grab_device = NULL; |
a5df11ab | 220 | static int video_channel = 0; |
e3ee3283 | 221 | static char *video_standard = "ntsc"; |
79a7c268 | 222 | |
8aa3ee32 | 223 | static char *audio_grab_format = "audio_device"; |
79a7c268 | 224 | static char *audio_device = NULL; |
a9aa3467 | 225 | static int audio_volume = 256; |
8aa3ee32 | 226 | |
d9a916e2 | 227 | static int using_stdin = 0; |
bee0d9e5 | 228 | static int using_vhook = 0; |
f068206e | 229 | static int verbose = 1; |
9c3d33d6 | 230 | static int thread_count= 1; |
b51469a0 | 231 | static int q_pressed = 0; |
2f0472ff | 232 | static int me_range = 0; |
1008ceb3 MN |
233 | static int64_t video_size = 0; |
234 | static int64_t audio_size = 0; | |
235 | static int64_t extra_size = 0; | |
a6a92a9a WG |
236 | static int nb_frames_dup = 0; |
237 | static int nb_frames_drop = 0; | |
6e454c38 | 238 | static int input_sync; |
b6e16b86 | 239 | static int limit_filesize = 0; // |
d9a916e2 | 240 | |
5b6d5596 MN |
241 | static int pgmyuv_compatibility_hack=0; |
242 | ||
8bbf6db9 MN |
243 | const char **opt_names=NULL; |
244 | int opt_name_count=0; | |
245 | AVCodecContext *avctx_opts; | |
246 | ||
5b6d5596 | 247 | |
5abdb4b1 | 248 | #define DEFAULT_PASS_LOGFILENAME "ffmpeg2pass" |
85f07f22 | 249 | |
b4a3389e WG |
250 | struct AVInputStream; |
251 | ||
85f07f22 FB |
252 | typedef struct AVOutputStream { |
253 | int file_index; /* file index */ | |
254 | int index; /* stream index in the output file */ | |
255 | int source_index; /* AVInputStream index */ | |
256 | AVStream *st; /* stream in the output file */ | |
ec5517d5 FB |
257 | int encoding_needed; /* true if encoding needed for this stream */ |
258 | int frame_number; | |
259 | /* input pts and corresponding output pts | |
260 | for A/V sync */ | |
b4a3389e WG |
261 | //double sync_ipts; /* dts from the AVPacket of the demuxer in second units */ |
262 | struct AVInputStream *sync_ist; /* input stream to sync against */ | |
e928649b | 263 | int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ //FIXME look at frame_number |
85f07f22 | 264 | /* video only */ |
34b10a57 | 265 | int video_resample; /* video_resample and video_crop are mutually exclusive */ |
a4d36c11 | 266 | AVFrame pict_tmp; /* temporary image for resampling */ |
85f07f22 | 267 | ImgReSampleContext *img_resample_ctx; /* for image resampling */ |
34b10a57 D |
268 | |
269 | int video_crop; /* video_resample and video_crop are mutually exclusive */ | |
270 | int topBand; /* cropping area sizes */ | |
271 | int leftBand; | |
115329f1 | 272 | |
1ff93ffc TK |
273 | int video_pad; /* video_resample and video_pad are mutually exclusive */ |
274 | int padtop; /* padding area sizes */ | |
275 | int padbottom; | |
276 | int padleft; | |
277 | int padright; | |
115329f1 | 278 | |
85f07f22 FB |
279 | /* audio only */ |
280 | int audio_resample; | |
281 | ReSampleContext *resample; /* for audio resampling */ | |
282 | FifoBuffer fifo; /* for compression: one audio fifo per codec */ | |
5abdb4b1 | 283 | FILE *logfile; |
85f07f22 FB |
284 | } AVOutputStream; |
285 | ||
286 | typedef struct AVInputStream { | |
287 | int file_index; | |
288 | int index; | |
289 | AVStream *st; | |
290 | int discard; /* true if stream data should be discarded */ | |
291 | int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */ | |
0c1a9eda | 292 | int64_t sample_index; /* current sample */ |
bdfcbbed MK |
293 | |
294 | int64_t start; /* time when read started */ | |
295 | unsigned long frame; /* current frame */ | |
254abc2e FB |
296 | int64_t next_pts; /* synthetic pts for cases where pkt.pts |
297 | is not defined */ | |
e7d0374f | 298 | int64_t pts; /* current pts */ |
ff4905a5 | 299 | int is_start; /* is 1 at the start and after a discontinuity */ |
85f07f22 FB |
300 | } AVInputStream; |
301 | ||
302 | typedef struct AVInputFile { | |
303 | int eof_reached; /* true if eof reached */ | |
304 | int ist_index; /* index of first stream in ist_table */ | |
305 | int buffer_size; /* current total buffer size */ | |
306 | int buffer_size_max; /* buffer size at which we consider we can stop | |
307 | buffering */ | |
79fdaa4c | 308 | int nb_streams; /* nb streams we are aware of */ |
85f07f22 FB |
309 | } AVInputFile; |
310 | ||
bdc4796f FB |
311 | #ifndef CONFIG_WIN32 |
312 | ||
85f07f22 FB |
313 | /* init terminal so that we can grab keys */ |
314 | static struct termios oldtty; | |
315 | ||
316 | static void term_exit(void) | |
317 | { | |
318 | tcsetattr (0, TCSANOW, &oldtty); | |
319 | } | |
320 | ||
9680a722 RP |
321 | static volatile sig_atomic_t received_sigterm = 0; |
322 | ||
323 | static void | |
324 | sigterm_handler(int sig) | |
325 | { | |
326 | received_sigterm = sig; | |
327 | term_exit(); | |
328 | } | |
329 | ||
85f07f22 FB |
330 | static void term_init(void) |
331 | { | |
332 | struct termios tty; | |
333 | ||
334 | tcgetattr (0, &tty); | |
335 | oldtty = tty; | |
336 | ||
337 | tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP | |
338 | |INLCR|IGNCR|ICRNL|IXON); | |
339 | tty.c_oflag |= OPOST; | |
340 | tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); | |
341 | tty.c_cflag &= ~(CSIZE|PARENB); | |
342 | tty.c_cflag |= CS8; | |
343 | tty.c_cc[VMIN] = 1; | |
344 | tty.c_cc[VTIME] = 0; | |
115329f1 | 345 | |
85f07f22 FB |
346 | tcsetattr (0, TCSANOW, &tty); |
347 | ||
9680a722 RP |
348 | signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */ |
349 | signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */ | |
350 | signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */ | |
351 | /* | |
352 | register a function to be called at normal program termination | |
353 | */ | |
85f07f22 | 354 | atexit(term_exit); |
9ddd71fc FR |
355 | #ifdef CONFIG_BEOS_NETSERVER |
356 | fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK); | |
357 | #endif | |
85f07f22 FB |
358 | } |
359 | ||
360 | /* read a key without blocking */ | |
361 | static int read_key(void) | |
362 | { | |
9ddd71fc | 363 | int n = 1; |
85f07f22 | 364 | unsigned char ch; |
9ddd71fc FR |
365 | #ifndef CONFIG_BEOS_NETSERVER |
366 | struct timeval tv; | |
85f07f22 FB |
367 | fd_set rfds; |
368 | ||
369 | FD_ZERO(&rfds); | |
370 | FD_SET(0, &rfds); | |
371 | tv.tv_sec = 0; | |
372 | tv.tv_usec = 0; | |
373 | n = select(1, &rfds, NULL, NULL, &tv); | |
9ddd71fc | 374 | #endif |
85f07f22 | 375 | if (n > 0) { |
cb09b2ed PG |
376 | n = read(0, &ch, 1); |
377 | if (n == 1) | |
85f07f22 | 378 | return ch; |
cb09b2ed PG |
379 | |
380 | return n; | |
85f07f22 FB |
381 | } |
382 | return -1; | |
383 | } | |
384 | ||
b51469a0 LS |
385 | static int decode_interrupt_cb(void) |
386 | { | |
387 | return q_pressed || (q_pressed = read_key() == 'q'); | |
388 | } | |
389 | ||
a38469e1 | 390 | #else |
85f07f22 | 391 | |
bee0d9e5 CY |
392 | static volatile int received_sigterm = 0; |
393 | ||
a38469e1 FB |
394 | /* no interactive support */ |
395 | static void term_exit(void) | |
85f07f22 | 396 | { |
a38469e1 | 397 | } |
85f07f22 | 398 | |
a38469e1 FB |
399 | static void term_init(void) |
400 | { | |
401 | } | |
85f07f22 | 402 | |
a38469e1 FB |
403 | static int read_key(void) |
404 | { | |
cb09b2ed | 405 | return 0; |
85f07f22 FB |
406 | } |
407 | ||
a38469e1 | 408 | #endif |
bdc4796f | 409 | |
b29f97d1 | 410 | static int read_ffserver_streams(AVFormatContext *s, const char *filename) |
85f07f22 | 411 | { |
79fdaa4c | 412 | int i, err; |
85f07f22 FB |
413 | AVFormatContext *ic; |
414 | ||
79fdaa4c FB |
415 | err = av_open_input_file(&ic, filename, NULL, FFM_PACKET_SIZE, NULL); |
416 | if (err < 0) | |
417 | return err; | |
85f07f22 FB |
418 | /* copy stream format */ |
419 | s->nb_streams = ic->nb_streams; | |
420 | for(i=0;i<ic->nb_streams;i++) { | |
421 | AVStream *st; | |
1e491e29 | 422 | |
f37f8d4c | 423 | // FIXME: a more elegant solution is needed |
e1031171 | 424 | st = av_mallocz(sizeof(AVStream)); |
85f07f22 | 425 | memcpy(st, ic->streams[i], sizeof(AVStream)); |
f37f8d4c AB |
426 | st->codec = avcodec_alloc_context(); |
427 | memcpy(st->codec, ic->streams[i]->codec, sizeof(AVCodecContext)); | |
85f07f22 FB |
428 | s->streams[i] = st; |
429 | } | |
430 | ||
431 | av_close_input_file(ic); | |
432 | return 0; | |
433 | } | |
434 | ||
b4a3389e WG |
435 | static double |
436 | get_sync_ipts(const AVOutputStream *ost) | |
437 | { | |
438 | const AVInputStream *ist = ost->sync_ist; | |
439 | return (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/AV_TIME_BASE; | |
440 | } | |
441 | ||
817b23ff | 442 | #define MAX_AUDIO_PACKET_SIZE (128 * 1024) |
85f07f22 | 443 | |
115329f1 DB |
444 | static void do_audio_out(AVFormatContext *s, |
445 | AVOutputStream *ost, | |
85f07f22 FB |
446 | AVInputStream *ist, |
447 | unsigned char *buf, int size) | |
448 | { | |
0c1a9eda | 449 | uint8_t *buftmp; |
d66c7abc SC |
450 | static uint8_t *audio_buf = NULL; |
451 | static uint8_t *audio_out = NULL; | |
558eae03 | 452 | const int audio_out_size= 4*MAX_AUDIO_PACKET_SIZE; |
d66c7abc | 453 | |
85f07f22 | 454 | int size_out, frame_bytes, ret; |
01f4895c | 455 | AVCodecContext *enc= ost->st->codec; |
85f07f22 | 456 | |
d66c7abc SC |
457 | /* SC: dynamic allocation of buffers */ |
458 | if (!audio_buf) | |
459 | audio_buf = av_malloc(2*MAX_AUDIO_PACKET_SIZE); | |
460 | if (!audio_out) | |
558eae03 | 461 | audio_out = av_malloc(audio_out_size); |
d66c7abc SC |
462 | if (!audio_buf || !audio_out) |
463 | return; /* Should signal an error ! */ | |
464 | ||
986ebcdb | 465 | if(audio_sync_method){ |
115329f1 | 466 | double delta = get_sync_ipts(ost) * enc->sample_rate - ost->sync_opts |
01f4895c MN |
467 | - fifo_size(&ost->fifo, ost->fifo.rptr)/(ost->st->codec->channels * 2); |
468 | double idelta= delta*ist->st->codec->sample_rate / enc->sample_rate; | |
469 | int byte_delta= ((int)idelta)*2*ist->st->codec->channels; | |
ff4905a5 | 470 | |
986ebcdb MN |
471 | //FIXME resample delay |
472 | if(fabs(delta) > 50){ | |
ff4905a5 MN |
473 | if(ist->is_start){ |
474 | if(byte_delta < 0){ | |
f41dd5aa | 475 | byte_delta= FFMAX(byte_delta, -size); |
ff4905a5 MN |
476 | size += byte_delta; |
477 | buf -= byte_delta; | |
478 | if(verbose > 2) | |
479 | fprintf(stderr, "discarding %d audio samples\n", (int)-delta); | |
480 | if(!size) | |
481 | return; | |
482 | ist->is_start=0; | |
483 | }else{ | |
484 | static uint8_t *input_tmp= NULL; | |
485 | input_tmp= av_realloc(input_tmp, byte_delta + size); | |
486 | ||
487 | if(byte_delta + size <= MAX_AUDIO_PACKET_SIZE) | |
488 | ist->is_start=0; | |
489 | else | |
490 | byte_delta= MAX_AUDIO_PACKET_SIZE - size; | |
491 | ||
492 | memset(input_tmp, 0, byte_delta); | |
493 | memcpy(input_tmp + byte_delta, buf, size); | |
494 | buf= input_tmp; | |
495 | size += byte_delta; | |
496 | if(verbose > 2) | |
497 | fprintf(stderr, "adding %d audio samples of silence\n", (int)delta); | |
498 | } | |
499 | }else if(audio_sync_method>1){ | |
500 | int comp= clip(delta, -audio_sync_method, audio_sync_method); | |
501 | assert(ost->audio_resample); | |
502 | if(verbose > 2) | |
503 | fprintf(stderr, "compensating audio timestamp drift:%f compensation:%d in:%d\n", delta, comp, enc->sample_rate); | |
01f4895c | 504 | // fprintf(stderr, "drift:%f len:%d opts:%lld ipts:%lld fifo:%d\n", delta, -1, ost->sync_opts, (int64_t)(get_sync_ipts(ost) * enc->sample_rate), fifo_size(&ost->fifo, ost->fifo.rptr)/(ost->st->codec->channels * 2)); |
ff4905a5 MN |
505 | av_resample_compensate(*(struct AVResampleContext**)ost->resample, comp, enc->sample_rate); |
506 | } | |
115329f1 | 507 | } |
986ebcdb | 508 | }else |
b4a3389e | 509 | ost->sync_opts= lrintf(get_sync_ipts(ost) * enc->sample_rate) |
01f4895c | 510 | - fifo_size(&ost->fifo, ost->fifo.rptr)/(ost->st->codec->channels * 2); //FIXME wrong |
85f07f22 FB |
511 | |
512 | if (ost->audio_resample) { | |
513 | buftmp = audio_buf; | |
115329f1 | 514 | size_out = audio_resample(ost->resample, |
85f07f22 | 515 | (short *)buftmp, (short *)buf, |
01f4895c | 516 | size / (ist->st->codec->channels * 2)); |
85f07f22 FB |
517 | size_out = size_out * enc->channels * 2; |
518 | } else { | |
519 | buftmp = buf; | |
520 | size_out = size; | |
521 | } | |
522 | ||
523 | /* now encode as many frames as possible */ | |
a0663ba4 | 524 | if (enc->frame_size > 1) { |
85f07f22 | 525 | /* output resampled raw samples */ |
115329f1 | 526 | fifo_write(&ost->fifo, buftmp, size_out, |
85f07f22 FB |
527 | &ost->fifo.wptr); |
528 | ||
529 | frame_bytes = enc->frame_size * 2 * enc->channels; | |
115329f1 DB |
530 | |
531 | while (fifo_read(&ost->fifo, audio_buf, frame_bytes, | |
85f07f22 | 532 | &ost->fifo.rptr) == 0) { |
e928649b MN |
533 | AVPacket pkt; |
534 | av_init_packet(&pkt); | |
535 | ||
115329f1 | 536 | ret = avcodec_encode_audio(enc, audio_out, audio_out_size, |
a0663ba4 | 537 | (short *)audio_buf); |
1008ceb3 | 538 | audio_size += ret; |
e928649b MN |
539 | pkt.stream_index= ost->index; |
540 | pkt.data= audio_out; | |
541 | pkt.size= ret; | |
e7902f20 | 542 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 543 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
e928649b | 544 | pkt.flags |= PKT_FLAG_KEY; |
3c895fc0 | 545 | av_interleaved_write_frame(s, &pkt); |
115329f1 | 546 | |
986ebcdb | 547 | ost->sync_opts += enc->frame_size; |
85f07f22 FB |
548 | } |
549 | } else { | |
e928649b MN |
550 | AVPacket pkt; |
551 | av_init_packet(&pkt); | |
986ebcdb | 552 | |
c43042a7 | 553 | ost->sync_opts += size_out / (2 * enc->channels); |
986ebcdb | 554 | |
a0663ba4 FB |
555 | /* output a pcm frame */ |
556 | /* XXX: change encoding codec API to avoid this ? */ | |
557 | switch(enc->codec->id) { | |
b461b3bc RD |
558 | case CODEC_ID_PCM_S32LE: |
559 | case CODEC_ID_PCM_S32BE: | |
560 | case CODEC_ID_PCM_U32LE: | |
561 | case CODEC_ID_PCM_U32BE: | |
562 | size_out = size_out << 1; | |
563 | break; | |
564 | case CODEC_ID_PCM_S24LE: | |
565 | case CODEC_ID_PCM_S24BE: | |
566 | case CODEC_ID_PCM_U24LE: | |
567 | case CODEC_ID_PCM_U24BE: | |
568 | case CODEC_ID_PCM_S24DAUD: | |
569 | size_out = size_out / 2 * 3; | |
570 | break; | |
a0663ba4 FB |
571 | case CODEC_ID_PCM_S16LE: |
572 | case CODEC_ID_PCM_S16BE: | |
573 | case CODEC_ID_PCM_U16LE: | |
574 | case CODEC_ID_PCM_U16BE: | |
575 | break; | |
576 | default: | |
577 | size_out = size_out >> 1; | |
578 | break; | |
579 | } | |
115329f1 | 580 | ret = avcodec_encode_audio(enc, audio_out, size_out, |
bb270c08 | 581 | (short *)buftmp); |
1008ceb3 | 582 | audio_size += ret; |
e928649b MN |
583 | pkt.stream_index= ost->index; |
584 | pkt.data= audio_out; | |
585 | pkt.size= ret; | |
e7902f20 | 586 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 587 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
e928649b | 588 | pkt.flags |= PKT_FLAG_KEY; |
3c895fc0 | 589 | av_interleaved_write_frame(s, &pkt); |
85f07f22 FB |
590 | } |
591 | } | |
592 | ||
10d104e4 PG |
593 | static void pre_process_video_frame(AVInputStream *ist, AVPicture *picture, void **bufp) |
594 | { | |
595 | AVCodecContext *dec; | |
596 | AVPicture *picture2; | |
597 | AVPicture picture_tmp; | |
0c1a9eda | 598 | uint8_t *buf = 0; |
10d104e4 | 599 | |
01f4895c | 600 | dec = ist->st->codec; |
10d104e4 PG |
601 | |
602 | /* deinterlace : must be done before any resize */ | |
bee0d9e5 | 603 | if (do_deinterlace || using_vhook) { |
10d104e4 PG |
604 | int size; |
605 | ||
606 | /* create temporary picture */ | |
607 | size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height); | |
608 | buf = av_malloc(size); | |
609 | if (!buf) | |
610 | return; | |
115329f1 | 611 | |
10d104e4 PG |
612 | picture2 = &picture_tmp; |
613 | avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height); | |
614 | ||
dafc3856 | 615 | if (do_deinterlace){ |
115329f1 | 616 | if(avpicture_deinterlace(picture2, picture, |
dafc3856 MN |
617 | dec->pix_fmt, dec->width, dec->height) < 0) { |
618 | /* if error, do not deinterlace */ | |
619 | av_free(buf); | |
620 | buf = NULL; | |
621 | picture2 = picture; | |
622 | } | |
623 | } else { | |
115329f1 | 624 | if (img_convert(picture2, dec->pix_fmt, picture, |
bee0d9e5 CY |
625 | dec->pix_fmt, dec->width, dec->height) < 0) { |
626 | /* if error, do not copy */ | |
627 | av_free(buf); | |
628 | buf = NULL; | |
629 | picture2 = picture; | |
630 | } | |
631 | } | |
10d104e4 PG |
632 | } else { |
633 | picture2 = picture; | |
634 | } | |
635 | ||
636 | frame_hook_process(picture2, dec->pix_fmt, dec->width, dec->height); | |
637 | ||
638 | if (picture != picture2) | |
639 | *picture = *picture2; | |
640 | *bufp = buf; | |
641 | } | |
642 | ||
ec5517d5 FB |
643 | /* we begin to correct av delay at this threshold */ |
644 | #define AV_DELAY_MAX 0.100 | |
85f07f22 | 645 | |
1ff93ffc TK |
646 | |
647 | /* Expects img to be yuv420 */ | |
648 | static void fill_pad_region(AVPicture* img, int height, int width, | |
649 | int padtop, int padbottom, int padleft, int padright, int *color) { | |
115329f1 | 650 | |
1ff93ffc TK |
651 | int i, y, shift; |
652 | uint8_t *optr; | |
115329f1 | 653 | |
1ff93ffc TK |
654 | for (i = 0; i < 3; i++) { |
655 | shift = (i == 0) ? 0 : 1; | |
115329f1 | 656 | |
1ff93ffc | 657 | if (padtop || padleft) { |
115329f1 | 658 | memset(img->data[i], color[i], (((img->linesize[i] * padtop) + |
1ff93ffc TK |
659 | padleft) >> shift)); |
660 | } | |
661 | ||
662 | if (padleft || padright) { | |
663 | optr = img->data[i] + (img->linesize[i] * (padtop >> shift)) + | |
664 | (img->linesize[i] - (padright >> shift)); | |
665 | ||
da723fd2 | 666 | for (y = 0; y < ((height - (padtop + padbottom) - 1) >> shift); y++) { |
1ff93ffc TK |
667 | memset(optr, color[i], (padleft + padright) >> shift); |
668 | optr += img->linesize[i]; | |
669 | } | |
670 | } | |
115329f1 | 671 | |
da723fd2 C |
672 | if (padbottom || padright) { |
673 | optr = img->data[i] + (((img->linesize[i] * (height - padbottom)) - padright) >> shift); | |
674 | memset(optr, color[i], (((img->linesize[i] * padbottom) + padright) >> shift)); | |
1ff93ffc TK |
675 | } |
676 | } | |
677 | } | |
678 | ||
115329f1 DB |
679 | static void do_subtitle_out(AVFormatContext *s, |
680 | AVOutputStream *ost, | |
cf7fc795 FB |
681 | AVInputStream *ist, |
682 | AVSubtitle *sub, | |
683 | int64_t pts) | |
684 | { | |
685 | static uint8_t *subtitle_out = NULL; | |
686 | int subtitle_out_max_size = 65536; | |
687 | int subtitle_out_size, nb, i; | |
688 | AVCodecContext *enc; | |
689 | AVPacket pkt; | |
690 | ||
691 | if (pts == AV_NOPTS_VALUE) { | |
692 | fprintf(stderr, "Subtitle packets must have a pts\n"); | |
693 | return; | |
694 | } | |
695 | ||
01f4895c | 696 | enc = ost->st->codec; |
cf7fc795 FB |
697 | |
698 | if (!subtitle_out) { | |
699 | subtitle_out = av_malloc(subtitle_out_max_size); | |
700 | } | |
701 | ||
702 | /* Note: DVB subtitle need one packet to draw them and one other | |
703 | packet to clear them */ | |
704 | /* XXX: signal it in the codec context ? */ | |
705 | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) | |
706 | nb = 2; | |
707 | else | |
708 | nb = 1; | |
709 | ||
710 | for(i = 0; i < nb; i++) { | |
115329f1 | 711 | subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, |
cf7fc795 | 712 | subtitle_out_max_size, sub); |
115329f1 | 713 | |
cf7fc795 FB |
714 | av_init_packet(&pkt); |
715 | pkt.stream_index = ost->index; | |
716 | pkt.data = subtitle_out; | |
717 | pkt.size = subtitle_out_size; | |
718 | pkt.pts = av_rescale_q(av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q) + input_files_ts_offset[ist->file_index], AV_TIME_BASE_Q, ost->st->time_base); | |
719 | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) { | |
720 | /* XXX: the pts correction is handled here. Maybe handling | |
721 | it in the codec would be better */ | |
722 | if (i == 0) | |
723 | pkt.pts += 90 * sub->start_display_time; | |
724 | else | |
725 | pkt.pts += 90 * sub->end_display_time; | |
726 | } | |
727 | av_interleaved_write_frame(s, &pkt); | |
728 | } | |
729 | } | |
730 | ||
8a6cb114 | 731 | static int bit_buffer_size= 1024*256; |
27537106 | 732 | static uint8_t *bit_buffer= NULL; |
1ff93ffc | 733 | |
115329f1 DB |
734 | static void do_video_out(AVFormatContext *s, |
735 | AVOutputStream *ost, | |
85f07f22 | 736 | AVInputStream *ist, |
7a0f9d7e | 737 | AVFrame *in_picture, |
986ebcdb | 738 | int *frame_size) |
85f07f22 | 739 | { |
ec5517d5 | 740 | int nb_frames, i, ret; |
a4d36c11 MN |
741 | AVFrame *final_picture, *formatted_picture; |
742 | AVFrame picture_format_temp, picture_crop_temp; | |
0c1a9eda | 743 | uint8_t *buf = NULL, *buf1 = NULL; |
cfcf0ffd | 744 | AVCodecContext *enc, *dec; |
a686caf0 | 745 | enum PixelFormat target_pixfmt; |
115329f1 | 746 | |
a4d36c11 MN |
747 | avcodec_get_frame_defaults(&picture_format_temp); |
748 | avcodec_get_frame_defaults(&picture_crop_temp); | |
749 | ||
01f4895c MN |
750 | enc = ost->st->codec; |
751 | dec = ist->st->codec; | |
85f07f22 | 752 | |
ec5517d5 FB |
753 | /* by default, we output a single frame */ |
754 | nb_frames = 1; | |
755 | ||
204c0f48 PG |
756 | *frame_size = 0; |
757 | ||
986ebcdb | 758 | if(video_sync_method){ |
10d104e4 | 759 | double vdelta; |
b4a3389e | 760 | vdelta = get_sync_ipts(ost) / av_q2d(enc->time_base) - ost->sync_opts; |
e928649b MN |
761 | //FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c |
762 | if (vdelta < -1.1) | |
763 | nb_frames = 0; | |
764 | else if (vdelta > 1.1) | |
70122f29 | 765 | nb_frames = lrintf(vdelta); |
72bd8100 | 766 | //fprintf(stderr, "vdelta:%f, ost->sync_opts:%lld, ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, ost->sync_ipts, nb_frames); |
50c3dd32 MN |
767 | if (nb_frames == 0){ |
768 | ++nb_frames_drop; | |
769 | if (verbose>2) | |
770 | fprintf(stderr, "*** drop!\n"); | |
8300609b MN |
771 | }else if (nb_frames > 1) { |
772 | nb_frames_dup += nb_frames; | |
50c3dd32 | 773 | if (verbose>2) |
8300609b | 774 | fprintf(stderr, "*** %d dup!\n", nb_frames-1); |
50c3dd32 MN |
775 | } |
776 | }else | |
b4a3389e | 777 | ost->sync_opts= lrintf(get_sync_ipts(ost) / av_q2d(enc->time_base)); |
445f1b83 | 778 | |
7ca60994 | 779 | nb_frames= FFMIN(nb_frames, max_frames[CODEC_TYPE_VIDEO] - ost->frame_number); |
115329f1 | 780 | if (nb_frames <= 0) |
85f07f22 | 781 | return; |
ce7c56c2 | 782 | |
cfcf0ffd | 783 | /* convert pixel format if needed */ |
1ff93ffc TK |
784 | target_pixfmt = ost->video_resample || ost->video_pad |
785 | ? PIX_FMT_YUV420P : enc->pix_fmt; | |
a686caf0 | 786 | if (dec->pix_fmt != target_pixfmt) { |
cfcf0ffd FB |
787 | int size; |
788 | ||
789 | /* create temporary picture */ | |
39518b49 | 790 | size = avpicture_get_size(target_pixfmt, dec->width, dec->height); |
0f1578af | 791 | buf = av_malloc(size); |
cfcf0ffd FB |
792 | if (!buf) |
793 | return; | |
34b10a57 | 794 | formatted_picture = &picture_format_temp; |
a4d36c11 | 795 | avpicture_fill((AVPicture*)formatted_picture, buf, target_pixfmt, dec->width, dec->height); |
115329f1 DB |
796 | |
797 | if (img_convert((AVPicture*)formatted_picture, target_pixfmt, | |
798 | (AVPicture *)in_picture, dec->pix_fmt, | |
cfcf0ffd | 799 | dec->width, dec->height) < 0) { |
d8019eb5 AD |
800 | |
801 | if (verbose >= 0) | |
802 | fprintf(stderr, "pixel format conversion not handled\n"); | |
803 | ||
cfcf0ffd FB |
804 | goto the_end; |
805 | } | |
806 | } else { | |
a4d36c11 | 807 | formatted_picture = in_picture; |
cfcf0ffd FB |
808 | } |
809 | ||
1ff93ffc | 810 | /* XXX: resampling could be done before raw format conversion in |
cfcf0ffd FB |
811 | some cases to go faster */ |
812 | /* XXX: only works for YUV420P */ | |
85f07f22 | 813 | if (ost->video_resample) { |
34b10a57 | 814 | final_picture = &ost->pict_tmp; |
a4d36c11 | 815 | img_resample(ost->img_resample_ctx, (AVPicture*)final_picture, (AVPicture*)formatted_picture); |
115329f1 | 816 | |
1ff93ffc | 817 | if (ost->padtop || ost->padbottom || ost->padleft || ost->padright) { |
a4d36c11 | 818 | fill_pad_region((AVPicture*)final_picture, enc->height, enc->width, |
1ff93ffc TK |
819 | ost->padtop, ost->padbottom, ost->padleft, ost->padright, |
820 | padcolor); | |
821 | } | |
115329f1 | 822 | |
bb270c08 | 823 | if (enc->pix_fmt != PIX_FMT_YUV420P) { |
a686caf0 | 824 | int size; |
115329f1 | 825 | |
bb270c08 | 826 | av_free(buf); |
a686caf0 RS |
827 | /* create temporary picture */ |
828 | size = avpicture_get_size(enc->pix_fmt, enc->width, enc->height); | |
829 | buf = av_malloc(size); | |
830 | if (!buf) | |
831 | return; | |
832 | final_picture = &picture_format_temp; | |
a4d36c11 | 833 | avpicture_fill((AVPicture*)final_picture, buf, enc->pix_fmt, enc->width, enc->height); |
115329f1 DB |
834 | |
835 | if (img_convert((AVPicture*)final_picture, enc->pix_fmt, | |
836 | (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P, | |
a686caf0 | 837 | enc->width, enc->height) < 0) { |
d8019eb5 AD |
838 | |
839 | if (verbose >= 0) | |
840 | fprintf(stderr, "pixel format conversion not handled\n"); | |
841 | ||
a686caf0 RS |
842 | goto the_end; |
843 | } | |
bb270c08 | 844 | } |
34b10a57 D |
845 | } else if (ost->video_crop) { |
846 | picture_crop_temp.data[0] = formatted_picture->data[0] + | |
847 | (ost->topBand * formatted_picture->linesize[0]) + ost->leftBand; | |
848 | ||
849 | picture_crop_temp.data[1] = formatted_picture->data[1] + | |
850 | ((ost->topBand >> 1) * formatted_picture->linesize[1]) + | |
851 | (ost->leftBand >> 1); | |
852 | ||
853 | picture_crop_temp.data[2] = formatted_picture->data[2] + | |
854 | ((ost->topBand >> 1) * formatted_picture->linesize[2]) + | |
855 | (ost->leftBand >> 1); | |
856 | ||
857 | picture_crop_temp.linesize[0] = formatted_picture->linesize[0]; | |
858 | picture_crop_temp.linesize[1] = formatted_picture->linesize[1]; | |
859 | picture_crop_temp.linesize[2] = formatted_picture->linesize[2]; | |
860 | final_picture = &picture_crop_temp; | |
1ff93ffc TK |
861 | } else if (ost->video_pad) { |
862 | final_picture = &ost->pict_tmp; | |
863 | ||
864 | for (i = 0; i < 3; i++) { | |
865 | uint8_t *optr, *iptr; | |
866 | int shift = (i == 0) ? 0 : 1; | |
867 | int y, yheight; | |
115329f1 | 868 | |
1ff93ffc | 869 | /* set offset to start writing image into */ |
115329f1 | 870 | optr = final_picture->data[i] + (((final_picture->linesize[i] * |
1ff93ffc TK |
871 | ost->padtop) + ost->padleft) >> shift); |
872 | iptr = formatted_picture->data[i]; | |
873 | ||
874 | yheight = (enc->height - ost->padtop - ost->padbottom) >> shift; | |
875 | for (y = 0; y < yheight; y++) { | |
876 | /* copy unpadded image row into padded image row */ | |
877 | memcpy(optr, iptr, formatted_picture->linesize[i]); | |
878 | optr += final_picture->linesize[i]; | |
879 | iptr += formatted_picture->linesize[i]; | |
880 | } | |
881 | } | |
882 | ||
a4d36c11 | 883 | fill_pad_region((AVPicture*)final_picture, enc->height, enc->width, |
1ff93ffc TK |
884 | ost->padtop, ost->padbottom, ost->padleft, ost->padright, |
885 | padcolor); | |
115329f1 | 886 | |
1ff93ffc TK |
887 | if (enc->pix_fmt != PIX_FMT_YUV420P) { |
888 | int size; | |
889 | ||
890 | av_free(buf); | |
891 | /* create temporary picture */ | |
892 | size = avpicture_get_size(enc->pix_fmt, enc->width, enc->height); | |
893 | buf = av_malloc(size); | |
894 | if (!buf) | |
895 | return; | |
896 | final_picture = &picture_format_temp; | |
a4d36c11 | 897 | avpicture_fill((AVPicture*)final_picture, buf, enc->pix_fmt, enc->width, enc->height); |
1ff93ffc | 898 | |
115329f1 DB |
899 | if (img_convert((AVPicture*)final_picture, enc->pix_fmt, |
900 | (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P, | |
1ff93ffc | 901 | enc->width, enc->height) < 0) { |
d8019eb5 AD |
902 | |
903 | if (verbose >= 0) | |
904 | fprintf(stderr, "pixel format conversion not handled\n"); | |
905 | ||
1ff93ffc TK |
906 | goto the_end; |
907 | } | |
908 | } | |
85f07f22 | 909 | } else { |
34b10a57 | 910 | final_picture = formatted_picture; |
85f07f22 | 911 | } |
85f07f22 | 912 | /* duplicates frame if needed */ |
ec5517d5 | 913 | for(i=0;i<nb_frames;i++) { |
e928649b MN |
914 | AVPacket pkt; |
915 | av_init_packet(&pkt); | |
916 | pkt.stream_index= ost->index; | |
917 | ||
e8750b00 FR |
918 | if (s->oformat->flags & AVFMT_RAWPICTURE) { |
919 | /* raw pictures are written as AVPicture structure to | |
920 | avoid any copies. We support temorarily the older | |
921 | method. */ | |
2744ca9a | 922 | AVFrame* old_frame = enc->coded_frame; |
bb270c08 | 923 | enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack |
e928649b MN |
924 | pkt.data= (uint8_t *)final_picture; |
925 | pkt.size= sizeof(AVPicture); | |
e7902f20 | 926 | if(dec->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 927 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
e928649b MN |
928 | if(dec->coded_frame && dec->coded_frame->key_frame) |
929 | pkt.flags |= PKT_FLAG_KEY; | |
930 | ||
3c895fc0 | 931 | av_interleaved_write_frame(s, &pkt); |
bb270c08 | 932 | enc->coded_frame = old_frame; |
e8750b00 | 933 | } else { |
492cd3a9 | 934 | AVFrame big_picture; |
a4d36c11 MN |
935 | |
936 | big_picture= *final_picture; | |
7a0f9d7e FB |
937 | /* better than nothing: use input picture interlaced |
938 | settings */ | |
939 | big_picture.interlaced_frame = in_picture->interlaced_frame; | |
637b5326 | 940 | if(avctx_opts->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)){ |
bb198e19 MN |
941 | if(top_field_first == -1) |
942 | big_picture.top_field_first = in_picture->top_field_first; | |
943 | else | |
2a8edc5d | 944 | big_picture.top_field_first = top_field_first; |
bb198e19 | 945 | } |
7a0f9d7e | 946 | |
85f07f22 FB |
947 | /* handles sameq here. This is not correct because it may |
948 | not be a global option */ | |
949 | if (same_quality) { | |
1e491e29 MN |
950 | big_picture.quality = ist->st->quality; |
951 | }else | |
952 | big_picture.quality = ost->st->quality; | |
f4f3223f MN |
953 | if(!me_threshold) |
954 | big_picture.pict_type = 0; | |
50c3dd32 | 955 | // big_picture.pts = AV_NOPTS_VALUE; |
c0df9d75 MN |
956 | big_picture.pts= ost->sync_opts; |
957 | // big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den); | |
50c3dd32 | 958 | //av_log(NULL, AV_LOG_DEBUG, "%lld -> encoder\n", ost->sync_opts); |
115329f1 | 959 | ret = avcodec_encode_video(enc, |
8a6cb114 | 960 | bit_buffer, bit_buffer_size, |
1e491e29 | 961 | &big_picture); |
44429457 | 962 | //enc->frame_number = enc->real_pict_num; |
4bbc6260 | 963 | if(ret>0){ |
27537106 | 964 | pkt.data= bit_buffer; |
e928649b | 965 | pkt.size= ret; |
e7902f20 | 966 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 967 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
115329f1 | 968 | /*av_log(NULL, AV_LOG_DEBUG, "encoder -> %lld/%lld\n", |
c0df9d75 MN |
969 | pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1, |
970 | pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/ | |
50c3dd32 | 971 | |
e928649b MN |
972 | if(enc->coded_frame && enc->coded_frame->key_frame) |
973 | pkt.flags |= PKT_FLAG_KEY; | |
3c895fc0 | 974 | av_interleaved_write_frame(s, &pkt); |
e928649b MN |
975 | *frame_size = ret; |
976 | //fprintf(stderr,"\nFrame: %3d %3d size: %5d type: %d", | |
977 | // enc->frame_number-1, enc->real_pict_num, ret, | |
978 | // enc->pict_type); | |
979 | /* if two pass, output log */ | |
980 | if (ost->logfile && enc->stats_out) { | |
981 | fprintf(ost->logfile, "%s", enc->stats_out); | |
982 | } | |
5abdb4b1 | 983 | } |
85f07f22 | 984 | } |
50c3dd32 | 985 | ost->sync_opts++; |
ec5517d5 | 986 | ost->frame_number++; |
85f07f22 | 987 | } |
ec5517d5 | 988 | the_end: |
0f1578af FB |
989 | av_free(buf); |
990 | av_free(buf1); | |
85f07f22 FB |
991 | } |
992 | ||
140cb663 MN |
993 | static double psnr(double d){ |
994 | if(d==0) return INFINITY; | |
b29f97d1 | 995 | return -10.0*log(d)/log(10.0); |
140cb663 MN |
996 | } |
997 | ||
115329f1 | 998 | static void do_video_stats(AVFormatContext *os, AVOutputStream *ost, |
ec5517d5 | 999 | int frame_size) |
ce7c56c2 J |
1000 | { |
1001 | static FILE *fvstats=NULL; | |
ce7c56c2 | 1002 | char filename[40]; |
bf5af568 FB |
1003 | time_t today2; |
1004 | struct tm *today; | |
ce7c56c2 J |
1005 | AVCodecContext *enc; |
1006 | int frame_number; | |
0c1a9eda | 1007 | int64_t ti; |
ce7c56c2 | 1008 | double ti1, bitrate, avg_bitrate; |
115329f1 | 1009 | |
ce7c56c2 J |
1010 | if (!fvstats) { |
1011 | today2 = time(NULL); | |
1012 | today = localtime(&today2); | |
2fc8ea24 | 1013 | snprintf(filename, sizeof(filename), "vstats_%02d%02d%02d.log", today->tm_hour, |
ce7c56c2 J |
1014 | today->tm_min, |
1015 | today->tm_sec); | |
1016 | fvstats = fopen(filename,"w"); | |
1017 | if (!fvstats) { | |
1018 | perror("fopen"); | |
1019 | exit(1); | |
1020 | } | |
1021 | } | |
115329f1 | 1022 | |
ce7c56c2 | 1023 | ti = MAXINT64; |
01f4895c | 1024 | enc = ost->st->codec; |
ce7c56c2 | 1025 | if (enc->codec_type == CODEC_TYPE_VIDEO) { |
ec5517d5 | 1026 | frame_number = ost->frame_number; |
158c7f05 | 1027 | fprintf(fvstats, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality/(float)FF_QP2LAMBDA); |
140cb663 | 1028 | if (enc->flags&CODEC_FLAG_PSNR) |
492cd3a9 | 1029 | fprintf(fvstats, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0))); |
115329f1 | 1030 | |
ce7c56c2 | 1031 | fprintf(fvstats,"f_size= %6d ", frame_size); |
ec5517d5 | 1032 | /* compute pts value */ |
c0df9d75 | 1033 | ti1 = ost->sync_opts * av_q2d(enc->time_base); |
ce7c56c2 J |
1034 | if (ti1 < 0.01) |
1035 | ti1 = 0.01; | |
115329f1 | 1036 | |
c0df9d75 | 1037 | bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0; |
1008ceb3 | 1038 | avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0; |
ce7c56c2 | 1039 | fprintf(fvstats, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", |
1008ceb3 | 1040 | (double)video_size / 1024, ti1, bitrate, avg_bitrate); |
115329f1 | 1041 | fprintf(fvstats,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type)); |
ce7c56c2 | 1042 | } |
ec5517d5 FB |
1043 | } |
1044 | ||
b29f97d1 | 1045 | static void print_report(AVFormatContext **output_files, |
bb270c08 DB |
1046 | AVOutputStream **ost_table, int nb_ostreams, |
1047 | int is_last_report) | |
ec5517d5 FB |
1048 | { |
1049 | char buf[1024]; | |
1050 | AVOutputStream *ost; | |
1051 | AVFormatContext *oc, *os; | |
0c1a9eda | 1052 | int64_t total_size; |
ec5517d5 FB |
1053 | AVCodecContext *enc; |
1054 | int frame_number, vid, i; | |
1055 | double bitrate, ti1, pts; | |
0c1a9eda | 1056 | static int64_t last_time = -1; |
0888fd22 | 1057 | static int qp_histogram[52]; |
115329f1 | 1058 | |
ec5517d5 | 1059 | if (!is_last_report) { |
0c1a9eda | 1060 | int64_t cur_time; |
ec5517d5 FB |
1061 | /* display the report every 0.5 seconds */ |
1062 | cur_time = av_gettime(); | |
1063 | if (last_time == -1) { | |
1064 | last_time = cur_time; | |
1065 | return; | |
115329f1 | 1066 | } |
ec5517d5 FB |
1067 | if ((cur_time - last_time) < 500000) |
1068 | return; | |
1069 | last_time = cur_time; | |
1070 | } | |
1071 | ||
ce7c56c2 | 1072 | |
ec5517d5 FB |
1073 | oc = output_files[0]; |
1074 | ||
1075 | total_size = url_ftell(&oc->pb); | |
115329f1 | 1076 | |
ec5517d5 FB |
1077 | buf[0] = '\0'; |
1078 | ti1 = 1e10; | |
1079 | vid = 0; | |
1080 | for(i=0;i<nb_ostreams;i++) { | |
1081 | ost = ost_table[i]; | |
1082 | os = output_files[ost->file_index]; | |
01f4895c | 1083 | enc = ost->st->codec; |
10d104e4 | 1084 | if (vid && enc->codec_type == CODEC_TYPE_VIDEO) { |
0ecca7a4 | 1085 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", |
158c7f05 | 1086 | enc->coded_frame->quality/(float)FF_QP2LAMBDA); |
10d104e4 | 1087 | } |
ec5517d5 FB |
1088 | if (!vid && enc->codec_type == CODEC_TYPE_VIDEO) { |
1089 | frame_number = ost->frame_number; | |
0888fd22 MN |
1090 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d q=%3.1f ", |
1091 | frame_number, enc->coded_frame ? enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1); | |
890972be | 1092 | if(is_last_report) |
0ecca7a4 | 1093 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L"); |
0888fd22 MN |
1094 | if(qp_hist && enc->coded_frame){ |
1095 | int j; | |
1096 | int qp= lrintf(enc->coded_frame->quality/(float)FF_QP2LAMBDA); | |
1097 | if(qp>=0 && qp<sizeof(qp_histogram)/sizeof(int)) | |
1098 | qp_histogram[qp]++; | |
1099 | for(j=0; j<32; j++) | |
1100 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log(qp_histogram[j]+1)/log(2))); | |
1101 | } | |
890972be MN |
1102 | if (enc->flags&CODEC_FLAG_PSNR){ |
1103 | int j; | |
1104 | double error, error_sum=0; | |
1105 | double scale, scale_sum=0; | |
1106 | char type[3]= {'Y','U','V'}; | |
0ecca7a4 | 1107 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR="); |
890972be MN |
1108 | for(j=0; j<3; j++){ |
1109 | if(is_last_report){ | |
1110 | error= enc->error[j]; | |
1111 | scale= enc->width*enc->height*255.0*255.0*frame_number; | |
1112 | }else{ | |
1113 | error= enc->coded_frame->error[j]; | |
1114 | scale= enc->width*enc->height*255.0*255.0; | |
1115 | } | |
1116 | if(j) scale/=4; | |
1117 | error_sum += error; | |
1118 | scale_sum += scale; | |
0ecca7a4 | 1119 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error/scale)); |
890972be | 1120 | } |
0ecca7a4 | 1121 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum/scale_sum)); |
890972be | 1122 | } |
ec5517d5 FB |
1123 | vid = 1; |
1124 | } | |
1125 | /* compute min output value */ | |
9ee91c2f | 1126 | pts = (double)ost->st->pts.val * ost->st->time_base.num / ost->st->time_base.den; |
5d9827bc | 1127 | if ((pts < ti1) && (pts > 0)) |
ec5517d5 FB |
1128 | ti1 = pts; |
1129 | } | |
1130 | if (ti1 < 0.01) | |
1131 | ti1 = 0.01; | |
115329f1 | 1132 | |
f068206e BE |
1133 | if (verbose || is_last_report) { |
1134 | bitrate = (double)(total_size * 8) / ti1 / 1000.0; | |
115329f1 DB |
1135 | |
1136 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), | |
ec5517d5 FB |
1137 | "size=%8.0fkB time=%0.1f bitrate=%6.1fkbits/s", |
1138 | (double)total_size / 1024, ti1, bitrate); | |
a6a92a9a | 1139 | |
bb270c08 DB |
1140 | if (verbose > 1) |
1141 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d", | |
1142 | nb_frames_dup, nb_frames_drop); | |
115329f1 | 1143 | |
d8019eb5 AD |
1144 | if (verbose >= 0) |
1145 | fprintf(stderr, "%s \r", buf); | |
1146 | ||
ec5517d5 FB |
1147 | fflush(stderr); |
1148 | } | |
115329f1 | 1149 | |
1008ceb3 MN |
1150 | if (is_last_report && verbose >= 0){ |
1151 | int64_t raw= audio_size + video_size + extra_size; | |
f068206e | 1152 | fprintf(stderr, "\n"); |
1008ceb3 MN |
1153 | fprintf(stderr, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n", |
1154 | video_size/1024.0, | |
1155 | audio_size/1024.0, | |
1156 | extra_size/1024.0, | |
1157 | 100.0*(total_size - raw)/raw | |
1158 | ); | |
1159 | } | |
ce7c56c2 J |
1160 | } |
1161 | ||
a700a6ae FB |
1162 | /* pkt = NULL means EOF (needed to flush decoder buffers) */ |
1163 | static int output_packet(AVInputStream *ist, int ist_index, | |
1164 | AVOutputStream **ost_table, int nb_ostreams, | |
4b85a28f | 1165 | const AVPacket *pkt) |
a700a6ae FB |
1166 | { |
1167 | AVFormatContext *os; | |
1168 | AVOutputStream *ost; | |
1169 | uint8_t *ptr; | |
1170 | int len, ret, i; | |
1171 | uint8_t *data_buf; | |
1172 | int data_size, got_picture; | |
1173 | AVFrame picture; | |
a700a6ae | 1174 | void *buffer_to_free; |
78953e62 MN |
1175 | static int samples_size= 0; |
1176 | static short *samples= NULL; | |
cf7fc795 FB |
1177 | AVSubtitle subtitle, *subtitle_to_free; |
1178 | int got_subtitle; | |
115329f1 | 1179 | |
2b18dcd0 MN |
1180 | if(!pkt){ |
1181 | ist->pts= ist->next_pts; // needed for last packet if vsync=0 | |
1182 | } else if (pkt->dts != AV_NOPTS_VALUE) { //FIXME seems redundant, as libavformat does this too | |
c0df9d75 | 1183 | ist->next_pts = ist->pts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); |
a700a6ae | 1184 | } else { |
a603bf8d | 1185 | // assert(ist->pts == ist->next_pts); |
a700a6ae | 1186 | } |
115329f1 | 1187 | |
a700a6ae FB |
1188 | if (pkt == NULL) { |
1189 | /* EOF handling */ | |
1190 | ptr = NULL; | |
1191 | len = 0; | |
1192 | goto handle_eof; | |
1193 | } | |
1194 | ||
1195 | len = pkt->size; | |
1196 | ptr = pkt->data; | |
1197 | while (len > 0) { | |
1198 | handle_eof: | |
1199 | /* decode the packet if needed */ | |
1200 | data_buf = NULL; /* fail safe */ | |
1201 | data_size = 0; | |
cf7fc795 | 1202 | subtitle_to_free = NULL; |
a700a6ae | 1203 | if (ist->decoding_needed) { |
01f4895c | 1204 | switch(ist->st->codec->codec_type) { |
df84ac2e | 1205 | case CODEC_TYPE_AUDIO:{ |
115329f1 | 1206 | if(pkt) |
78953e62 | 1207 | samples= av_fast_realloc(samples, &samples_size, FFMAX(pkt->size, AVCODEC_MAX_AUDIO_FRAME_SIZE)); |
a700a6ae FB |
1208 | /* XXX: could avoid copy if PCM 16 bits with same |
1209 | endianness as CPU */ | |
01f4895c | 1210 | ret = avcodec_decode_audio(ist->st->codec, samples, &data_size, |
a700a6ae FB |
1211 | ptr, len); |
1212 | if (ret < 0) | |
1213 | goto fail_decode; | |
1214 | ptr += ret; | |
1215 | len -= ret; | |
1216 | /* Some bug in mpeg audio decoder gives */ | |
1217 | /* data_size < 0, it seems they are overflows */ | |
1218 | if (data_size <= 0) { | |
1219 | /* no audio frame */ | |
1220 | continue; | |
1221 | } | |
1222 | data_buf = (uint8_t *)samples; | |
115329f1 | 1223 | ist->next_pts += ((int64_t)AV_TIME_BASE/2 * data_size) / |
01f4895c | 1224 | (ist->st->codec->sample_rate * ist->st->codec->channels); |
df84ac2e | 1225 | break;} |
a700a6ae | 1226 | case CODEC_TYPE_VIDEO: |
01f4895c | 1227 | data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2; |
a700a6ae | 1228 | /* XXX: allocate picture correctly */ |
9740beff MN |
1229 | avcodec_get_frame_defaults(&picture); |
1230 | ||
115329f1 | 1231 | ret = avcodec_decode_video(ist->st->codec, |
a700a6ae FB |
1232 | &picture, &got_picture, ptr, len); |
1233 | ist->st->quality= picture.quality; | |
115329f1 | 1234 | if (ret < 0) |
a700a6ae FB |
1235 | goto fail_decode; |
1236 | if (!got_picture) { | |
1237 | /* no picture yet */ | |
1238 | goto discard_packet; | |
1239 | } | |
01f4895c | 1240 | if (ist->st->codec->time_base.num != 0) { |
115329f1 | 1241 | ist->next_pts += ((int64_t)AV_TIME_BASE * |
01f4895c MN |
1242 | ist->st->codec->time_base.num) / |
1243 | ist->st->codec->time_base.den; | |
a700a6ae FB |
1244 | } |
1245 | len = 0; | |
1246 | break; | |
cf7fc795 | 1247 | case CODEC_TYPE_SUBTITLE: |
115329f1 | 1248 | ret = avcodec_decode_subtitle(ist->st->codec, |
cf7fc795 FB |
1249 | &subtitle, &got_subtitle, ptr, len); |
1250 | if (ret < 0) | |
a700a6ae | 1251 | goto fail_decode; |
cf7fc795 FB |
1252 | if (!got_subtitle) { |
1253 | goto discard_packet; | |
a700a6ae | 1254 | } |
cf7fc795 FB |
1255 | subtitle_to_free = &subtitle; |
1256 | len = 0; | |
1257 | break; | |
1258 | default: | |
1259 | goto fail_decode; | |
1260 | } | |
1261 | } else { | |
01f4895c | 1262 | switch(ist->st->codec->codec_type) { |
2fef0bdf | 1263 | case CODEC_TYPE_AUDIO: |
115329f1 | 1264 | ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) / |
01f4895c | 1265 | (ist->st->codec->sample_rate * ist->st->codec->channels); |
2fef0bdf MN |
1266 | break; |
1267 | case CODEC_TYPE_VIDEO: | |
01f4895c | 1268 | if (ist->st->codec->time_base.num != 0) { |
115329f1 | 1269 | ist->next_pts += ((int64_t)AV_TIME_BASE * |
01f4895c MN |
1270 | ist->st->codec->time_base.num) / |
1271 | ist->st->codec->time_base.den; | |
2fef0bdf MN |
1272 | } |
1273 | break; | |
1274 | } | |
a700a6ae FB |
1275 | data_buf = ptr; |
1276 | data_size = len; | |
1277 | ret = len; | |
1278 | len = 0; | |
1279 | } | |
1280 | ||
1281 | buffer_to_free = NULL; | |
01f4895c | 1282 | if (ist->st->codec->codec_type == CODEC_TYPE_VIDEO) { |
115329f1 | 1283 | pre_process_video_frame(ist, (AVPicture *)&picture, |
a700a6ae FB |
1284 | &buffer_to_free); |
1285 | } | |
1286 | ||
7e987c33 | 1287 | // preprocess audio (volume) |
01f4895c | 1288 | if (ist->st->codec->codec_type == CODEC_TYPE_AUDIO) { |
a9aa3467 | 1289 | if (audio_volume != 256) { |
7e987c33 | 1290 | short *volp; |
7e987c33 C |
1291 | volp = samples; |
1292 | for(i=0;i<(data_size / sizeof(short));i++) { | |
a9aa3467 | 1293 | int v = ((*volp) * audio_volume + 128) >> 8; |
7e987c33 C |
1294 | if (v < -32768) v = -32768; |
1295 | if (v > 32767) v = 32767; | |
1296 | *volp++ = v; | |
1297 | } | |
1298 | } | |
1299 | } | |
1300 | ||
a700a6ae | 1301 | /* frame rate emulation */ |
01f4895c MN |
1302 | if (ist->st->codec->rate_emu) { |
1303 | int64_t pts = av_rescale((int64_t) ist->frame * ist->st->codec->time_base.num, 1000000, ist->st->codec->time_base.den); | |
a700a6ae FB |
1304 | int64_t now = av_gettime() - ist->start; |
1305 | if (pts > now) | |
1306 | usleep(pts - now); | |
1307 | ||
1308 | ist->frame++; | |
1309 | } | |
1310 | ||
1311 | #if 0 | |
1312 | /* mpeg PTS deordering : if it is a P or I frame, the PTS | |
1313 | is the one of the next displayed one */ | |
1314 | /* XXX: add mpeg4 too ? */ | |
01f4895c MN |
1315 | if (ist->st->codec->codec_id == CODEC_ID_MPEG1VIDEO) { |
1316 | if (ist->st->codec->pict_type != B_TYPE) { | |
a700a6ae FB |
1317 | int64_t tmp; |
1318 | tmp = ist->last_ip_pts; | |
1319 | ist->last_ip_pts = ist->frac_pts.val; | |
1320 | ist->frac_pts.val = tmp; | |
1321 | } | |
1322 | } | |
1323 | #endif | |
115329f1 | 1324 | /* if output time reached then transcode raw format, |
bb270c08 | 1325 | encode packets and output them */ |
a700a6ae FB |
1326 | if (start_time == 0 || ist->pts >= start_time) |
1327 | for(i=0;i<nb_ostreams;i++) { | |
1328 | int frame_size; | |
1329 | ||
1330 | ost = ost_table[i]; | |
1331 | if (ost->source_index == ist_index) { | |
1332 | os = output_files[ost->file_index]; | |
1333 | ||
1334 | #if 0 | |
115329f1 DB |
1335 | printf("%d: got pts=%0.3f %0.3f\n", i, |
1336 | (double)pkt->pts / AV_TIME_BASE, | |
1337 | ((double)ist->pts / AV_TIME_BASE) - | |
986ebcdb | 1338 | ((double)ost->st->pts.val * ost->st->time_base.num / ost->st->time_base.den)); |
a700a6ae FB |
1339 | #endif |
1340 | /* set the input output pts pairs */ | |
b4a3389e | 1341 | //ost->sync_ipts = (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/ AV_TIME_BASE; |
a700a6ae FB |
1342 | |
1343 | if (ost->encoding_needed) { | |
01f4895c | 1344 | switch(ost->st->codec->codec_type) { |
a700a6ae FB |
1345 | case CODEC_TYPE_AUDIO: |
1346 | do_audio_out(os, ost, ist, data_buf, data_size); | |
1347 | break; | |
1348 | case CODEC_TYPE_VIDEO: | |
986ebcdb | 1349 | do_video_out(os, ost, ist, &picture, &frame_size); |
1008ceb3 | 1350 | video_size += frame_size; |
a700a6ae FB |
1351 | if (do_vstats && frame_size) |
1352 | do_video_stats(os, ost, frame_size); | |
a700a6ae | 1353 | break; |
cf7fc795 FB |
1354 | case CODEC_TYPE_SUBTITLE: |
1355 | do_subtitle_out(os, ost, ist, &subtitle, | |
1356 | pkt->pts); | |
1357 | break; | |
a700a6ae FB |
1358 | default: |
1359 | av_abort(); | |
1360 | } | |
1361 | } else { | |
e928649b MN |
1362 | AVFrame avframe; //FIXME/XXX remove this |
1363 | AVPacket opkt; | |
1364 | av_init_packet(&opkt); | |
1365 | ||
a700a6ae FB |
1366 | /* no reencoding needed : output the packet directly */ |
1367 | /* force the input stream PTS */ | |
115329f1 | 1368 | |
9740beff | 1369 | avcodec_get_frame_defaults(&avframe); |
01f4895c | 1370 | ost->st->codec->coded_frame= &avframe; |
115329f1 | 1371 | avframe.key_frame = pkt->flags & PKT_FLAG_KEY; |
bf17ff61 | 1372 | |
01f4895c | 1373 | if(ost->st->codec->codec_type == CODEC_TYPE_AUDIO) |
c7baf14b | 1374 | audio_size += data_size; |
01f4895c | 1375 | else if (ost->st->codec->codec_type == CODEC_TYPE_VIDEO) { |
c7baf14b | 1376 | video_size += data_size; |
daed32f7 WG |
1377 | ost->sync_opts++; |
1378 | } | |
c7baf14b | 1379 | |
e928649b | 1380 | opkt.stream_index= ost->index; |
6c55b27f | 1381 | if(pkt->pts != AV_NOPTS_VALUE) |
c0df9d75 | 1382 | opkt.pts= av_rescale_q(av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q) + input_files_ts_offset[ist->file_index], AV_TIME_BASE_Q, ost->st->time_base); |
6c55b27f MN |
1383 | else |
1384 | opkt.pts= AV_NOPTS_VALUE; | |
cf7fc795 FB |
1385 | |
1386 | { | |
1387 | int64_t dts; | |
1388 | if (pkt->dts == AV_NOPTS_VALUE) | |
1389 | dts = ist->next_pts; | |
1390 | else | |
1391 | dts= av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); | |
1392 | opkt.dts= av_rescale_q(dts + input_files_ts_offset[ist->file_index], AV_TIME_BASE_Q, ost->st->time_base); | |
1393 | } | |
e928649b | 1394 | opkt.flags= pkt->flags; |
01f4895c | 1395 | if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & PKT_FLAG_KEY)) |
90ad92b3 | 1396 | opkt.destruct= av_destruct_packet; |
3c895fc0 | 1397 | av_interleaved_write_frame(os, &opkt); |
01f4895c | 1398 | ost->st->codec->frame_number++; |
a700a6ae | 1399 | ost->frame_number++; |
90ad92b3 | 1400 | av_free_packet(&opkt); |
a700a6ae FB |
1401 | } |
1402 | } | |
1403 | } | |
1404 | av_free(buffer_to_free); | |
cf7fc795 FB |
1405 | /* XXX: allocate the subtitles in the codec ? */ |
1406 | if (subtitle_to_free) { | |
c6ec28b1 MN |
1407 | if (subtitle_to_free->rects != NULL) { |
1408 | for (i = 0; i < subtitle_to_free->num_rects; i++) { | |
1409 | av_free(subtitle_to_free->rects[i].bitmap); | |
1410 | av_free(subtitle_to_free->rects[i].rgba_palette); | |
1411 | } | |
1412 | av_freep(&subtitle_to_free->rects); | |
1413 | } | |
1414 | subtitle_to_free->num_rects = 0; | |
cf7fc795 FB |
1415 | subtitle_to_free = NULL; |
1416 | } | |
a700a6ae FB |
1417 | } |
1418 | discard_packet: | |
6f824977 MN |
1419 | if (pkt == NULL) { |
1420 | /* EOF handling */ | |
115329f1 | 1421 | |
6f824977 MN |
1422 | for(i=0;i<nb_ostreams;i++) { |
1423 | ost = ost_table[i]; | |
1424 | if (ost->source_index == ist_index) { | |
01f4895c | 1425 | AVCodecContext *enc= ost->st->codec; |
6f824977 | 1426 | os = output_files[ost->file_index]; |
115329f1 | 1427 | |
01f4895c | 1428 | if(ost->st->codec->codec_type == CODEC_TYPE_AUDIO && enc->frame_size <=1) |
6f824977 | 1429 | continue; |
01f4895c | 1430 | if(ost->st->codec->codec_type == CODEC_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE)) |
6f824977 MN |
1431 | continue; |
1432 | ||
1433 | if (ost->encoding_needed) { | |
1434 | for(;;) { | |
1435 | AVPacket pkt; | |
1436 | av_init_packet(&pkt); | |
1437 | pkt.stream_index= ost->index; | |
115329f1 | 1438 | |
01f4895c | 1439 | switch(ost->st->codec->codec_type) { |
115329f1 | 1440 | case CODEC_TYPE_AUDIO: |
8a6cb114 | 1441 | ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL); |
6f824977 MN |
1442 | audio_size += ret; |
1443 | pkt.flags |= PKT_FLAG_KEY; | |
1444 | break; | |
1445 | case CODEC_TYPE_VIDEO: | |
8a6cb114 | 1446 | ret = avcodec_encode_video(enc, bit_buffer, bit_buffer_size, NULL); |
6f824977 MN |
1447 | video_size += ret; |
1448 | if(enc->coded_frame && enc->coded_frame->key_frame) | |
1449 | pkt.flags |= PKT_FLAG_KEY; | |
1450 | if (ost->logfile && enc->stats_out) { | |
1451 | fprintf(ost->logfile, "%s", enc->stats_out); | |
1452 | } | |
1453 | break; | |
1454 | default: | |
1455 | ret=-1; | |
1456 | } | |
115329f1 | 1457 | |
6f824977 MN |
1458 | if(ret<=0) |
1459 | break; | |
27537106 | 1460 | pkt.data= bit_buffer; |
6f824977 | 1461 | pkt.size= ret; |
e7902f20 | 1462 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 1463 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
6f824977 MN |
1464 | av_interleaved_write_frame(os, &pkt); |
1465 | } | |
1466 | } | |
1467 | } | |
1468 | } | |
1469 | } | |
115329f1 | 1470 | |
a700a6ae FB |
1471 | return 0; |
1472 | fail_decode: | |
1473 | return -1; | |
1474 | } | |
1475 | ||
1476 | ||
85f07f22 FB |
1477 | /* |
1478 | * The following code is the main loop of the file converter | |
1479 | */ | |
1480 | static int av_encode(AVFormatContext **output_files, | |
1481 | int nb_output_files, | |
1482 | AVFormatContext **input_files, | |
1483 | int nb_input_files, | |
1484 | AVStreamMap *stream_maps, int nb_stream_maps) | |
1485 | { | |
445f1b83 | 1486 | int ret, i, j, k, n, nb_istreams = 0, nb_ostreams = 0; |
85f07f22 FB |
1487 | AVFormatContext *is, *os; |
1488 | AVCodecContext *codec, *icodec; | |
1489 | AVOutputStream *ost, **ost_table = NULL; | |
1490 | AVInputStream *ist, **ist_table = NULL; | |
bdc4796f | 1491 | AVInputFile *file_table; |
51bd4565 | 1492 | AVFormatContext *stream_no_data; |
cb09b2ed | 1493 | int key; |
bdc4796f | 1494 | |
51bd4565 | 1495 | file_table= (AVInputFile*) av_mallocz(nb_input_files * sizeof(AVInputFile)); |
bdc4796f FB |
1496 | if (!file_table) |
1497 | goto fail; | |
115329f1 | 1498 | |
85f07f22 FB |
1499 | /* input stream init */ |
1500 | j = 0; | |
1501 | for(i=0;i<nb_input_files;i++) { | |
1502 | is = input_files[i]; | |
1503 | file_table[i].ist_index = j; | |
79fdaa4c | 1504 | file_table[i].nb_streams = is->nb_streams; |
85f07f22 FB |
1505 | j += is->nb_streams; |
1506 | } | |
1507 | nb_istreams = j; | |
1508 | ||
1509 | ist_table = av_mallocz(nb_istreams * sizeof(AVInputStream *)); | |
1510 | if (!ist_table) | |
bdc4796f | 1511 | goto fail; |
115329f1 | 1512 | |
85f07f22 FB |
1513 | for(i=0;i<nb_istreams;i++) { |
1514 | ist = av_mallocz(sizeof(AVInputStream)); | |
1515 | if (!ist) | |
1516 | goto fail; | |
1517 | ist_table[i] = ist; | |
1518 | } | |
1519 | j = 0; | |
1520 | for(i=0;i<nb_input_files;i++) { | |
1521 | is = input_files[i]; | |
1522 | for(k=0;k<is->nb_streams;k++) { | |
1523 | ist = ist_table[j++]; | |
1524 | ist->st = is->streams[k]; | |
1525 | ist->file_index = i; | |
1526 | ist->index = k; | |
1527 | ist->discard = 1; /* the stream is discarded by default | |
1528 | (changed later) */ | |
bdfcbbed | 1529 | |
01f4895c | 1530 | if (ist->st->codec->rate_emu) { |
bdfcbbed MK |
1531 | ist->start = av_gettime(); |
1532 | ist->frame = 0; | |
1533 | } | |
85f07f22 FB |
1534 | } |
1535 | } | |
1536 | ||
1537 | /* output stream init */ | |
1538 | nb_ostreams = 0; | |
1539 | for(i=0;i<nb_output_files;i++) { | |
1540 | os = output_files[i]; | |
1541 | nb_ostreams += os->nb_streams; | |
1542 | } | |
1543 | if (nb_stream_maps > 0 && nb_stream_maps != nb_ostreams) { | |
1544 | fprintf(stderr, "Number of stream maps must match number of output streams\n"); | |
1545 | exit(1); | |
1546 | } | |
1547 | ||
bd073980 BF |
1548 | /* Sanity check the mapping args -- do the input files & streams exist? */ |
1549 | for(i=0;i<nb_stream_maps;i++) { | |
1550 | int fi = stream_maps[i].file_index; | |
1551 | int si = stream_maps[i].stream_index; | |
115329f1 | 1552 | |
bd073980 BF |
1553 | if (fi < 0 || fi > nb_input_files - 1 || |
1554 | si < 0 || si > file_table[fi].nb_streams - 1) { | |
1555 | fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si); | |
1556 | exit(1); | |
1557 | } | |
b4a3389e WG |
1558 | fi = stream_maps[i].sync_file_index; |
1559 | si = stream_maps[i].sync_stream_index; | |
1560 | if (fi < 0 || fi > nb_input_files - 1 || | |
1561 | si < 0 || si > file_table[fi].nb_streams - 1) { | |
1562 | fprintf(stderr,"Could not find sync stream #%d.%d\n", fi, si); | |
1563 | exit(1); | |
1564 | } | |
bd073980 | 1565 | } |
115329f1 | 1566 | |
85f07f22 FB |
1567 | ost_table = av_mallocz(sizeof(AVOutputStream *) * nb_ostreams); |
1568 | if (!ost_table) | |
1569 | goto fail; | |
1570 | for(i=0;i<nb_ostreams;i++) { | |
1571 | ost = av_mallocz(sizeof(AVOutputStream)); | |
1572 | if (!ost) | |
1573 | goto fail; | |
1574 | ost_table[i] = ost; | |
1575 | } | |
115329f1 | 1576 | |
85f07f22 FB |
1577 | n = 0; |
1578 | for(k=0;k<nb_output_files;k++) { | |
1579 | os = output_files[k]; | |
1580 | for(i=0;i<os->nb_streams;i++) { | |
1581 | int found; | |
1582 | ost = ost_table[n++]; | |
1583 | ost->file_index = k; | |
1584 | ost->index = i; | |
1585 | ost->st = os->streams[i]; | |
1586 | if (nb_stream_maps > 0) { | |
115329f1 | 1587 | ost->source_index = file_table[stream_maps[n-1].file_index].ist_index + |
85f07f22 | 1588 | stream_maps[n-1].stream_index; |
115329f1 | 1589 | |
bd073980 | 1590 | /* Sanity check that the stream types match */ |
01f4895c | 1591 | if (ist_table[ost->source_index]->st->codec->codec_type != ost->st->codec->codec_type) { |
bd073980 BF |
1592 | fprintf(stderr, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n", |
1593 | stream_maps[n-1].file_index, stream_maps[n-1].stream_index, | |
1594 | ost->file_index, ost->index); | |
1595 | exit(1); | |
1596 | } | |
115329f1 | 1597 | |
85f07f22 FB |
1598 | } else { |
1599 | /* get corresponding input stream index : we select the first one with the right type */ | |
1600 | found = 0; | |
1601 | for(j=0;j<nb_istreams;j++) { | |
1602 | ist = ist_table[j]; | |
115329f1 | 1603 | if (ist->discard && |
01f4895c | 1604 | ist->st->codec->codec_type == ost->st->codec->codec_type) { |
85f07f22 FB |
1605 | ost->source_index = j; |
1606 | found = 1; | |
c19e76ce | 1607 | break; |
85f07f22 FB |
1608 | } |
1609 | } | |
115329f1 | 1610 | |
85f07f22 FB |
1611 | if (!found) { |
1612 | /* try again and reuse existing stream */ | |
1613 | for(j=0;j<nb_istreams;j++) { | |
1614 | ist = ist_table[j]; | |
01f4895c | 1615 | if (ist->st->codec->codec_type == ost->st->codec->codec_type) { |
85f07f22 FB |
1616 | ost->source_index = j; |
1617 | found = 1; | |
1618 | } | |
1619 | } | |
1620 | if (!found) { | |
1621 | fprintf(stderr, "Could not find input stream matching output stream #%d.%d\n", | |
1622 | ost->file_index, ost->index); | |
1623 | exit(1); | |
1624 | } | |
1625 | } | |
1626 | } | |
1627 | ist = ist_table[ost->source_index]; | |
1628 | ist->discard = 0; | |
b4a3389e WG |
1629 | ost->sync_ist = (nb_stream_maps > 0) ? |
1630 | ist_table[file_table[stream_maps[n-1].sync_file_index].ist_index + | |
1631 | stream_maps[n-1].sync_stream_index] : ist; | |
85f07f22 FB |
1632 | } |
1633 | } | |
1634 | ||
85f07f22 FB |
1635 | /* for each output stream, we compute the right encoding parameters */ |
1636 | for(i=0;i<nb_ostreams;i++) { | |
1637 | ost = ost_table[i]; | |
1638 | ist = ist_table[ost->source_index]; | |
1639 | ||
01f4895c MN |
1640 | codec = ost->st->codec; |
1641 | icodec = ist->st->codec; | |
85f07f22 | 1642 | |
1629626f FB |
1643 | if (ost->st->stream_copy) { |
1644 | /* if stream_copy is selected, no need to decode or encode */ | |
1645 | codec->codec_id = icodec->codec_id; | |
1646 | codec->codec_type = icodec->codec_type; | |
b2a2197e | 1647 | if(!codec->codec_tag) codec->codec_tag = icodec->codec_tag; |
1629626f | 1648 | codec->bit_rate = icodec->bit_rate; |
dffbfd06 MN |
1649 | codec->extradata= icodec->extradata; |
1650 | codec->extradata_size= icodec->extradata_size; | |
78e03516 | 1651 | codec->time_base = icodec->time_base; |
1629626f FB |
1652 | switch(codec->codec_type) { |
1653 | case CODEC_TYPE_AUDIO: | |
1654 | codec->sample_rate = icodec->sample_rate; | |
1655 | codec->channels = icodec->channels; | |
0a3b0447 | 1656 | codec->frame_size = icodec->frame_size; |
c1344911 | 1657 | codec->block_align= icodec->block_align; |
1629626f FB |
1658 | break; |
1659 | case CODEC_TYPE_VIDEO: | |
1629626f FB |
1660 | codec->width = icodec->width; |
1661 | codec->height = icodec->height; | |
ff8cc24b | 1662 | codec->has_b_frames = icodec->has_b_frames; |
1629626f | 1663 | break; |
cf7fc795 FB |
1664 | case CODEC_TYPE_SUBTITLE: |
1665 | break; | |
1629626f FB |
1666 | default: |
1667 | av_abort(); | |
1668 | } | |
1669 | } else { | |
1670 | switch(codec->codec_type) { | |
1671 | case CODEC_TYPE_AUDIO: | |
85f07f22 FB |
1672 | if (fifo_init(&ost->fifo, 2 * MAX_AUDIO_PACKET_SIZE)) |
1673 | goto fail; | |
115329f1 | 1674 | |
85f07f22 FB |
1675 | if (codec->channels == icodec->channels && |
1676 | codec->sample_rate == icodec->sample_rate) { | |
1677 | ost->audio_resample = 0; | |
1678 | } else { | |
e0d2714a | 1679 | if (codec->channels != icodec->channels && |
23c99253 MN |
1680 | (icodec->codec_id == CODEC_ID_AC3 || |
1681 | icodec->codec_id == CODEC_ID_DTS)) { | |
1682 | /* Special case for 5:1 AC3 and DTS input */ | |
e0d2714a | 1683 | /* and mono or stereo output */ |
6dc96cb0 J |
1684 | /* Request specific number of channels */ |
1685 | icodec->channels = codec->channels; | |
1686 | if (codec->sample_rate == icodec->sample_rate) | |
1687 | ost->audio_resample = 0; | |
1688 | else { | |
1689 | ost->audio_resample = 1; | |
6dc96cb0 | 1690 | } |
e0d2714a | 1691 | } else { |
115329f1 | 1692 | ost->audio_resample = 1; |
986ebcdb MN |
1693 | } |
1694 | } | |
ff4905a5 | 1695 | if(audio_sync_method>1) |
986ebcdb MN |
1696 | ost->audio_resample = 1; |
1697 | ||
1698 | if(ost->audio_resample){ | |
1699 | ost->resample = audio_resample_init(codec->channels, icodec->channels, | |
1700 | codec->sample_rate, icodec->sample_rate); | |
1701 | if(!ost->resample){ | |
1702 | printf("Can't resample. Aborting.\n"); | |
1703 | av_abort(); | |
e0d2714a | 1704 | } |
85f07f22 FB |
1705 | } |
1706 | ist->decoding_needed = 1; | |
1707 | ost->encoding_needed = 1; | |
1629626f FB |
1708 | break; |
1709 | case CODEC_TYPE_VIDEO: | |
85f07f22 | 1710 | if (codec->width == icodec->width && |
34b10a57 D |
1711 | codec->height == icodec->height && |
1712 | frame_topBand == 0 && | |
1713 | frame_bottomBand == 0 && | |
1714 | frame_leftBand == 0 && | |
115329f1 | 1715 | frame_rightBand == 0 && |
1ff93ffc TK |
1716 | frame_padtop == 0 && |
1717 | frame_padbottom == 0 && | |
1718 | frame_padleft == 0 && | |
1719 | frame_padright == 0) | |
34b10a57 D |
1720 | { |
1721 | ost->video_resample = 0; | |
1722 | ost->video_crop = 0; | |
1ff93ffc | 1723 | ost->video_pad = 0; |
34b10a57 D |
1724 | } else if ((codec->width == icodec->width - |
1725 | (frame_leftBand + frame_rightBand)) && | |
1726 | (codec->height == icodec->height - | |
1727 | (frame_topBand + frame_bottomBand))) | |
1728 | { | |
85f07f22 | 1729 | ost->video_resample = 0; |
34b10a57 D |
1730 | ost->video_crop = 1; |
1731 | ost->topBand = frame_topBand; | |
1732 | ost->leftBand = frame_leftBand; | |
115329f1 | 1733 | } else if ((codec->width == icodec->width + |
1ff93ffc TK |
1734 | (frame_padleft + frame_padright)) && |
1735 | (codec->height == icodec->height + | |
1736 | (frame_padtop + frame_padbottom))) { | |
1737 | ost->video_resample = 0; | |
1738 | ost->video_crop = 0; | |
1739 | ost->video_pad = 1; | |
1740 | ost->padtop = frame_padtop; | |
1741 | ost->padleft = frame_padleft; | |
1742 | ost->padbottom = frame_padbottom; | |
1743 | ost->padright = frame_padright; | |
2de28abb | 1744 | avcodec_get_frame_defaults(&ost->pict_tmp); |
a4d36c11 | 1745 | if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P, |
1ff93ffc TK |
1746 | codec->width, codec->height ) ) |
1747 | goto fail; | |
85f07f22 | 1748 | } else { |
85f07f22 | 1749 | ost->video_resample = 1; |
34b10a57 | 1750 | ost->video_crop = 0; // cropping is handled as part of resample |
2de28abb | 1751 | avcodec_get_frame_defaults(&ost->pict_tmp); |
a4d36c11 | 1752 | if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, PIX_FMT_YUV420P, |
2caa92d9 | 1753 | codec->width, codec->height ) ) |
85f07f22 | 1754 | goto fail; |
85f07f22 | 1755 | |
115329f1 | 1756 | ost->img_resample_ctx = img_resample_full_init( |
f37f8d4c AB |
1757 | codec->width, codec->height, |
1758 | icodec->width, icodec->height, | |
ab6d194a | 1759 | frame_topBand, frame_bottomBand, |
115329f1 DB |
1760 | frame_leftBand, frame_rightBand, |
1761 | frame_padtop, frame_padbottom, | |
1ff93ffc | 1762 | frame_padleft, frame_padright); |
115329f1 | 1763 | |
1ff93ffc TK |
1764 | ost->padtop = frame_padtop; |
1765 | ost->padleft = frame_padleft; | |
1766 | ost->padbottom = frame_padbottom; | |
1767 | ost->padright = frame_padright; | |
115329f1 | 1768 | |
85f07f22 FB |
1769 | } |
1770 | ost->encoding_needed = 1; | |
1771 | ist->decoding_needed = 1; | |
1629626f | 1772 | break; |
cf7fc795 FB |
1773 | case CODEC_TYPE_SUBTITLE: |
1774 | ost->encoding_needed = 1; | |
1775 | ist->decoding_needed = 1; | |
1776 | break; | |
1629626f FB |
1777 | default: |
1778 | av_abort(); | |
cf7fc795 | 1779 | break; |
85f07f22 | 1780 | } |
1629626f | 1781 | /* two pass mode */ |
115329f1 | 1782 | if (ost->encoding_needed && |
1629626f FB |
1783 | (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { |
1784 | char logfilename[1024]; | |
1785 | FILE *f; | |
1786 | int size; | |
1787 | char *logbuffer; | |
115329f1 DB |
1788 | |
1789 | snprintf(logfilename, sizeof(logfilename), "%s-%d.log", | |
1790 | pass_logfilename ? | |
1629626f FB |
1791 | pass_logfilename : DEFAULT_PASS_LOGFILENAME, i); |
1792 | if (codec->flags & CODEC_FLAG_PASS1) { | |
1793 | f = fopen(logfilename, "w"); | |
1794 | if (!f) { | |
1795 | perror(logfilename); | |
1796 | exit(1); | |
1797 | } | |
1798 | ost->logfile = f; | |
1799 | } else { | |
1800 | /* read the log file */ | |
1801 | f = fopen(logfilename, "r"); | |
1802 | if (!f) { | |
1803 | perror(logfilename); | |
1804 | exit(1); | |
1805 | } | |
1806 | fseek(f, 0, SEEK_END); | |
1807 | size = ftell(f); | |
1808 | fseek(f, 0, SEEK_SET); | |
1809 | logbuffer = av_malloc(size + 1); | |
1810 | if (!logbuffer) { | |
1811 | fprintf(stderr, "Could not allocate log buffer\n"); | |
1812 | exit(1); | |
1813 | } | |
4776fa92 | 1814 | size = fread(logbuffer, 1, size, f); |
1629626f FB |
1815 | fclose(f); |
1816 | logbuffer[size] = '\0'; | |
1817 | codec->stats_in = logbuffer; | |
5abdb4b1 | 1818 | } |
5abdb4b1 FB |
1819 | } |
1820 | } | |
8a6cb114 MN |
1821 | if(codec->codec_type == CODEC_TYPE_VIDEO){ |
1822 | int size= codec->width * codec->height; | |
1823 | bit_buffer_size= FFMAX(bit_buffer_size, 4*size); | |
1824 | } | |
85f07f22 FB |
1825 | } |
1826 | ||
8a6cb114 MN |
1827 | if (!bit_buffer) |
1828 | bit_buffer = av_malloc(bit_buffer_size); | |
1829 | if (!bit_buffer) | |
1830 | goto fail; | |
1831 | ||
1629626f FB |
1832 | /* dump the file output parameters - cannot be done before in case |
1833 | of stream copy */ | |
1834 | for(i=0;i<nb_output_files;i++) { | |
1835 | dump_format(output_files[i], i, output_files[i]->filename, 1); | |
1836 | } | |
1837 | ||
1838 | /* dump the stream mapping */ | |
d8019eb5 AD |
1839 | if (verbose >= 0) { |
1840 | fprintf(stderr, "Stream mapping:\n"); | |
1841 | for(i=0;i<nb_ostreams;i++) { | |
1842 | ost = ost_table[i]; | |
b4a3389e | 1843 | fprintf(stderr, " Stream #%d.%d -> #%d.%d", |
d8019eb5 AD |
1844 | ist_table[ost->source_index]->file_index, |
1845 | ist_table[ost->source_index]->index, | |
115329f1 | 1846 | ost->file_index, |
d8019eb5 | 1847 | ost->index); |
b4a3389e WG |
1848 | if (ost->sync_ist != ist_table[ost->source_index]) |
1849 | fprintf(stderr, " [sync #%d.%d]", | |
1850 | ost->sync_ist->file_index, | |
1851 | ost->sync_ist->index); | |
1852 | fprintf(stderr, "\n"); | |
d8019eb5 | 1853 | } |
1629626f FB |
1854 | } |
1855 | ||
85f07f22 FB |
1856 | /* open each encoder */ |
1857 | for(i=0;i<nb_ostreams;i++) { | |
1858 | ost = ost_table[i]; | |
1859 | if (ost->encoding_needed) { | |
1860 | AVCodec *codec; | |
01f4895c | 1861 | codec = avcodec_find_encoder(ost->st->codec->codec_id); |
85f07f22 | 1862 | if (!codec) { |
115329f1 | 1863 | fprintf(stderr, "Unsupported codec for output stream #%d.%d\n", |
85f07f22 FB |
1864 | ost->file_index, ost->index); |
1865 | exit(1); | |
1866 | } | |
01f4895c | 1867 | if (avcodec_open(ost->st->codec, codec) < 0) { |
115329f1 | 1868 | fprintf(stderr, "Error while opening codec for output stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height\n", |
85f07f22 FB |
1869 | ost->file_index, ost->index); |
1870 | exit(1); | |
1871 | } | |
01f4895c | 1872 | extra_size += ost->st->codec->extradata_size; |
85f07f22 FB |
1873 | } |
1874 | } | |
1875 | ||
1876 | /* open each decoder */ | |
1877 | for(i=0;i<nb_istreams;i++) { | |
1878 | ist = ist_table[i]; | |
1879 | if (ist->decoding_needed) { | |
1880 | AVCodec *codec; | |
01f4895c | 1881 | codec = avcodec_find_decoder(ist->st->codec->codec_id); |
85f07f22 | 1882 | if (!codec) { |
115329f1 | 1883 | fprintf(stderr, "Unsupported codec (id=%d) for input stream #%d.%d\n", |
01f4895c | 1884 | ist->st->codec->codec_id, ist->file_index, ist->index); |
85f07f22 FB |
1885 | exit(1); |
1886 | } | |
01f4895c | 1887 | if (avcodec_open(ist->st->codec, codec) < 0) { |
115329f1 | 1888 | fprintf(stderr, "Error while opening codec for input stream #%d.%d\n", |
85f07f22 FB |
1889 | ist->file_index, ist->index); |
1890 | exit(1); | |
1891 | } | |
01f4895c MN |
1892 | //if (ist->st->codec->codec_type == CODEC_TYPE_VIDEO) |
1893 | // ist->st->codec->flags |= CODEC_FLAG_REPEAT_FIELD; | |
85f07f22 FB |
1894 | } |
1895 | } | |
1896 | ||
1897 | /* init pts */ | |
1898 | for(i=0;i<nb_istreams;i++) { | |
1899 | ist = ist_table[i]; | |
bb270c08 | 1900 | is = input_files[ist->file_index]; |
e7d0374f | 1901 | ist->pts = 0; |
c0df9d75 | 1902 | ist->next_pts = av_rescale_q(ist->st->start_time, ist->st->time_base, AV_TIME_BASE_Q); |
115329f1 | 1903 | if(ist->st->start_time == AV_NOPTS_VALUE) |
bd1b79a1 | 1904 | ist->next_pts=0; |
fdb86eb1 MN |
1905 | if(input_files_ts_offset[ist->file_index]) |
1906 | ist->next_pts= AV_NOPTS_VALUE; | |
ff4905a5 | 1907 | ist->is_start = 1; |
85f07f22 | 1908 | } |
bd1b79a1 | 1909 | |
85f07f22 FB |
1910 | /* compute buffer size max (should use a complete heuristic) */ |
1911 | for(i=0;i<nb_input_files;i++) { | |
1912 | file_table[i].buffer_size_max = 2048; | |
1913 | } | |
1914 | ||
0a38bafd PB |
1915 | /* set meta data information from input file if required */ |
1916 | for (i=0;i<nb_meta_data_maps;i++) { | |
1917 | AVFormatContext *out_file; | |
1918 | AVFormatContext *in_file; | |
1919 | ||
1920 | int out_file_index = meta_data_maps[i].out_file; | |
1921 | int in_file_index = meta_data_maps[i].in_file; | |
1922 | if ( out_file_index < 0 || out_file_index >= nb_output_files ) { | |
1923 | fprintf(stderr, "Invalid output file index %d map_meta_data(%d,%d)\n", out_file_index, out_file_index, in_file_index); | |
1924 | ret = -EINVAL; | |
1925 | goto fail; | |
1926 | } | |
1927 | if ( in_file_index < 0 || in_file_index >= nb_input_files ) { | |
1928 | fprintf(stderr, "Invalid input file index %d map_meta_data(%d,%d)\n", in_file_index, out_file_index, in_file_index); | |
1929 | ret = -EINVAL; | |
1930 | goto fail; | |
115329f1 DB |
1931 | } |
1932 | ||
0a38bafd PB |
1933 | out_file = output_files[out_file_index]; |
1934 | in_file = input_files[in_file_index]; | |
1935 | ||
1936 | strcpy(out_file->title, in_file->title); | |
1937 | strcpy(out_file->author, in_file->author); | |
1938 | strcpy(out_file->copyright, in_file->copyright); | |
1939 | strcpy(out_file->comment, in_file->comment); | |
1940 | strcpy(out_file->album, in_file->album); | |
1941 | out_file->year = in_file->year; | |
1942 | out_file->track = in_file->track; | |
1943 | strcpy(out_file->genre, in_file->genre); | |
1944 | } | |
115329f1 | 1945 | |
85f07f22 FB |
1946 | /* open files and write file headers */ |
1947 | for(i=0;i<nb_output_files;i++) { | |
1948 | os = output_files[i]; | |
79fdaa4c | 1949 | if (av_write_header(os) < 0) { |
65bf3c53 | 1950 | fprintf(stderr, "Could not write header for output file #%d (incorrect codec parameters ?)\n", i); |
a38469e1 FB |
1951 | ret = -EINVAL; |
1952 | goto fail; | |
1953 | } | |
85f07f22 FB |
1954 | } |
1955 | ||
a38469e1 | 1956 | #ifndef CONFIG_WIN32 |
d8019eb5 | 1957 | if ( !using_stdin && verbose >= 0) { |
d9a916e2 | 1958 | fprintf(stderr, "Press [q] to stop encoding\n"); |
b51469a0 LS |
1959 | url_set_interrupt_cb(decode_interrupt_cb); |
1960 | } | |
a38469e1 FB |
1961 | #endif |
1962 | term_init(); | |
1963 | ||
51bd4565 | 1964 | stream_no_data = 0; |
cb09b2ed | 1965 | key = -1; |
51bd4565 | 1966 | |
d9a916e2 | 1967 | for(; received_sigterm == 0;) { |
85f07f22 FB |
1968 | int file_index, ist_index; |
1969 | AVPacket pkt; | |
a9aeda81 PB |
1970 | double ipts_min; |
1971 | double opts_min; | |
23ffe323 | 1972 | |
85f07f22 | 1973 | redo: |
a9aeda81 PB |
1974 | ipts_min= 1e100; |
1975 | opts_min= 1e100; | |
a38469e1 | 1976 | /* if 'q' pressed, exits */ |
d9a916e2 | 1977 | if (!using_stdin) { |
b51469a0 LS |
1978 | if (q_pressed) |
1979 | break; | |
cb09b2ed PG |
1980 | /* read_key() returns 0 on EOF */ |
1981 | key = read_key(); | |
1982 | if (key == 'q') | |
1983 | break; | |
1984 | } | |
a38469e1 | 1985 | |
ec5517d5 FB |
1986 | /* select the stream that we must read now by looking at the |
1987 | smallest output pts */ | |
85f07f22 | 1988 | file_index = -1; |
ec5517d5 | 1989 | for(i=0;i<nb_ostreams;i++) { |
23ffe323 | 1990 | double ipts, opts; |
ec5517d5 FB |
1991 | ost = ost_table[i]; |
1992 | os = output_files[ost->file_index]; | |
1993 | ist = ist_table[ost->source_index]; | |
01f4895c MN |
1994 | if(ost->st->codec->codec_type == CODEC_TYPE_VIDEO) |
1995 | opts = ost->sync_opts * av_q2d(ost->st->codec->time_base); | |
23ffe323 | 1996 | else |
c0df9d75 | 1997 | opts = ost->st->pts.val * av_q2d(ost->st->time_base); |
23ffe323 MN |
1998 | ipts = (double)ist->pts; |
1999 | if (!file_table[ist->file_index].eof_reached){ | |
2000 | if(ipts < ipts_min) { | |
2001 | ipts_min = ipts; | |
2002 | if(input_sync ) file_index = ist->file_index; | |
2003 | } | |
2004 | if(opts < opts_min) { | |
2005 | opts_min = opts; | |
2006 | if(!input_sync) file_index = ist->file_index; | |
2007 | } | |
85f07f22 | 2008 | } |
01f4895c | 2009 | if(ost->frame_number >= max_frames[ost->st->codec->codec_type]){ |
7ca60994 MN |
2010 | file_index= -1; |
2011 | break; | |
2012 | } | |
85f07f22 FB |
2013 | } |
2014 | /* if none, if is finished */ | |
51bd4565 | 2015 | if (file_index < 0) { |
85f07f22 | 2016 | break; |
ec5517d5 FB |
2017 | } |
2018 | ||
85f07f22 | 2019 | /* finish if recording time exhausted */ |
23ffe323 | 2020 | if (recording_time > 0 && opts_min >= (recording_time / 1000000.0)) |
85f07f22 | 2021 | break; |
ec5517d5 | 2022 | |
b6e16b86 C |
2023 | /* finish if limit size exhausted */ |
2024 | if (limit_filesize != 0 && (limit_filesize * 1024) < url_ftell(&output_files[0]->pb)) | |
2025 | break; | |
2026 | ||
254abc2e | 2027 | /* read a frame from it and output it in the fifo */ |
85f07f22 | 2028 | is = input_files[file_index]; |
254abc2e | 2029 | if (av_read_frame(is, &pkt) < 0) { |
85f07f22 | 2030 | file_table[file_index].eof_reached = 1; |
ca80810b | 2031 | if (opt_shortest) break; else continue; // |
85f07f22 | 2032 | } |
303e50e6 | 2033 | |
51bd4565 PG |
2034 | if (!pkt.size) { |
2035 | stream_no_data = is; | |
2036 | } else { | |
2037 | stream_no_data = 0; | |
2038 | } | |
254abc2e FB |
2039 | if (do_pkt_dump) { |
2040 | av_pkt_dump(stdout, &pkt, do_hex_dump); | |
817b23ff | 2041 | } |
79fdaa4c FB |
2042 | /* the following test is needed in case new streams appear |
2043 | dynamically in stream : we ignore them */ | |
2044 | if (pkt.stream_index >= file_table[file_index].nb_streams) | |
bf5af568 | 2045 | goto discard_packet; |
85f07f22 FB |
2046 | ist_index = file_table[file_index].ist_index + pkt.stream_index; |
2047 | ist = ist_table[ist_index]; | |
bf5af568 FB |
2048 | if (ist->discard) |
2049 | goto discard_packet; | |
85f07f22 | 2050 | |
01f4895c | 2051 | // fprintf(stderr, "next:%lld dts:%lld off:%lld %d\n", ist->next_pts, pkt.dts, input_files_ts_offset[ist->file_index], ist->st->codec->codec_type); |
fdb86eb1 | 2052 | if (pkt.dts != AV_NOPTS_VALUE && ist->next_pts != AV_NOPTS_VALUE) { |
c0df9d75 | 2053 | int64_t delta= av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q) - ist->next_pts; |
72bd8100 MN |
2054 | if(ABS(delta) > 10LL*AV_TIME_BASE && !copy_ts){ |
2055 | input_files_ts_offset[ist->file_index]-= delta; | |
2056 | if (verbose > 2) | |
4733abcb | 2057 | fprintf(stderr, "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n", delta, input_files_ts_offset[ist->file_index]); |
72bd8100 MN |
2058 | for(i=0; i<file_table[file_index].nb_streams; i++){ |
2059 | int index= file_table[file_index].ist_index + i; | |
2060 | ist_table[index]->next_pts += delta; | |
ff4905a5 | 2061 | ist_table[index]->is_start=1; |
72bd8100 MN |
2062 | } |
2063 | } | |
2064 | } | |
2065 | ||
8831db5c | 2066 | //fprintf(stderr,"read #%d.%d size=%d\n", ist->file_index, ist->index, pkt.size); |
a700a6ae | 2067 | if (output_packet(ist, ist_index, ost_table, nb_ostreams, &pkt) < 0) { |
d8019eb5 AD |
2068 | |
2069 | if (verbose >= 0) | |
2070 | fprintf(stderr, "Error while decoding stream #%d.%d\n", | |
2071 | ist->file_index, ist->index); | |
2072 | ||
a700a6ae FB |
2073 | av_free_packet(&pkt); |
2074 | goto redo; | |
fe08925f | 2075 | } |
cf7fc795 | 2076 | |
bf5af568 | 2077 | discard_packet: |
85f07f22 | 2078 | av_free_packet(&pkt); |
115329f1 | 2079 | |
ec5517d5 FB |
2080 | /* dump report by using the output first video and audio streams */ |
2081 | print_report(output_files, ost_table, nb_ostreams, 0); | |
85f07f22 | 2082 | } |
a700a6ae FB |
2083 | |
2084 | /* at the end of stream, we must flush the decoder buffers */ | |
2085 | for(i=0;i<nb_istreams;i++) { | |
2086 | ist = ist_table[i]; | |
2087 | if (ist->decoding_needed) { | |
2088 | output_packet(ist, i, ost_table, nb_ostreams, NULL); | |
2089 | } | |
2090 | } | |
2091 | ||
a38469e1 | 2092 | term_exit(); |
85f07f22 | 2093 | |
c4e37247 MN |
2094 | /* write the trailer if needed and close file */ |
2095 | for(i=0;i<nb_output_files;i++) { | |
2096 | os = output_files[i]; | |
2097 | av_write_trailer(os); | |
2098 | } | |
2099 | ||
37f5cd5a MN |
2100 | /* dump report by using the first video and audio streams */ |
2101 | print_report(output_files, ost_table, nb_ostreams, 1); | |
2102 | ||
85f07f22 FB |
2103 | /* close each encoder */ |
2104 | for(i=0;i<nb_ostreams;i++) { | |
2105 | ost = ost_table[i]; | |
2106 | if (ost->encoding_needed) { | |
01f4895c MN |
2107 | av_freep(&ost->st->codec->stats_in); |
2108 | avcodec_close(ost->st->codec); | |
85f07f22 FB |
2109 | } |
2110 | } | |
115329f1 | 2111 | |
85f07f22 FB |
2112 | /* close each decoder */ |
2113 | for(i=0;i<nb_istreams;i++) { | |
2114 | ist = ist_table[i]; | |
2115 | if (ist->decoding_needed) { | |
01f4895c | 2116 | avcodec_close(ist->st->codec); |
85f07f22 FB |
2117 | } |
2118 | } | |
85f07f22 | 2119 | |
85f07f22 | 2120 | /* finished ! */ |
115329f1 | 2121 | |
85f07f22 FB |
2122 | ret = 0; |
2123 | fail1: | |
83b07470 | 2124 | av_freep(&bit_buffer); |
0f1578af | 2125 | av_free(file_table); |
bdc4796f | 2126 | |
85f07f22 FB |
2127 | if (ist_table) { |
2128 | for(i=0;i<nb_istreams;i++) { | |
2129 | ist = ist_table[i]; | |
0f1578af | 2130 | av_free(ist); |
85f07f22 | 2131 | } |
0f1578af | 2132 | av_free(ist_table); |
85f07f22 FB |
2133 | } |
2134 | if (ost_table) { | |
2135 | for(i=0;i<nb_ostreams;i++) { | |
2136 | ost = ost_table[i]; | |
2137 | if (ost) { | |
5abdb4b1 FB |
2138 | if (ost->logfile) { |
2139 | fclose(ost->logfile); | |
2140 | ost->logfile = NULL; | |
2141 | } | |
bf5af568 FB |
2142 | fifo_free(&ost->fifo); /* works even if fifo is not |
2143 | initialized but set to zero */ | |
0f1578af | 2144 | av_free(ost->pict_tmp.data[0]); |
85f07f22 FB |
2145 | if (ost->video_resample) |
2146 | img_resample_close(ost->img_resample_ctx); | |
2147 | if (ost->audio_resample) | |
2148 | audio_resample_close(ost->resample); | |
0f1578af | 2149 | av_free(ost); |
85f07f22 FB |
2150 | } |
2151 | } | |
0f1578af | 2152 | av_free(ost_table); |
85f07f22 FB |
2153 | } |
2154 | return ret; | |
2155 | fail: | |
2156 | ret = -ENOMEM; | |
2157 | goto fail1; | |
2158 | } | |
2159 | ||
2160 | #if 0 | |
2161 | int file_read(const char *filename) | |
2162 | { | |
2163 | URLContext *h; | |
2164 | unsigned char buffer[1024]; | |
2165 | int len, i; | |
2166 | ||
2167 | if (url_open(&h, filename, O_RDONLY) < 0) { | |
2168 | printf("could not open '%s'\n", filename); | |
2169 | return -1; | |
2170 | } | |
2171 | for(;;) { | |
2172 | len = url_read(h, buffer, sizeof(buffer)); | |
2173 | if (len <= 0) | |
2174 | break; | |
2175 | for(i=0;i<len;i++) putchar(buffer[i]); | |
2176 | } | |
2177 | url_close(h); | |
2178 | return 0; | |
2179 | } | |
2180 | #endif | |
2181 | ||
b29f97d1 | 2182 | static void opt_image_format(const char *arg) |
817b23ff FB |
2183 | { |
2184 | AVImageFormat *f; | |
115329f1 | 2185 | |
817b23ff FB |
2186 | for(f = first_image_format; f != NULL; f = f->next) { |
2187 | if (!strcmp(arg, f->name)) | |
2188 | break; | |
2189 | } | |
2190 | if (!f) { | |
2191 | fprintf(stderr, "Unknown image format: '%s'\n", arg); | |
2192 | exit(1); | |
2193 | } | |
2194 | image_format = f; | |
2195 | } | |
2196 | ||
b29f97d1 | 2197 | static void opt_format(const char *arg) |
85f07f22 | 2198 | { |
817b23ff FB |
2199 | /* compatibility stuff for pgmyuv */ |
2200 | if (!strcmp(arg, "pgmyuv")) { | |
5b6d5596 | 2201 | pgmyuv_compatibility_hack=1; |
9286699a | 2202 | // opt_image_format(arg); |
5b6d5596 | 2203 | arg = "image2"; |
817b23ff FB |
2204 | } |
2205 | ||
79fdaa4c FB |
2206 | file_iformat = av_find_input_format(arg); |
2207 | file_oformat = guess_format(arg, NULL, NULL); | |
2208 | if (!file_iformat && !file_oformat) { | |
2209 | fprintf(stderr, "Unknown input or output format: %s\n", arg); | |
85f07f22 FB |
2210 | exit(1); |
2211 | } | |
85f07f22 FB |
2212 | } |
2213 | ||
b29f97d1 | 2214 | static void opt_video_bitrate(const char *arg) |
85f07f22 FB |
2215 | { |
2216 | video_bit_rate = atoi(arg) * 1000; | |
2217 | } | |
2218 | ||
b29f97d1 | 2219 | static void opt_video_bitrate_tolerance(const char *arg) |
9cdd6a24 MN |
2220 | { |
2221 | video_bit_rate_tolerance = atoi(arg) * 1000; | |
2222 | } | |
2223 | ||
b29f97d1 | 2224 | static void opt_video_bitrate_max(const char *arg) |
3aa102be MN |
2225 | { |
2226 | video_rc_max_rate = atoi(arg) * 1000; | |
2227 | } | |
2228 | ||
b29f97d1 | 2229 | static void opt_video_bitrate_min(const char *arg) |
3aa102be MN |
2230 | { |
2231 | video_rc_min_rate = atoi(arg) * 1000; | |
2232 | } | |
2233 | ||
b29f97d1 | 2234 | static void opt_video_buffer_size(const char *arg) |
946c8a12 | 2235 | { |
622348f9 | 2236 | video_rc_buffer_size = atoi(arg) * 8*1024; |
946c8a12 MN |
2237 | } |
2238 | ||
b29f97d1 | 2239 | static void opt_video_rc_eq(char *arg) |
3aa102be MN |
2240 | { |
2241 | video_rc_eq = arg; | |
2242 | } | |
2243 | ||
b29f97d1 | 2244 | static void opt_video_rc_override_string(char *arg) |
ac2830ec MN |
2245 | { |
2246 | video_rc_override_string = arg; | |
2247 | } | |
2248 | ||
3aa102be | 2249 | |
b29f97d1 | 2250 | static void opt_workaround_bugs(const char *arg) |
fe670d09 MN |
2251 | { |
2252 | workaround_bugs = atoi(arg); | |
2253 | } | |
2254 | ||
f4f3223f MN |
2255 | static void opt_me_threshold(const char *arg) |
2256 | { | |
2257 | me_threshold = atoi(arg); | |
2258 | } | |
2259 | ||
f20f8a8b MN |
2260 | static void opt_mb_threshold(const char *arg) |
2261 | { | |
2262 | mb_threshold = atoi(arg); | |
2263 | } | |
2ad1516a | 2264 | |
f068206e BE |
2265 | static void opt_verbose(const char *arg) |
2266 | { | |
2267 | verbose = atoi(arg); | |
d8019eb5 | 2268 | av_log_set_level(atoi(arg)); |
f068206e BE |
2269 | } |
2270 | ||
b29f97d1 | 2271 | static void opt_frame_rate(const char *arg) |
85f07f22 | 2272 | { |
445f1b83 RS |
2273 | if (parse_frame_rate(&frame_rate, &frame_rate_base, arg) < 0) { |
2274 | fprintf(stderr, "Incorrect frame rate\n"); | |
bb270c08 | 2275 | exit(1); |
445f1b83 | 2276 | } |
85f07f22 FB |
2277 | } |
2278 | ||
b29f97d1 | 2279 | static void opt_frame_crop_top(const char *arg) |
ab6d194a | 2280 | { |
115329f1 | 2281 | frame_topBand = atoi(arg); |
ab6d194a MN |
2282 | if (frame_topBand < 0) { |
2283 | fprintf(stderr, "Incorrect top crop size\n"); | |
2284 | exit(1); | |
2285 | } | |
2286 | if ((frame_topBand % 2) != 0) { | |
2287 | fprintf(stderr, "Top crop size must be a multiple of 2\n"); | |
2288 | exit(1); | |
2289 | } | |
2290 | if ((frame_topBand) >= frame_height){ | |
bb270c08 | 2291 | fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
ab6d194a MN |
2292 | exit(1); |
2293 | } | |
2294 | frame_height -= frame_topBand; | |
2295 | } | |
2296 | ||
b29f97d1 | 2297 | static void opt_frame_crop_bottom(const char *arg) |
ab6d194a MN |
2298 | { |
2299 | frame_bottomBand = atoi(arg); | |
2300 | if (frame_bottomBand < 0) { | |
2301 | fprintf(stderr, "Incorrect bottom crop size\n"); | |
2302 | exit(1); | |
2303 | } | |
2304 | if ((frame_bottomBand % 2) != 0) { | |
2305 | fprintf(stderr, "Bottom crop size must be a multiple of 2\n"); | |
115329f1 | 2306 | exit(1); |
ab6d194a MN |
2307 | } |
2308 | if ((frame_bottomBand) >= frame_height){ | |
bb270c08 | 2309 | fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
ab6d194a MN |
2310 | exit(1); |
2311 | } | |
2312 | frame_height -= frame_bottomBand; | |
2313 | } | |
2314 | ||
b29f97d1 | 2315 | static void opt_frame_crop_left(const char *arg) |
ab6d194a MN |
2316 | { |
2317 | frame_leftBand = atoi(arg); | |
2318 | if (frame_leftBand < 0) { | |
2319 | fprintf(stderr, "Incorrect left crop size\n"); | |
2320 | exit(1); | |
2321 | } | |
2322 | if ((frame_leftBand % 2) != 0) { | |
2323 | fprintf(stderr, "Left crop size must be a multiple of 2\n"); | |
2324 | exit(1); | |
2325 | } | |
2326 | if ((frame_leftBand) >= frame_width){ | |
bb270c08 | 2327 | fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
ab6d194a MN |
2328 | exit(1); |
2329 | } | |
2330 | frame_width -= frame_leftBand; | |
2331 | } | |
2332 | ||
b29f97d1 | 2333 | static void opt_frame_crop_right(const char *arg) |
ab6d194a MN |
2334 | { |
2335 | frame_rightBand = atoi(arg); | |
2336 | if (frame_rightBand < 0) { | |
2337 | fprintf(stderr, "Incorrect right crop size\n"); | |
2338 | exit(1); | |
2339 | } | |
2340 | if ((frame_rightBand % 2) != 0) { | |
2341 | fprintf(stderr, "Right crop size must be a multiple of 2\n"); | |
115329f1 | 2342 | exit(1); |
ab6d194a MN |
2343 | } |
2344 | if ((frame_rightBand) >= frame_width){ | |
bb270c08 | 2345 | fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
ab6d194a MN |
2346 | exit(1); |
2347 | } | |
2348 | frame_width -= frame_rightBand; | |
2349 | } | |
2350 | ||
b29f97d1 | 2351 | static void opt_frame_size(const char *arg) |
85f07f22 | 2352 | { |
445f1b83 | 2353 | if (parse_image_size(&frame_width, &frame_height, arg) < 0) { |
85f07f22 FB |
2354 | fprintf(stderr, "Incorrect frame size\n"); |
2355 | exit(1); | |
2356 | } | |
2357 | if ((frame_width % 2) != 0 || (frame_height % 2) != 0) { | |
2358 | fprintf(stderr, "Frame size must be a multiple of 2\n"); | |
2359 | exit(1); | |
2360 | } | |
2361 | } | |
2362 | ||
1ff93ffc TK |
2363 | |
2364 | #define SCALEBITS 10 | |
2365 | #define ONE_HALF (1 << (SCALEBITS - 1)) | |
bb270c08 | 2366 | #define FIX(x) ((int) ((x) * (1<<SCALEBITS) + 0.5)) |
1ff93ffc TK |
2367 | |
2368 | #define RGB_TO_Y(r, g, b) \ | |
2369 | ((FIX(0.29900) * (r) + FIX(0.58700) * (g) + \ | |
2370 | FIX(0.11400) * (b) + ONE_HALF) >> SCALEBITS) | |
2371 | ||
2372 | #define RGB_TO_U(r1, g1, b1, shift)\ | |
2373 | (((- FIX(0.16874) * r1 - FIX(0.33126) * g1 + \ | |
2374 | FIX(0.50000) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128) | |
2375 | ||
2376 | #define RGB_TO_V(r1, g1, b1, shift)\ | |
2377 | (((FIX(0.50000) * r1 - FIX(0.41869) * g1 - \ | |
2378 | FIX(0.08131) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128) | |
2379 | ||
2380 | static void opt_pad_color(const char *arg) { | |
2381 | /* Input is expected to be six hex digits similar to | |
2382 | how colors are expressed in html tags (but without the #) */ | |
2383 | int rgb = strtol(arg, NULL, 16); | |
2384 | int r,g,b; | |
115329f1 DB |
2385 | |
2386 | r = (rgb >> 16); | |
1ff93ffc TK |
2387 | g = ((rgb >> 8) & 255); |
2388 | b = (rgb & 255); | |
2389 | ||
2390 | padcolor[0] = RGB_TO_Y(r,g,b); | |
2391 | padcolor[1] = RGB_TO_U(r,g,b,0); | |
2392 | padcolor[2] = RGB_TO_V(r,g,b,0); | |
2393 | } | |
2394 | ||
2395 | static void opt_frame_pad_top(const char *arg) | |
2396 | { | |
115329f1 | 2397 | frame_padtop = atoi(arg); |
1ff93ffc TK |
2398 | if (frame_padtop < 0) { |
2399 | fprintf(stderr, "Incorrect top pad size\n"); | |
2400 | exit(1); | |
2401 | } | |
2402 | if ((frame_padtop % 2) != 0) { | |
2403 | fprintf(stderr, "Top pad size must be a multiple of 2\n"); | |
2404 | exit(1); | |
2405 | } | |
2406 | } | |
2407 | ||
2408 | static void opt_frame_pad_bottom(const char *arg) | |
2409 | { | |
115329f1 | 2410 | frame_padbottom = atoi(arg); |
1ff93ffc TK |
2411 | if (frame_padbottom < 0) { |
2412 | fprintf(stderr, "Incorrect bottom pad size\n"); | |
2413 | exit(1); | |
2414 | } | |
2415 | if ((frame_padbottom % 2) != 0) { | |
2416 | fprintf(stderr, "Bottom pad size must be a multiple of 2\n"); | |
2417 | exit(1); | |
2418 | } | |
2419 | } | |
2420 | ||
2421 | ||
2422 | static void opt_frame_pad_left(const char *arg) | |
2423 | { | |
115329f1 | 2424 | frame_padleft = atoi(arg); |
1ff93ffc TK |
2425 | if (frame_padleft < 0) { |
2426 | fprintf(stderr, "Incorrect left pad size\n"); | |
2427 | exit(1); | |
2428 | } | |
2429 | if ((frame_padleft % 2) != 0) { | |
2430 | fprintf(stderr, "Left pad size must be a multiple of 2\n"); | |
2431 | exit(1); | |
2432 | } | |
2433 | } | |
2434 | ||
2435 | ||
2436 | static void opt_frame_pad_right(const char *arg) | |
2437 | { | |
115329f1 | 2438 | frame_padright = atoi(arg); |
1ff93ffc TK |
2439 | if (frame_padright < 0) { |
2440 | fprintf(stderr, "Incorrect right pad size\n"); | |
2441 | exit(1); | |
2442 | } | |
2443 | if ((frame_padright % 2) != 0) { | |
2444 | fprintf(stderr, "Right pad size must be a multiple of 2\n"); | |
2445 | exit(1); | |
2446 | } | |
2447 | } | |
2448 | ||
2449 | ||
63167088 RS |
2450 | static void opt_frame_pix_fmt(const char *arg) |
2451 | { | |
2452 | frame_pix_fmt = avcodec_get_pix_fmt(arg); | |
2453 | } | |
2454 | ||
5fe03e38 RS |
2455 | static void opt_frame_aspect_ratio(const char *arg) |
2456 | { | |
2457 | int x = 0, y = 0; | |
2458 | double ar = 0; | |
2459 | const char *p; | |
115329f1 | 2460 | |
5fe03e38 RS |
2461 | p = strchr(arg, ':'); |
2462 | if (p) { | |
2463 | x = strtol(arg, (char **)&arg, 10); | |
bb270c08 DB |
2464 | if (arg == p) |
2465 | y = strtol(arg+1, (char **)&arg, 10); | |
2466 | if (x > 0 && y > 0) | |
2467 | ar = (double)x / (double)y; | |
5fe03e38 RS |
2468 | } else |
2469 | ar = strtod(arg, (char **)&arg); | |
2470 | ||
2471 | if (!ar) { | |
2472 | fprintf(stderr, "Incorrect aspect ratio specification.\n"); | |
bb270c08 | 2473 | exit(1); |
5fe03e38 RS |
2474 | } |
2475 | frame_aspect_ratio = ar; | |
2476 | } | |
2477 | ||
b29f97d1 | 2478 | static void opt_gop_size(const char *arg) |
85f07f22 FB |
2479 | { |
2480 | gop_size = atoi(arg); | |
2481 | } | |
2482 | ||
b29f97d1 | 2483 | static void opt_b_frames(const char *arg) |
bc6caae2 J |
2484 | { |
2485 | b_frames = atoi(arg); | |
2486 | if (b_frames > FF_MAX_B_FRAMES) { | |
2487 | fprintf(stderr, "\nCannot have more than %d B frames, increase FF_MAX_B_FRAMES.\n", FF_MAX_B_FRAMES); | |
2488 | exit(1); | |
2489 | } else if (b_frames < 1) { | |
2490 | fprintf(stderr, "\nNumber of B frames must be higher than 0\n"); | |
2491 | exit(1); | |
2492 | } | |
2493 | } | |
2494 | ||
9c3d33d6 MN |
2495 | static void opt_pre_me(const char *arg) |
2496 | { | |
2497 | pre_me = atoi(arg); | |
2498 | } | |
2499 | ||
b29f97d1 | 2500 | static void opt_qscale(const char *arg) |
85f07f22 | 2501 | { |
158c7f05 MN |
2502 | video_qscale = atof(arg); |
2503 | if (video_qscale < 0.01 || | |
2504 | video_qscale > 255) { | |
2505 | fprintf(stderr, "qscale must be >= 0.01 and <= 255\n"); | |
85f07f22 FB |
2506 | exit(1); |
2507 | } | |
2508 | } | |
2509 | ||
6a5d4395 MD |
2510 | static void opt_qsquish(const char *arg) |
2511 | { | |
2512 | video_qsquish = atof(arg); | |
2513 | if (video_qsquish < 0.0 || | |
2514 | video_qsquish > 99.0) { | |
2515 | fprintf(stderr, "qsquish must be >= 0.0 and <= 99.0\n"); | |
2516 | exit(1); | |
2517 | } | |
2518 | } | |
2519 | ||
4ea4b274 MN |
2520 | static void opt_lmax(const char *arg) |
2521 | { | |
2522 | video_lmax = atof(arg)*FF_QP2LAMBDA; | |
2523 | } | |
2524 | ||
2525 | static void opt_lmin(const char *arg) | |
2526 | { | |
2527 | video_lmin = atof(arg)*FF_QP2LAMBDA; | |
2528 | } | |
2529 | ||
b29f97d1 | 2530 | static void opt_qmin(const char *arg) |
9cdd6a24 MN |
2531 | { |
2532 | video_qmin = atoi(arg); | |
6e0d8c06 | 2533 | if (video_qmin < 1 || |
58f7833e RS |
2534 | video_qmin > 51) { |
2535 | fprintf(stderr, "qmin must be >= 1 and <= 51\n"); | |
9cdd6a24 MN |
2536 | exit(1); |
2537 | } | |
2538 | } | |
2539 | ||
b29f97d1 | 2540 | static void opt_qmax(const char *arg) |
9cdd6a24 MN |
2541 | { |
2542 | video_qmax = atoi(arg); | |
6e0d8c06 | 2543 | if (video_qmax < 1 || |
58f7833e RS |
2544 | video_qmax > 51) { |
2545 | fprintf(stderr, "qmax must be >= 1 and <= 51\n"); | |
9cdd6a24 MN |
2546 | exit(1); |
2547 | } | |
2548 | } | |
2549 | ||
6e0d8c06 | 2550 | static void opt_mb_lmin(const char *arg) |
17a70fde | 2551 | { |
6e0d8c06 MN |
2552 | video_mb_lmin = atof(arg)*FF_QP2LAMBDA; |
2553 | if (video_mb_lmin < 1 || | |
2554 | video_mb_lmin > FF_LAMBDA_MAX) { | |
2555 | fprintf(stderr, "mblmin must be >= 1 and <= %d\n", FF_LAMBDA_MAX / FF_QP2LAMBDA); | |
17a70fde MN |
2556 | exit(1); |
2557 | } | |
2558 | } | |
2559 | ||
6e0d8c06 | 2560 | static void opt_mb_lmax(const char *arg) |
17a70fde | 2561 | { |
6e0d8c06 MN |
2562 | video_mb_lmax = atof(arg)*FF_QP2LAMBDA; |
2563 | if (video_mb_lmax < 1 || | |
2564 | video_mb_lmax > FF_LAMBDA_MAX) { | |
2565 | fprintf(stderr, "mblmax must be >= 1 and <= %d\n", FF_LAMBDA_MAX / FF_QP2LAMBDA); | |
17a70fde MN |
2566 | exit(1); |
2567 | } | |
2568 | } | |
2569 | ||
b29f97d1 | 2570 | static void opt_qdiff(const char *arg) |
9cdd6a24 MN |
2571 | { |
2572 | video_qdiff = atoi(arg); | |
2573 | if (video_qdiff < 0 || | |
2574 | video_qdiff > 31) { | |
2575 | fprintf(stderr, "qdiff must be >= 1 and <= 31\n"); | |
2576 | exit(1); | |
2577 | } | |
2578 | } | |
2579 | ||
b29f97d1 | 2580 | static void opt_qblur(const char *arg) |
9cdd6a24 MN |
2581 | { |
2582 | video_qblur = atof(arg); | |
2583 | } | |
2584 | ||
b29f97d1 | 2585 | static void opt_qcomp(const char *arg) |
9cdd6a24 MN |
2586 | { |
2587 | video_qcomp = atof(arg); | |
2588 | } | |
85f07f22 | 2589 | |
b29f97d1 | 2590 | static void opt_rc_initial_cplx(const char *arg) |
ac2830ec MN |
2591 | { |
2592 | video_rc_initial_cplx = atof(arg); | |
2593 | } | |
b29f97d1 | 2594 | static void opt_b_qfactor(const char *arg) |
29700fa6 MN |
2595 | { |
2596 | video_b_qfactor = atof(arg); | |
2597 | } | |
b29f97d1 | 2598 | static void opt_i_qfactor(const char *arg) |
29700fa6 MN |
2599 | { |
2600 | video_i_qfactor = atof(arg); | |
2601 | } | |
b29f97d1 | 2602 | static void opt_b_qoffset(const char *arg) |
29700fa6 MN |
2603 | { |
2604 | video_b_qoffset = atof(arg); | |
2605 | } | |
b29f97d1 | 2606 | static void opt_i_qoffset(const char *arg) |
29700fa6 MN |
2607 | { |
2608 | video_i_qoffset = atof(arg); | |
2609 | } | |
2610 | ||
303e50e6 MN |
2611 | static void opt_ibias(const char *arg) |
2612 | { | |
2613 | video_intra_quant_bias = atoi(arg); | |
2614 | } | |
2615 | static void opt_pbias(const char *arg) | |
2616 | { | |
2617 | video_inter_quant_bias = atoi(arg); | |
2618 | } | |
2619 | ||
b29f97d1 | 2620 | static void opt_packet_size(const char *arg) |
1dbb6d90 MN |
2621 | { |
2622 | packet_size= atoi(arg); | |
2623 | } | |
2624 | ||
7ebfc0ea MN |
2625 | static void opt_error_rate(const char *arg) |
2626 | { | |
2627 | error_rate= atoi(arg); | |
2628 | } | |
2629 | ||
b29f97d1 | 2630 | static void opt_strict(const char *arg) |
f560dd82 MN |
2631 | { |
2632 | strict= atoi(arg); | |
2633 | } | |
2634 | ||
bb198e19 MN |
2635 | static void opt_top_field_first(const char *arg) |
2636 | { | |
2637 | top_field_first= atoi(arg); | |
2638 | } | |
2639 | ||
303e50e6 MN |
2640 | static void opt_sc_threshold(const char *arg) |
2641 | { | |
2642 | sc_threshold= atoi(arg); | |
2643 | } | |
2644 | ||
2f0472ff TB |
2645 | static void opt_me_range(const char *arg) |
2646 | { | |
2647 | me_range = atoi(arg); | |
2648 | } | |
2649 | ||
9c3d33d6 MN |
2650 | static void opt_thread_count(const char *arg) |
2651 | { | |
2652 | thread_count= atoi(arg); | |
2450cff2 | 2653 | #if !defined(HAVE_THREADS) |
d8019eb5 AD |
2654 | if (verbose >= 0) |
2655 | fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n"); | |
842b556a | 2656 | #endif |
9c3d33d6 MN |
2657 | } |
2658 | ||
b29f97d1 | 2659 | static void opt_audio_bitrate(const char *arg) |
85f07f22 FB |
2660 | { |
2661 | audio_bit_rate = atoi(arg) * 1000; | |
2662 | } | |
2663 | ||
b29f97d1 | 2664 | static void opt_audio_rate(const char *arg) |
85f07f22 FB |
2665 | { |
2666 | audio_sample_rate = atoi(arg); | |
2667 | } | |
2668 | ||
b29f97d1 | 2669 | static void opt_audio_channels(const char *arg) |
85f07f22 FB |
2670 | { |
2671 | audio_channels = atoi(arg); | |
2672 | } | |
2673 | ||
b29f97d1 | 2674 | static void opt_video_device(const char *arg) |
85f07f22 | 2675 | { |
e9a9e0c2 | 2676 | video_device = av_strdup(arg); |
85f07f22 FB |
2677 | } |
2678 | ||
2639c651 RS |
2679 | static void opt_grab_device(const char *arg) |
2680 | { | |
2681 | grab_device = av_strdup(arg); | |
2682 | } | |
2683 | ||
b29f97d1 | 2684 | static void opt_video_channel(const char *arg) |
a5df11ab FB |
2685 | { |
2686 | video_channel = strtol(arg, NULL, 0); | |
2687 | } | |
2688 | ||
e3ee3283 AB |
2689 | static void opt_video_standard(const char *arg) |
2690 | { | |
2691 | video_standard = av_strdup(arg); | |
2692 | } | |
2693 | ||
b29f97d1 | 2694 | static void opt_audio_device(const char *arg) |
85f07f22 | 2695 | { |
e9a9e0c2 | 2696 | audio_device = av_strdup(arg); |
85f07f22 FB |
2697 | } |
2698 | ||
cf7fc795 FB |
2699 | static void opt_codec(int *pstream_copy, int *pcodec_id, |
2700 | int codec_type, const char *arg) | |
85f07f22 FB |
2701 | { |
2702 | AVCodec *p; | |
2703 | ||
1629626f | 2704 | if (!strcmp(arg, "copy")) { |
cf7fc795 | 2705 | *pstream_copy = 1; |
85f07f22 | 2706 | } else { |
1629626f FB |
2707 | p = first_avcodec; |
2708 | while (p) { | |
cf7fc795 | 2709 | if (!strcmp(p->name, arg) && p->type == codec_type) |
1629626f FB |
2710 | break; |
2711 | p = p->next; | |
2712 | } | |
2713 | if (p == NULL) { | |
cf7fc795 | 2714 | fprintf(stderr, "Unknown codec '%s'\n", arg); |
1629626f FB |
2715 | exit(1); |
2716 | } else { | |
cf7fc795 | 2717 | *pcodec_id = p->id; |
1629626f | 2718 | } |
85f07f22 FB |
2719 | } |
2720 | } | |
2721 | ||
cf7fc795 FB |
2722 | static void opt_audio_codec(const char *arg) |
2723 | { | |
2724 | opt_codec(&audio_stream_copy, &audio_codec_id, CODEC_TYPE_AUDIO, arg); | |
2725 | } | |
2726 | ||
b2a2197e MN |
2727 | static void opt_audio_tag(const char *arg) |
2728 | { | |
2729 | char *tail; | |
2730 | audio_codec_tag= strtol(arg, &tail, 0); | |
2731 | ||
2732 | if(!tail || *tail) | |
2733 | audio_codec_tag= arg[0] + (arg[1]<<8) + (arg[2]<<16) + (arg[3]<<24); | |
2734 | } | |
2735 | ||
2736 | static void opt_video_tag(const char *arg) | |
2737 | { | |
2738 | char *tail; | |
2739 | video_codec_tag= strtol(arg, &tail, 0); | |
2740 | ||
2741 | if(!tail || *tail) | |
2742 | video_codec_tag= arg[0] + (arg[1]<<8) + (arg[2]<<16) + (arg[3]<<24); | |
2743 | } | |
2744 | ||
b29f97d1 | 2745 | static void add_frame_hooker(const char *arg) |
10d104e4 PG |
2746 | { |
2747 | int argc = 0; | |
2748 | char *argv[64]; | |
2749 | int i; | |
e9a9e0c2 | 2750 | char *args = av_strdup(arg); |
10d104e4 | 2751 | |
bee0d9e5 CY |
2752 | using_vhook = 1; |
2753 | ||
10d104e4 PG |
2754 | argv[0] = strtok(args, " "); |
2755 | while (argc < 62 && (argv[++argc] = strtok(NULL, " "))) { | |
2756 | } | |
2757 | ||
2758 | i = frame_hook_add(argc, argv); | |
2759 | ||
2760 | if (i != 0) { | |
2761 | fprintf(stderr, "Failed to add video hook function: %s\n", arg); | |
2762 | exit(1); | |
2763 | } | |
2764 | } | |
2765 | ||
85f07f22 FB |
2766 | const char *motion_str[] = { |
2767 | "zero", | |
2768 | "full", | |
2769 | "log", | |
2770 | "phods", | |
7084c149 MN |
2771 | "epzs", |
2772 | "x1", | |
51d6a3cf MN |
2773 | "hex", |
2774 | "umh", | |
2775 | "iter", | |
85f07f22 FB |
2776 | NULL, |
2777 | }; | |
2778 | ||
b29f97d1 | 2779 | static void opt_motion_estimation(const char *arg) |
85f07f22 FB |
2780 | { |
2781 | const char **p; | |
2782 | p = motion_str; | |
2783 | for(;;) { | |
2784 | if (!*p) { | |
2785 | fprintf(stderr, "Unknown motion estimation method '%s'\n", arg); | |
2786 | exit(1); | |
2787 | } | |
2788 | if (!strcmp(*p, arg)) | |
2789 | break; | |
2790 | p++; | |
2791 | } | |
101bea5f | 2792 | me_method = (p - motion_str) + 1; |
85f07f22 FB |
2793 | } |
2794 | ||
b29f97d1 | 2795 | static void opt_video_codec(const char *arg) |
85f07f22 | 2796 | { |
cf7fc795 FB |
2797 | opt_codec(&video_stream_copy, &video_codec_id, CODEC_TYPE_VIDEO, arg); |
2798 | } | |
85f07f22 | 2799 | |
cf7fc795 FB |
2800 | static void opt_subtitle_codec(const char *arg) |
2801 | { | |
2802 | opt_codec(&subtitle_stream_copy, &subtitle_codec_id, CODEC_TYPE_SUBTITLE, arg); | |
85f07f22 FB |
2803 | } |
2804 | ||
b29f97d1 | 2805 | static void opt_map(const char *arg) |
85f07f22 FB |
2806 | { |
2807 | AVStreamMap *m; | |
2808 | const char *p; | |
2809 | ||
2810 | p = arg; | |
2811 | m = &stream_maps[nb_stream_maps++]; | |
2812 | ||
2813 | m->file_index = strtol(arg, (char **)&p, 0); | |
2814 | if (*p) | |
2815 | p++; | |
a5dc85ef J |
2816 | |
2817 | m->stream_index = strtol(p, (char **)&p, 0); | |
b4a3389e WG |
2818 | if (*p) { |
2819 | p++; | |
2820 | m->sync_file_index = strtol(p, (char **)&p, 0); | |
2821 | if (*p) | |
2822 | p++; | |
2823 | m->sync_stream_index = strtol(p, (char **)&p, 0); | |
2824 | } else { | |
2825 | m->sync_file_index = m->file_index; | |
2826 | m->sync_stream_index = m->stream_index; | |
2827 | } | |
85f07f22 FB |
2828 | } |
2829 | ||
0a38bafd PB |
2830 | static void opt_map_meta_data(const char *arg) |
2831 | { | |
2832 | AVMetaDataMap *m; | |
2833 | const char *p; | |
115329f1 | 2834 | |
0a38bafd PB |
2835 | p = arg; |
2836 | m = &meta_data_maps[nb_meta_data_maps++]; | |
2837 | ||
2838 | m->out_file = strtol(arg, (char **)&p, 0); | |
2839 | if (*p) | |
2840 | p++; | |
2841 | ||
2842 | m->in_file = strtol(p, (char **)&p, 0); | |
2843 | } | |
2844 | ||
b29f97d1 | 2845 | static void opt_recording_time(const char *arg) |
85f07f22 FB |
2846 | { |
2847 | recording_time = parse_date(arg, 1); | |
2848 | } | |
2849 | ||
8831db5c MN |
2850 | static void opt_start_time(const char *arg) |
2851 | { | |
2852 | start_time = parse_date(arg, 1); | |
2853 | } | |
2854 | ||
4568325a RS |
2855 | static void opt_rec_timestamp(const char *arg) |
2856 | { | |
2857 | rec_timestamp = parse_date(arg, 0) / 1000000; | |
2858 | } | |
2859 | ||
a6a92a9a WG |
2860 | static void opt_input_ts_offset(const char *arg) |
2861 | { | |
2862 | input_ts_offset = parse_date(arg, 1); | |
2863 | } | |
2864 | ||
b29f97d1 | 2865 | static void opt_input_file(const char *filename) |
85f07f22 FB |
2866 | { |
2867 | AVFormatContext *ic; | |
2868 | AVFormatParameters params, *ap = ¶ms; | |
14bea432 | 2869 | int err, i, ret, rfps, rfps_base; |
bd1b79a1 | 2870 | int64_t timestamp; |
85f07f22 | 2871 | |
b242baa4 FB |
2872 | if (!strcmp(filename, "-")) |
2873 | filename = "pipe:"; | |
2874 | ||
115329f1 | 2875 | using_stdin |= !strncmp(filename, "pipe:", 5) || |
d9a916e2 CY |
2876 | !strcmp( filename, "/dev/stdin" ); |
2877 | ||
85f07f22 | 2878 | /* get default parameters from command line */ |
79fdaa4c FB |
2879 | memset(ap, 0, sizeof(*ap)); |
2880 | ap->sample_rate = audio_sample_rate; | |
2881 | ap->channels = audio_channels; | |
c0df9d75 MN |
2882 | ap->time_base.den = frame_rate; |
2883 | ap->time_base.num = frame_rate_base; | |
1ff93ffc TK |
2884 | ap->width = frame_width + frame_padleft + frame_padright; |
2885 | ap->height = frame_height + frame_padtop + frame_padbottom; | |
817b23ff | 2886 | ap->image_format = image_format; |
63167088 | 2887 | ap->pix_fmt = frame_pix_fmt; |
2639c651 RS |
2888 | ap->device = grab_device; |
2889 | ap->channel = video_channel; | |
2890 | ap->standard = video_standard; | |
5b6d5596 MN |
2891 | ap->video_codec_id = video_codec_id; |
2892 | ap->audio_codec_id = audio_codec_id; | |
2893 | if(pgmyuv_compatibility_hack) | |
2894 | ap->video_codec_id= CODEC_ID_PGMYUV; | |
79fdaa4c FB |
2895 | |
2896 | /* open the input file with generic libav function */ | |
2897 | err = av_open_input_file(&ic, filename, file_iformat, 0, ap); | |
85f07f22 | 2898 | if (err < 0) { |
79fdaa4c | 2899 | print_error(filename, err); |
85f07f22 FB |
2900 | exit(1); |
2901 | } | |
30bc6613 MN |
2902 | |
2903 | if(genpts) | |
2904 | ic->flags|= AVFMT_FLAG_GENPTS; | |
115329f1 | 2905 | |
79fdaa4c FB |
2906 | /* If not enough info to get the stream parameters, we decode the |
2907 | first frames to get it. (used in mpeg case for example) */ | |
2908 | ret = av_find_stream_info(ic); | |
d8019eb5 | 2909 | if (ret < 0 && verbose >= 0) { |
85f07f22 FB |
2910 | fprintf(stderr, "%s: could not find codec parameters\n", filename); |
2911 | exit(1); | |
2912 | } | |
2913 | ||
bd1b79a1 MN |
2914 | timestamp = start_time; |
2915 | /* add the stream start time */ | |
2916 | if (ic->start_time != AV_NOPTS_VALUE) | |
2917 | timestamp += ic->start_time; | |
2918 | ||
254abc2e FB |
2919 | /* if seeking requested, we execute it */ |
2920 | if (start_time != 0) { | |
3ba1438d | 2921 | ret = av_seek_frame(ic, -1, timestamp, AVSEEK_FLAG_BACKWARD); |
254abc2e | 2922 | if (ret < 0) { |
115329f1 | 2923 | fprintf(stderr, "%s: could not seek to position %0.3f\n", |
254abc2e FB |
2924 | filename, (double)timestamp / AV_TIME_BASE); |
2925 | } | |
2926 | /* reset seek info */ | |
2927 | start_time = 0; | |
2928 | } | |
2929 | ||
85f07f22 FB |
2930 | /* update the current parameters so that they match the one of the input stream */ |
2931 | for(i=0;i<ic->nb_streams;i++) { | |
637b5326 | 2932 | int j; |
01f4895c | 2933 | AVCodecContext *enc = ic->streams[i]->codec; |
2450cff2 | 2934 | #if defined(HAVE_THREADS) |
c62c07d3 MN |
2935 | if(thread_count>1) |
2936 | avcodec_thread_init(enc, thread_count); | |
2937 | #endif | |
2938 | enc->thread_count= thread_count; | |
85f07f22 FB |
2939 | switch(enc->codec_type) { |
2940 | case CODEC_TYPE_AUDIO: | |
637b5326 MN |
2941 | for(j=0; j<opt_name_count; j++){ |
2942 | AVOption *opt; | |
2943 | double d= av_get_double(avctx_opts, opt_names[j], &opt); | |
2944 | if(d==d && (opt->flags&AV_OPT_FLAG_AUDIO_PARAM) && (opt->flags&AV_OPT_FLAG_DECODING_PARAM)) | |
2945 | av_set_double(enc, opt_names[j], d); | |
2946 | } | |
e0d2714a | 2947 | //fprintf(stderr, "\nInput Audio channels: %d", enc->channels); |
85f07f22 FB |
2948 | audio_channels = enc->channels; |
2949 | audio_sample_rate = enc->sample_rate; | |
b4aea108 | 2950 | if(audio_disable) |
f3356e9c | 2951 | ic->streams[i]->discard= AVDISCARD_ALL; |
85f07f22 FB |
2952 | break; |
2953 | case CODEC_TYPE_VIDEO: | |
637b5326 MN |
2954 | for(j=0; j<opt_name_count; j++){ |
2955 | AVOption *opt; | |
2956 | double d= av_get_double(avctx_opts, opt_names[j], &opt); | |
2957 | if(d==d && (opt->flags&AV_OPT_FLAG_VIDEO_PARAM) && (opt->flags&AV_OPT_FLAG_DECODING_PARAM)) | |
2958 | av_set_double(enc, opt_names[j], d); | |
2959 | } | |
85f07f22 FB |
2960 | frame_height = enc->height; |
2961 | frame_width = enc->width; | |
bb270c08 DB |
2962 | frame_aspect_ratio = av_q2d(enc->sample_aspect_ratio) * enc->width / enc->height; |
2963 | frame_pix_fmt = enc->pix_fmt; | |
c0df9d75 MN |
2964 | rfps = ic->streams[i]->r_frame_rate.num; |
2965 | rfps_base = ic->streams[i]->r_frame_rate.den; | |
fe670d09 | 2966 | enc->workaround_bugs = workaround_bugs; |
637b5326 | 2967 | if(enc->lowres) enc->flags |= CODEC_FLAG_EMU_EDGE; |
f4f3223f MN |
2968 | if(me_threshold) |
2969 | enc->debug |= FF_DEBUG_MV; | |
d7425f59 | 2970 | |
115329f1 | 2971 | if (enc->time_base.den != rfps || enc->time_base.num != rfps_base) { |
d8019eb5 AD |
2972 | |
2973 | if (verbose >= 0) | |
15bc38e5 | 2974 | fprintf(stderr,"\nSeems that stream %d comes from film source: %2.2f (%d/%d) -> %2.2f (%d/%d)\n", |
c0df9d75 | 2975 | i, (float)enc->time_base.den / enc->time_base.num, enc->time_base.den, enc->time_base.num, |
d8019eb5 | 2976 | |
15bc38e5 | 2977 | (float)rfps / rfps_base, rfps, rfps_base); |
79fdaa4c | 2978 | } |
bf5af568 | 2979 | /* update the current frame rate to match the stream frame rate */ |
14bea432 MN |
2980 | frame_rate = rfps; |
2981 | frame_rate_base = rfps_base; | |
bdfcbbed MK |
2982 | |
2983 | enc->rate_emu = rate_emu; | |
b4aea108 | 2984 | if(video_disable) |
f3356e9c MN |
2985 | ic->streams[i]->discard= AVDISCARD_ALL; |
2986 | else if(video_discard) | |
2987 | ic->streams[i]->discard= video_discard; | |
85f07f22 | 2988 | break; |
254abc2e FB |
2989 | case CODEC_TYPE_DATA: |
2990 | break; | |
cf7fc795 FB |
2991 | case CODEC_TYPE_SUBTITLE: |
2992 | break; | |
ae38261e MB |
2993 | case CODEC_TYPE_UNKNOWN: |
2994 | break; | |
51bd4565 | 2995 | default: |
c04643a2 | 2996 | av_abort(); |
85f07f22 FB |
2997 | } |
2998 | } | |
115329f1 | 2999 | |
85f07f22 | 3000 | input_files[nb_input_files] = ic; |
bd1b79a1 | 3001 | input_files_ts_offset[nb_input_files] = input_ts_offset - (copy_ts ? 0 : timestamp); |
85f07f22 | 3002 | /* dump the file content */ |
d8019eb5 AD |
3003 | if (verbose >= 0) |
3004 | dump_format(ic, nb_input_files, filename, 0); | |
3005 | ||
85f07f22 | 3006 | nb_input_files++; |
79fdaa4c FB |
3007 | file_iformat = NULL; |
3008 | file_oformat = NULL; | |
817b23ff | 3009 | image_format = NULL; |
bdfcbbed | 3010 | |
2639c651 RS |
3011 | grab_device = NULL; |
3012 | video_channel = 0; | |
115329f1 | 3013 | |
bdfcbbed | 3014 | rate_emu = 0; |
85f07f22 FB |
3015 | } |
3016 | ||
2639c651 RS |
3017 | static void opt_grab(const char *arg) |
3018 | { | |
3019 | file_iformat = av_find_input_format(arg); | |
3020 | opt_input_file(""); | |
3021 | } | |
3022 | ||
b29f97d1 | 3023 | static void check_audio_video_inputs(int *has_video_ptr, int *has_audio_ptr) |
919f448d FB |
3024 | { |
3025 | int has_video, has_audio, i, j; | |
3026 | AVFormatContext *ic; | |
3027 | ||
3028 | has_video = 0; | |
3029 | has_audio = 0; | |
3030 | for(j=0;j<nb_input_files;j++) { | |
3031 | ic = input_files[j]; | |
3032 | for(i=0;i<ic->nb_streams;i++) { | |
01f4895c | 3033 | AVCodecContext *enc = ic->streams[i]->codec; |
919f448d FB |
3034 | switch(enc->codec_type) { |
3035 | case CODEC_TYPE_AUDIO: | |
3036 | has_audio = 1; | |
3037 | break; | |
3038 | case CODEC_TYPE_VIDEO: | |
3039 | has_video = 1; | |
3040 | break; | |
6fb316d5 | 3041 | case CODEC_TYPE_DATA: |
ae38261e | 3042 | case CODEC_TYPE_UNKNOWN: |
cf7fc795 | 3043 | case CODEC_TYPE_SUBTITLE: |
6fb316d5 | 3044 | break; |
51bd4565 | 3045 | default: |
c04643a2 | 3046 | av_abort(); |
919f448d FB |
3047 | } |
3048 | } | |
3049 | } | |
3050 | *has_video_ptr = has_video; | |
3051 | *has_audio_ptr = has_audio; | |
3052 | } | |
3053 | ||
cf7fc795 | 3054 | static void new_video_stream(AVFormatContext *oc) |
85f07f22 FB |
3055 | { |
3056 | AVStream *st; | |
cf7fc795 FB |
3057 | AVCodecContext *video_enc; |
3058 | int codec_id; | |
115329f1 | 3059 | |
cf7fc795 FB |
3060 | st = av_new_stream(oc, oc->nb_streams); |
3061 | if (!st) { | |
3062 | fprintf(stderr, "Could not alloc stream\n"); | |
3063 | exit(1); | |
3064 | } | |
3065 | #if defined(HAVE_THREADS) | |
3066 | if(thread_count>1) | |
01f4895c | 3067 | avcodec_thread_init(st->codec, thread_count); |
cf7fc795 | 3068 | #endif |
115329f1 | 3069 | |
01f4895c | 3070 | video_enc = st->codec; |
115329f1 | 3071 | |
cf7fc795 FB |
3072 | if(video_codec_tag) |
3073 | video_enc->codec_tag= video_codec_tag; | |
115329f1 | 3074 | |
90ad92b3 | 3075 | if( (video_global_header&1) |
637b5326 | 3076 | || (video_global_header==0 && (oc->oformat->flags & AVFMT_GLOBALHEADER))){ |
cf7fc795 | 3077 | video_enc->flags |= CODEC_FLAG_GLOBAL_HEADER; |
637b5326 MN |
3078 | avctx_opts->flags|= CODEC_FLAG_GLOBAL_HEADER; |
3079 | } | |
3080 | if(video_global_header&2){ | |
90ad92b3 | 3081 | video_enc->flags2 |= CODEC_FLAG2_LOCAL_HEADER; |
637b5326 MN |
3082 | avctx_opts->flags2|= CODEC_FLAG2_LOCAL_HEADER; |
3083 | } | |
90ad92b3 | 3084 | |
cf7fc795 FB |
3085 | if (video_stream_copy) { |
3086 | st->stream_copy = 1; | |
3087 | video_enc->codec_type = CODEC_TYPE_VIDEO; | |
3088 | } else { | |
3089 | char *p; | |
3090 | int i; | |
3091 | AVCodec *codec; | |
115329f1 | 3092 | |
cf7fc795 FB |
3093 | codec_id = av_guess_codec(oc->oformat, NULL, oc->filename, NULL, CODEC_TYPE_VIDEO); |
3094 | if (video_codec_id != CODEC_ID_NONE) | |
3095 | codec_id = video_codec_id; | |
115329f1 | 3096 | |
cf7fc795 FB |
3097 | video_enc->codec_id = codec_id; |
3098 | codec = avcodec_find_encoder(codec_id); | |
115329f1 | 3099 | |
8bbf6db9 MN |
3100 | for(i=0; i<opt_name_count; i++){ |
3101 | AVOption *opt; | |
3102 | double d= av_get_double(avctx_opts, opt_names[i], &opt); | |
3103 | if(d==d && (opt->flags&AV_OPT_FLAG_VIDEO_PARAM) && (opt->flags&AV_OPT_FLAG_ENCODING_PARAM)) | |
3104 | av_set_double(video_enc, opt_names[i], d); | |
3105 | } | |
115329f1 | 3106 | |
cf7fc795 FB |
3107 | video_enc->bit_rate = video_bit_rate; |
3108 | video_enc->bit_rate_tolerance = video_bit_rate_tolerance; | |
115329f1 DB |
3109 | video_enc->time_base.den = frame_rate; |
3110 | video_enc->time_base.num = frame_rate_base; | |
cf7fc795 FB |
3111 | if(codec && codec->supported_framerates){ |
3112 | const AVRational *p= codec->supported_framerates; | |
3113 | AVRational req= (AVRational){frame_rate, frame_rate_base}; | |
3114 | const AVRational *best=NULL; | |
3115 | AVRational best_error= (AVRational){INT_MAX, 1}; | |
3116 | for(; p->den!=0; p++){ | |
3117 | AVRational error= av_sub_q(req, *p); | |
3118 | if(error.num <0) error.num *= -1; | |
3119 | if(av_cmp_q(error, best_error) < 0){ | |
3120 | best_error= error; | |
3121 | best= p; | |
3122 | } | |
3123 | } | |
3124 | video_enc->time_base.den= best->num; | |
3125 | video_enc->time_base.num= best->den; | |
3126 | } | |
115329f1 | 3127 | |
cf7fc795 FB |
3128 | video_enc->width = frame_width + frame_padright + frame_padleft; |
3129 | video_enc->height = frame_height + frame_padtop + frame_padbottom; | |
3130 | video_enc->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 255); | |
3131 | video_enc->pix_fmt = frame_pix_fmt; | |
3132 | ||
3133 | if(codec && codec->pix_fmts){ | |
3134 | const enum PixelFormat *p= codec->pix_fmts; | |
3135 | for(; *p!=-1; p++){ | |
3136 | if(*p == video_enc->pix_fmt) | |
3137 | break; | |
3138 | } | |
3139 | if(*p == -1) | |
3140 | video_enc->pix_fmt = codec->pix_fmts[0]; | |
3141 | } | |
3142 | ||
3143 | if (!intra_only) | |
3144 | video_enc->gop_size = gop_size; | |
3145 | else | |
3146 | video_enc->gop_size = 0; | |
3147 | if (video_qscale || same_quality) { | |
3148 | video_enc->flags |= CODEC_FLAG_QSCALE; | |
115329f1 | 3149 | video_enc->global_quality= |
cf7fc795 FB |
3150 | st->quality = FF_QP2LAMBDA * video_qscale; |
3151 | } | |
3152 | ||
3153 | if(intra_matrix) | |
3154 | video_enc->intra_matrix = intra_matrix; | |
3155 | if(inter_matrix) | |
3156 | video_enc->inter_matrix = inter_matrix; | |
3157 | ||
cf7fc795 | 3158 | video_enc->pre_me = pre_me; |
115329f1 | 3159 | |
cf7fc795 FB |
3160 | if (b_frames) { |
3161 | video_enc->max_b_frames = b_frames; | |
cf7fc795 FB |
3162 | video_enc->b_quant_factor = 2.0; |
3163 | } | |
cf7fc795 FB |
3164 | video_enc->qmin = video_qmin; |
3165 | video_enc->qmax = video_qmax; | |
3166 | video_enc->lmin = video_lmin; | |
3167 | video_enc->lmax = video_lmax; | |
3168 | video_enc->rc_qsquish = video_qsquish; | |
cf7fc795 FB |
3169 | video_enc->mb_lmin = video_mb_lmin; |
3170 | video_enc->mb_lmax = video_mb_lmax; | |
3171 | video_enc->max_qdiff = video_qdiff; | |
3172 | video_enc->qblur = video_qblur; | |
3173 | video_enc->qcompress = video_qcomp; | |
3174 | video_enc->rc_eq = video_rc_eq; | |
cf7fc795 FB |
3175 | video_enc->workaround_bugs = workaround_bugs; |
3176 | video_enc->thread_count = thread_count; | |
3177 | p= video_rc_override_string; | |
3178 | for(i=0; p; i++){ | |
3179 | int start, end, q; | |
3180 | int e=sscanf(p, "%d,%d,%d", &start, &end, &q); | |
3181 | if(e!=3){ | |
3182 | fprintf(stderr, "error parsing rc_override\n"); | |
3183 | exit(1); | |
3184 | } | |
115329f1 DB |
3185 | video_enc->rc_override= |
3186 | av_realloc(video_enc->rc_override, | |
cf7fc795 FB |
3187 | sizeof(RcOverride)*(i+1)); |
3188 | video_enc->rc_override[i].start_frame= start; | |
3189 | video_enc->rc_override[i].end_frame = end; | |
3190 | if(q>0){ | |
3191 | video_enc->rc_override[i].qscale= q; | |
3192 | video_enc->rc_override[i].quality_factor= 1.0; | |
3193 | } | |
3194 | else{ | |
3195 | video_enc->rc_override[i].qscale= 0; | |
3196 | video_enc->rc_override[i].quality_factor= -q/100.0; | |
3197 | } | |
3198 | p= strchr(p, '/'); | |
3199 | if(p) p++; | |
3200 | } | |
3201 | video_enc->rc_override_count=i; | |
3202 | ||
3203 | video_enc->rc_max_rate = video_rc_max_rate; | |
3204 | video_enc->rc_min_rate = video_rc_min_rate; | |
3205 | video_enc->rc_buffer_size = video_rc_buffer_size; | |
3206 | video_enc->rc_initial_buffer_occupancy = video_rc_buffer_size*3/4; | |
3207 | video_enc->rc_buffer_aggressivity= video_rc_buffer_aggressivity; | |
3208 | video_enc->rc_initial_cplx= video_rc_initial_cplx; | |
3209 | video_enc->i_quant_factor = video_i_qfactor; | |
3210 | video_enc->b_quant_factor = video_b_qfactor; | |
3211 | video_enc->i_quant_offset = video_i_qoffset; | |
3212 | video_enc->b_quant_offset = video_b_qoffset; | |
3213 | video_enc->intra_quant_bias = video_intra_quant_bias; | |
3214 | video_enc->inter_quant_bias = video_inter_quant_bias; | |
cf7fc795 FB |
3215 | video_enc->me_threshold= me_threshold; |
3216 | video_enc->mb_threshold= mb_threshold; | |
3217 | video_enc->intra_dc_precision= intra_dc_precision - 8; | |
3218 | video_enc->strict_std_compliance = strict; | |
3219 | video_enc->error_rate = error_rate; | |
cf7fc795 FB |
3220 | video_enc->scenechange_threshold= sc_threshold; |
3221 | video_enc->me_range = me_range; | |
cf7fc795 FB |
3222 | video_enc->me_penalty_compensation= me_penalty_compensation; |
3223 | video_enc->frame_skip_threshold= frame_skip_threshold; | |
3224 | video_enc->frame_skip_factor= frame_skip_factor; | |
3225 | video_enc->frame_skip_exp= frame_skip_exp; | |
cf7fc795 FB |
3226 | |
3227 | if(packet_size){ | |
3228 | video_enc->rtp_mode= 1; | |
3229 | video_enc->rtp_payload_size= packet_size; | |
3230 | } | |
115329f1 | 3231 | |
cf7fc795 FB |
3232 | if (do_psnr) |
3233 | video_enc->flags|= CODEC_FLAG_PSNR; | |
115329f1 | 3234 | |
cf7fc795 FB |
3235 | video_enc->me_method = me_method; |
3236 | ||
3237 | /* two pass mode */ | |
3238 | if (do_pass) { | |
3239 | if (do_pass == 1) { | |
3240 | video_enc->flags |= CODEC_FLAG_PASS1; | |
3241 | } else { | |
3242 | video_enc->flags |= CODEC_FLAG_PASS2; | |
3243 | } | |
3244 | } | |
3245 | } | |
3246 | ||
3247 | /* reset some key parameters */ | |
3248 | video_disable = 0; | |
3249 | video_codec_id = CODEC_ID_NONE; | |
3250 | video_stream_copy = 0; | |
3251 | } | |
3252 | ||
3253 | static void new_audio_stream(AVFormatContext *oc) | |
3254 | { | |
3255 | AVStream *st; | |
3256 | AVCodecContext *audio_enc; | |
8bbf6db9 | 3257 | int codec_id, i; |
115329f1 | 3258 | |
cf7fc795 FB |
3259 | st = av_new_stream(oc, oc->nb_streams); |
3260 | if (!st) { | |
3261 | fprintf(stderr, "Could not alloc stream\n"); | |
3262 | exit(1); | |
3263 | } | |
3264 | #if defined(HAVE_THREADS) | |
3265 | if(thread_count>1) | |
01f4895c | 3266 | avcodec_thread_init(st->codec, thread_count); |
cf7fc795 | 3267 | #endif |
115329f1 | 3268 | |
01f4895c | 3269 | audio_enc = st->codec; |
cf7fc795 | 3270 | audio_enc->codec_type = CODEC_TYPE_AUDIO; |
115329f1 | 3271 | |
cf7fc795 FB |
3272 | if(audio_codec_tag) |
3273 | audio_enc->codec_tag= audio_codec_tag; | |
115329f1 | 3274 | |
637b5326 | 3275 | if (oc->oformat->flags & AVFMT_GLOBALHEADER) { |
cf7fc795 | 3276 | audio_enc->flags |= CODEC_FLAG_GLOBAL_HEADER; |
637b5326 MN |
3277 | avctx_opts->flags|= CODEC_FLAG_GLOBAL_HEADER; |
3278 | } | |
cf7fc795 FB |
3279 | if (audio_stream_copy) { |
3280 | st->stream_copy = 1; | |
3281 | audio_enc->channels = audio_channels; | |
3282 | } else { | |
3283 | codec_id = av_guess_codec(oc->oformat, NULL, oc->filename, NULL, CODEC_TYPE_AUDIO); | |
115329f1 | 3284 | |
8bbf6db9 MN |
3285 | for(i=0; i<opt_name_count; i++){ |
3286 | AVOption *opt; | |
3287 | double d= av_get_double(avctx_opts, opt_names[i], &opt); | |
3288 | if(d==d && (opt->flags&AV_OPT_FLAG_AUDIO_PARAM) && (opt->flags&AV_OPT_FLAG_ENCODING_PARAM)) | |
3289 | av_set_double(audio_enc, opt_names[i], d); | |
3290 | } | |
115329f1 | 3291 | |
cf7fc795 FB |
3292 | if (audio_codec_id != CODEC_ID_NONE) |
3293 | codec_id = audio_codec_id; | |
3294 | audio_enc->codec_id = codec_id; | |
115329f1 | 3295 | |
cf7fc795 | 3296 | audio_enc->bit_rate = audio_bit_rate; |
c57c770d JR |
3297 | if (audio_qscale > QSCALE_NONE) { |
3298 | audio_enc->flags |= CODEC_FLAG_QSCALE; | |
3299 | audio_enc->global_quality = st->quality = FF_QP2LAMBDA * audio_qscale; | |
3300 | } | |
cf7fc795 FB |
3301 | audio_enc->strict_std_compliance = strict; |
3302 | audio_enc->thread_count = thread_count; | |
3303 | /* For audio codecs other than AC3 or DTS we limit */ | |
3304 | /* the number of coded channels to stereo */ | |
3305 | if (audio_channels > 2 && codec_id != CODEC_ID_AC3 | |
3306 | && codec_id != CODEC_ID_DTS) { | |
3307 | audio_enc->channels = 2; | |
3308 | } else | |
3309 | audio_enc->channels = audio_channels; | |
3310 | } | |
3311 | audio_enc->sample_rate = audio_sample_rate; | |
78e03516 | 3312 | audio_enc->time_base= (AVRational){1, audio_sample_rate}; |
cf7fc795 FB |
3313 | if (audio_language) { |
3314 | pstrcpy(st->language, sizeof(st->language), audio_language); | |
3315 | av_free(audio_language); | |
3316 | audio_language = NULL; | |
3317 | } | |
3318 | ||
3319 | /* reset some key parameters */ | |
3320 | audio_disable = 0; | |
3321 | audio_codec_id = CODEC_ID_NONE; | |
3322 | audio_stream_copy = 0; | |
3323 | } | |
3324 | ||
3325 | static void opt_new_subtitle_stream(void) | |
3326 | { | |
3327 | AVFormatContext *oc; | |
3328 | AVStream *st; | |
3329 | AVCodecContext *subtitle_enc; | |
8bbf6db9 | 3330 | int i; |
115329f1 | 3331 | |
cf7fc795 FB |
3332 | if (nb_output_files <= 0) { |
3333 | fprintf(stderr, "At least one output file must be specified\n"); | |
3334 | exit(1); | |
3335 | } | |
3336 | oc = output_files[nb_output_files - 1]; | |
3337 | ||
3338 | st = av_new_stream(oc, oc->nb_streams); | |
3339 | if (!st) { | |
3340 | fprintf(stderr, "Could not alloc stream\n"); | |
3341 | exit(1); | |
3342 | } | |
3343 | ||
01f4895c | 3344 | subtitle_enc = st->codec; |
cf7fc795 FB |
3345 | subtitle_enc->codec_type = CODEC_TYPE_SUBTITLE; |
3346 | if (subtitle_stream_copy) { | |
3347 | st->stream_copy = 1; | |
3348 | } else { | |
8bbf6db9 MN |
3349 | for(i=0; i<opt_name_count; i++){ |
3350 | AVOption *opt; | |
3351 | double d= av_get_double(avctx_opts, opt_names[i], &opt); | |
3352 | if(d==d && (opt->flags&AV_OPT_FLAG_SUBTITLE_PARAM) && (opt->flags&AV_OPT_FLAG_ENCODING_PARAM)) | |
3353 | av_set_double(subtitle_enc, opt_names[i], d); | |
3354 | } | |
cf7fc795 FB |
3355 | subtitle_enc->codec_id = subtitle_codec_id; |
3356 | } | |
3357 | ||
3358 | if (subtitle_language) { | |
3359 | pstrcpy(st->language, sizeof(st->language), subtitle_language); | |
3360 | av_free(subtitle_language); | |
3361 | subtitle_language = NULL; | |
3362 | } | |
3363 | ||
3364 | subtitle_codec_id = CODEC_ID_NONE; | |
3365 | subtitle_stream_copy = 0; | |
3366 | } | |
3367 | ||
3368 | static void opt_new_audio_stream(void) | |
3369 | { | |
3370 | AVFormatContext *oc; | |
3371 | if (nb_output_files <= 0) { | |
3372 | fprintf(stderr, "At least one output file must be specified\n"); | |
3373 | exit(1); | |
3374 | } | |
3375 | oc = output_files[nb_output_files - 1]; | |
3376 | new_audio_stream(oc); | |
3377 | } | |
3378 | ||
3379 | static void opt_new_video_stream(void) | |
3380 | { | |
3381 | AVFormatContext *oc; | |
3382 | if (nb_output_files <= 0) { | |
3383 | fprintf(stderr, "At least one output file must be specified\n"); | |
3384 | exit(1); | |
3385 | } | |
3386 | oc = output_files[nb_output_files - 1]; | |
3387 | new_video_stream(oc); | |
3388 | } | |
3389 | ||
3390 | static void opt_output_file(const char *filename) | |
3391 | { | |
3392 | AVFormatContext *oc; | |
3393 | int use_video, use_audio, input_has_video, input_has_audio; | |
817b23ff | 3394 | AVFormatParameters params, *ap = ¶ms; |
85f07f22 FB |
3395 | |
3396 | if (!strcmp(filename, "-")) | |
3397 | filename = "pipe:"; | |
3398 | ||
bc874dae | 3399 | oc = av_alloc_format_context(); |
85f07f22 | 3400 | |
79fdaa4c FB |
3401 | if (!file_oformat) { |
3402 | file_oformat = guess_format(NULL, filename, NULL); | |
3403 | if (!file_oformat) { | |
3404 | fprintf(stderr, "Unable for find a suitable output format for '%s'\n", | |
3405 | filename); | |
3406 | exit(1); | |
3407 | } | |
85f07f22 | 3408 | } |
115329f1 | 3409 | |
79fdaa4c |