Commit | Line | Data |
---|---|---|
85f07f22 | 1 | /* |
115329f1 | 2 | * FFmpeg main |
01310af2 | 3 | * Copyright (c) 2000-2003 Fabrice Bellard |
85f07f22 | 4 | * |
b78e7197 DB |
5 | * This file is part of FFmpeg. |
6 | * | |
7 | * FFmpeg is free software; you can redistribute it and/or | |
bf5af568 FB |
8 | * modify it under the terms of the GNU Lesser General Public |
9 | * License as published by the Free Software Foundation; either | |
b78e7197 | 10 | * version 2.1 of the License, or (at your option) any later version. |
85f07f22 | 11 | * |
b78e7197 | 12 | * FFmpeg is distributed in the hope that it will be useful, |
85f07f22 | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bf5af568 FB |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 | * Lesser General Public License for more details. | |
85f07f22 | 16 | * |
bf5af568 | 17 | * You should have received a copy of the GNU Lesser General Public |
b78e7197 | 18 | * License along with FFmpeg; if not, write to the Free Software |
5509bffa | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
85f07f22 | 20 | */ |
364a9607 | 21 | |
7246177d | 22 | /* needed for usleep() */ |
d0feff2a | 23 | #define _XOPEN_SOURCE 600 |
7246177d | 24 | |
0f4e8165 RB |
25 | #include "config.h" |
26 | #include <ctype.h> | |
27 | #include <string.h> | |
28 | #include <math.h> | |
29 | #include <stdlib.h> | |
30 | #include <errno.h> | |
d86b83f8 | 31 | #include <signal.h> |
22f7a060 | 32 | #include <limits.h> |
7246177d | 33 | #include <unistd.h> |
245976da DB |
34 | #include "libavformat/avformat.h" |
35 | #include "libavdevice/avdevice.h" | |
36 | #include "libswscale/swscale.h" | |
245976da | 37 | #include "libavcodec/opt.h" |
ce1ee094 | 38 | #include "libavcodec/audioconvert.h" |
ecfe3929 | 39 | #include "libavcodec/colorspace.h" |
245976da | 40 | #include "libavutil/fifo.h" |
718c7b18 | 41 | #include "libavutil/pixdesc.h" |
245976da | 42 | #include "libavutil/avstring.h" |
335ee1aa | 43 | #include "libavutil/libm.h" |
245976da | 44 | #include "libavformat/os_support.h" |
daf8e955 | 45 | |
46847a33 MN |
46 | #if CONFIG_AVFILTER |
47 | # include "libavfilter/avfilter.h" | |
48 | # include "libavfilter/avfiltergraph.h" | |
49 | # include "libavfilter/graphparser.h" | |
50 | # include "libavfilter/vsrc_buffer.h" | |
51 | #endif | |
52 | ||
b250f9c6 | 53 | #if HAVE_SYS_RESOURCE_H |
0a1b29de | 54 | #include <sys/types.h> |
fc5607f8 | 55 | #include <sys/time.h> |
b091aa44 | 56 | #include <sys/resource.h> |
b250f9c6 | 57 | #elif HAVE_GETPROCESSTIMES |
7495c306 RP |
58 | #include <windows.h> |
59 | #endif | |
fc5607f8 RD |
60 | #if HAVE_GETPROCESSMEMORYINFO |
61 | #include <windows.h> | |
62 | #include <psapi.h> | |
63 | #endif | |
7495c306 | 64 | |
b250f9c6 | 65 | #if HAVE_SYS_SELECT_H |
fb1d2d7b BC |
66 | #include <sys/select.h> |
67 | #endif | |
68 | ||
b250f9c6 | 69 | #if HAVE_TERMIOS_H |
85f07f22 FB |
70 | #include <fcntl.h> |
71 | #include <sys/ioctl.h> | |
85f07f22 | 72 | #include <sys/time.h> |
85f07f22 | 73 | #include <termios.h> |
b250f9c6 | 74 | #elif HAVE_CONIO_H |
4b54c6d0 | 75 | #include <conio.h> |
bdc4796f | 76 | #endif |
bf5af568 | 77 | #include <time.h> |
85f07f22 | 78 | |
01310af2 FB |
79 | #include "cmdutils.h" |
80 | ||
2b18dcd0 MN |
81 | #undef NDEBUG |
82 | #include <assert.h> | |
83 | ||
64555bd9 | 84 | const char program_name[] = "FFmpeg"; |
ea9c581f | 85 | const int program_birth_year = 2000; |
86074ed1 | 86 | |
85f07f22 FB |
87 | /* select an input stream for an output stream */ |
88 | typedef struct AVStreamMap { | |
89 | int file_index; | |
90 | int stream_index; | |
b4a3389e WG |
91 | int sync_file_index; |
92 | int sync_stream_index; | |
85f07f22 FB |
93 | } AVStreamMap; |
94 | ||
0a38bafd PB |
95 | /** select an input file for an output file */ |
96 | typedef struct AVMetaDataMap { | |
97 | int out_file; | |
98 | int in_file; | |
99 | } AVMetaDataMap; | |
100 | ||
580a6c57 | 101 | static const OptionDef options[]; |
85f07f22 | 102 | |
60402344 | 103 | #define MAX_FILES 100 |
85f07f22 | 104 | |
ef6fc647 | 105 | static const char *last_asked_format = NULL; |
85f07f22 | 106 | static AVFormatContext *input_files[MAX_FILES]; |
a6a92a9a | 107 | static int64_t input_files_ts_offset[MAX_FILES]; |
8833f375 | 108 | static double input_files_ts_scale[MAX_FILES][MAX_STREAMS]; |
6488cf9b | 109 | static AVCodec *input_codecs[MAX_FILES*MAX_STREAMS]; |
85f07f22 | 110 | static int nb_input_files = 0; |
6488cf9b | 111 | static int nb_icodecs; |
85f07f22 FB |
112 | |
113 | static AVFormatContext *output_files[MAX_FILES]; | |
6488cf9b | 114 | static AVCodec *output_codecs[MAX_FILES*MAX_STREAMS]; |
85f07f22 | 115 | static int nb_output_files = 0; |
6488cf9b | 116 | static int nb_ocodecs; |
85f07f22 | 117 | |
f44fd374 | 118 | static AVStreamMap stream_maps[MAX_FILES*MAX_STREAMS]; |
85f07f22 FB |
119 | static int nb_stream_maps; |
120 | ||
0a38bafd PB |
121 | static AVMetaDataMap meta_data_maps[MAX_FILES]; |
122 | static int nb_meta_data_maps; | |
123 | ||
55cf1959 MN |
124 | static int frame_width = 0; |
125 | static int frame_height = 0; | |
880e8ba7 | 126 | static float frame_aspect_ratio = 0; |
644a9262 | 127 | static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; |
ce1ee094 | 128 | static enum SampleFormat audio_sample_fmt = SAMPLE_FMT_NONE; |
ab6d194a MN |
129 | static int frame_topBand = 0; |
130 | static int frame_bottomBand = 0; | |
131 | static int frame_leftBand = 0; | |
132 | static int frame_rightBand = 0; | |
cf7fc795 | 133 | static int max_frames[4] = {INT_MAX, INT_MAX, INT_MAX, INT_MAX}; |
89129c6b | 134 | static AVRational frame_rate; |
158c7f05 | 135 | static float video_qscale = 0; |
84f608f4 VM |
136 | static uint16_t *intra_matrix = NULL; |
137 | static uint16_t *inter_matrix = NULL; | |
464a631c | 138 | static const char *video_rc_override_string=NULL; |
85f07f22 | 139 | static int video_disable = 0; |
f3356e9c | 140 | static int video_discard = 0; |
4a897224 | 141 | static char *video_codec_name = NULL; |
b2a2197e | 142 | static int video_codec_tag = 0; |
0fc2c0f6 | 143 | static char *video_language = NULL; |
85f07f22 | 144 | static int same_quality = 0; |
cfcf0ffd | 145 | static int do_deinterlace = 0; |
bb198e19 | 146 | static int top_field_first = -1; |
f4f3223f | 147 | static int me_threshold = 0; |
1a11cbcc | 148 | static int intra_dc_precision = 8; |
5894e1bb | 149 | static int loop_input = 0; |
8108551a | 150 | static int loop_output = AVFMT_NOOUTPUTLOOP; |
0888fd22 | 151 | static int qp_hist = 0; |
46847a33 MN |
152 | #if CONFIG_AVFILTER |
153 | static char *vfilters = NULL; | |
154 | AVFilterGraph *filt_graph_all = NULL; | |
155 | #endif | |
85f07f22 | 156 | |
85f07f22 FB |
157 | static int intra_only = 0; |
158 | static int audio_sample_rate = 44100; | |
13367a46 | 159 | static int64_t channel_layout = 0; |
c57c770d JR |
160 | #define QSCALE_NONE -99999 |
161 | static float audio_qscale = QSCALE_NONE; | |
85f07f22 FB |
162 | static int audio_disable = 0; |
163 | static int audio_channels = 1; | |
4a897224 | 164 | static char *audio_codec_name = NULL; |
b2a2197e | 165 | static int audio_codec_tag = 0; |
cf7fc795 FB |
166 | static char *audio_language = NULL; |
167 | ||
11bf3847 | 168 | static int subtitle_disable = 0; |
4a897224 | 169 | static char *subtitle_codec_name = NULL; |
cf7fc795 | 170 | static char *subtitle_language = NULL; |
27ad7d3a | 171 | static int subtitle_codec_tag = 0; |
85f07f22 | 172 | |
17c88cb0 MN |
173 | static float mux_preload= 0.5; |
174 | static float mux_max_delay= 0.7; | |
2db3c638 | 175 | |
fc7ad2af | 176 | static int64_t recording_time = INT64_MAX; |
8831db5c | 177 | static int64_t start_time = 0; |
4568325a | 178 | static int64_t rec_timestamp = 0; |
a6a92a9a | 179 | static int64_t input_ts_offset = 0; |
85f07f22 | 180 | static int file_overwrite = 0; |
a5926d85 AJ |
181 | static int metadata_count; |
182 | static AVMetadataTag *metadata; | |
5727b222 | 183 | static int do_benchmark = 0; |
a0663ba4 | 184 | static int do_hex_dump = 0; |
254abc2e | 185 | static int do_pkt_dump = 0; |
43f1708f | 186 | static int do_psnr = 0; |
5abdb4b1 | 187 | static int do_pass = 0; |
ad16627f | 188 | static char *pass_logfilename_prefix = NULL; |
1629626f FB |
189 | static int audio_stream_copy = 0; |
190 | static int video_stream_copy = 0; | |
cf7fc795 | 191 | static int subtitle_stream_copy = 0; |
8858816d | 192 | static int video_sync_method= -1; |
986ebcdb | 193 | static int audio_sync_method= 0; |
d4d226a8 | 194 | static float audio_drift_threshold= 0.1; |
72bd8100 | 195 | static int copy_ts= 0; |
76bdac6d | 196 | static int opt_shortest = 0; |
90ad92b3 | 197 | static int video_global_header = 0; |
b60d1379 | 198 | static char *vstats_filename; |
032aa7df | 199 | static FILE *vstats_file; |
50e143c4 | 200 | static int opt_programid = 0; |
50e3477f | 201 | static int copy_initial_nonkeyframes = 0; |
5abdb4b1 | 202 | |
bdfcbbed MK |
203 | static int rate_emu = 0; |
204 | ||
a5df11ab | 205 | static int video_channel = 0; |
df0cecdd | 206 | static char *video_standard; |
79a7c268 | 207 | |
a9aa3467 | 208 | static int audio_volume = 256; |
8aa3ee32 | 209 | |
f2abc559 | 210 | static int exit_on_error = 0; |
d9a916e2 | 211 | static int using_stdin = 0; |
f068206e | 212 | static int verbose = 1; |
9c3d33d6 | 213 | static int thread_count= 1; |
b51469a0 | 214 | static int q_pressed = 0; |
1008ceb3 MN |
215 | static int64_t video_size = 0; |
216 | static int64_t audio_size = 0; | |
217 | static int64_t extra_size = 0; | |
a6a92a9a WG |
218 | static int nb_frames_dup = 0; |
219 | static int nb_frames_drop = 0; | |
6e454c38 | 220 | static int input_sync; |
76bdac6d | 221 | static uint64_t limit_filesize = 0; |
d2845b75 | 222 | static int force_fps = 0; |
d9a916e2 | 223 | |
5b6d5596 | 224 | static int pgmyuv_compatibility_hack=0; |
a8482aab | 225 | static float dts_delta_threshold = 10; |
5b6d5596 | 226 | |
e60da588 | 227 | static unsigned int sws_flags = SWS_BICUBIC; |
18a54b04 | 228 | |
29cc1c23 | 229 | static int64_t timer_start; |
8bbf6db9 | 230 | |
3321cb3f BC |
231 | static uint8_t *audio_buf; |
232 | static uint8_t *audio_out; | |
b8919a30 | 233 | unsigned int allocated_audio_out_size, allocated_audio_buf_size; |
3321cb3f BC |
234 | |
235 | static short *samples; | |
236 | ||
748c2fca MN |
237 | static AVBitStreamFilterContext *video_bitstream_filters=NULL; |
238 | static AVBitStreamFilterContext *audio_bitstream_filters=NULL; | |
e1cc8339 | 239 | static AVBitStreamFilterContext *subtitle_bitstream_filters=NULL; |
748c2fca | 240 | static AVBitStreamFilterContext *bitstream_filters[MAX_FILES][MAX_STREAMS]; |
5b6d5596 | 241 | |
ad16627f | 242 | #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass" |
85f07f22 | 243 | |
b4a3389e WG |
244 | struct AVInputStream; |
245 | ||
85f07f22 FB |
246 | typedef struct AVOutputStream { |
247 | int file_index; /* file index */ | |
248 | int index; /* stream index in the output file */ | |
249 | int source_index; /* AVInputStream index */ | |
250 | AVStream *st; /* stream in the output file */ | |
ec5517d5 FB |
251 | int encoding_needed; /* true if encoding needed for this stream */ |
252 | int frame_number; | |
253 | /* input pts and corresponding output pts | |
254 | for A/V sync */ | |
b4a3389e WG |
255 | //double sync_ipts; /* dts from the AVPacket of the demuxer in second units */ |
256 | struct AVInputStream *sync_ist; /* input stream to sync against */ | |
e928649b | 257 | int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ //FIXME look at frame_number |
85f07f22 | 258 | /* video only */ |
07d0cdfc | 259 | int video_resample; |
a4d36c11 | 260 | AVFrame pict_tmp; /* temporary image for resampling */ |
18a54b04 LA |
261 | struct SwsContext *img_resample_ctx; /* for image resampling */ |
262 | int resample_height; | |
352666c1 | 263 | int resample_width; |
01a3c821 | 264 | int resample_pix_fmt; |
34b10a57 | 265 | |
352666c1 EB |
266 | /* full frame size of first frame */ |
267 | int original_height; | |
268 | int original_width; | |
269 | ||
270 | /* cropping area sizes */ | |
07d0cdfc | 271 | int video_crop; |
352666c1 EB |
272 | int topBand; |
273 | int bottomBand; | |
34b10a57 | 274 | int leftBand; |
352666c1 EB |
275 | int rightBand; |
276 | ||
277 | /* cropping area of first frame */ | |
278 | int original_topBand; | |
279 | int original_bottomBand; | |
280 | int original_leftBand; | |
281 | int original_rightBand; | |
115329f1 | 282 | |
85f07f22 FB |
283 | /* audio only */ |
284 | int audio_resample; | |
285 | ReSampleContext *resample; /* for audio resampling */ | |
a79db0f7 PR |
286 | int reformat_pair; |
287 | AVAudioConvert *reformat_ctx; | |
41dd680d | 288 | AVFifoBuffer *fifo; /* for compression: one audio fifo per codec */ |
5abdb4b1 | 289 | FILE *logfile; |
85f07f22 FB |
290 | } AVOutputStream; |
291 | ||
292 | typedef struct AVInputStream { | |
293 | int file_index; | |
294 | int index; | |
295 | AVStream *st; | |
296 | int discard; /* true if stream data should be discarded */ | |
297 | int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */ | |
0c1a9eda | 298 | int64_t sample_index; /* current sample */ |
bdfcbbed MK |
299 | |
300 | int64_t start; /* time when read started */ | |
254abc2e FB |
301 | int64_t next_pts; /* synthetic pts for cases where pkt.pts |
302 | is not defined */ | |
e7d0374f | 303 | int64_t pts; /* current pts */ |
ff4905a5 | 304 | int is_start; /* is 1 at the start and after a discontinuity */ |
3ff0daf0 | 305 | int showed_multi_packet_warning; |
55a7e946 | 306 | int is_past_recording_time; |
46847a33 MN |
307 | #if CONFIG_AVFILTER |
308 | AVFilterContext *out_video_filter; | |
309 | AVFilterContext *input_video_filter; | |
310 | AVFrame *filter_frame; | |
311 | int has_filter_frame; | |
312 | AVFilterPicRef *picref; | |
313 | #endif | |
85f07f22 FB |
314 | } AVInputStream; |
315 | ||
316 | typedef struct AVInputFile { | |
317 | int eof_reached; /* true if eof reached */ | |
318 | int ist_index; /* index of first stream in ist_table */ | |
319 | int buffer_size; /* current total buffer size */ | |
79fdaa4c | 320 | int nb_streams; /* nb streams we are aware of */ |
85f07f22 FB |
321 | } AVInputFile; |
322 | ||
b250f9c6 | 323 | #if HAVE_TERMIOS_H |
bdc4796f | 324 | |
85f07f22 FB |
325 | /* init terminal so that we can grab keys */ |
326 | static struct termios oldtty; | |
64f6e357 | 327 | #endif |
85f07f22 | 328 | |
46847a33 MN |
329 | #if CONFIG_AVFILTER |
330 | typedef struct { | |
331 | int pix_fmt; | |
332 | } FilterOutPriv; | |
333 | ||
334 | ||
335 | static int output_init(AVFilterContext *ctx, const char *args, void *opaque) | |
336 | { | |
337 | FilterOutPriv *priv = ctx->priv; | |
338 | ||
339 | if(!opaque) return -1; | |
340 | ||
341 | priv->pix_fmt = *((int *)opaque); | |
342 | ||
343 | return 0; | |
344 | } | |
345 | ||
346 | static void output_end_frame(AVFilterLink *link) | |
347 | { | |
348 | } | |
349 | ||
350 | static int output_query_formats(AVFilterContext *ctx) | |
351 | { | |
352 | FilterOutPriv *priv = ctx->priv; | |
353 | enum PixelFormat pix_fmts[] = { priv->pix_fmt, PIX_FMT_NONE }; | |
354 | ||
355 | avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts)); | |
356 | return 0; | |
357 | } | |
358 | ||
359 | static int get_filtered_video_pic(AVFilterContext *ctx, | |
360 | AVFilterPicRef **picref, AVFrame *pic2, | |
361 | uint64_t *pts) | |
362 | { | |
363 | AVFilterPicRef *pic; | |
364 | ||
365 | if(avfilter_request_frame(ctx->inputs[0])) | |
366 | return -1; | |
367 | if(!(pic = ctx->inputs[0]->cur_pic)) | |
368 | return -1; | |
369 | *picref = pic; | |
370 | ctx->inputs[0]->cur_pic = NULL; | |
371 | ||
372 | *pts = pic->pts; | |
373 | ||
374 | memcpy(pic2->data, pic->data, sizeof(pic->data)); | |
375 | memcpy(pic2->linesize, pic->linesize, sizeof(pic->linesize)); | |
bdab692f MN |
376 | pic2->interlaced_frame = pic->interlaced; |
377 | pic2->top_field_first = pic->top_field_first; | |
46847a33 MN |
378 | |
379 | return 1; | |
380 | } | |
381 | ||
382 | static AVFilter output_filter = | |
383 | { | |
384 | .name = "ffmpeg_output", | |
385 | ||
386 | .priv_size = sizeof(FilterOutPriv), | |
387 | .init = output_init, | |
388 | ||
389 | .query_formats = output_query_formats, | |
390 | ||
391 | .inputs = (AVFilterPad[]) {{ .name = "default", | |
392 | .type = AVMEDIA_TYPE_VIDEO, | |
393 | .end_frame = output_end_frame, | |
394 | .min_perms = AV_PERM_READ, }, | |
395 | { .name = NULL }}, | |
396 | .outputs = (AVFilterPad[]) {{ .name = NULL }}, | |
397 | }; | |
398 | ||
399 | static int configure_filters(AVInputStream *ist, AVOutputStream *ost) | |
400 | { | |
401 | AVFilterContext *curr_filter; | |
402 | /** filter graph containing all filters including input & output */ | |
403 | AVCodecContext *codec = ost->st->codec; | |
404 | AVCodecContext *icodec = ist->st->codec; | |
405 | char args[255]; | |
406 | ||
407 | filt_graph_all = av_mallocz(sizeof(AVFilterGraph)); | |
408 | ||
409 | if(!(ist->input_video_filter = avfilter_open(avfilter_get_by_name("buffer"), "src"))) | |
410 | return -1; | |
411 | if(!(ist->out_video_filter = avfilter_open(&output_filter, "out"))) | |
412 | return -1; | |
413 | ||
414 | snprintf(args, 255, "%d:%d:%d", ist->st->codec->width, | |
415 | ist->st->codec->height, ist->st->codec->pix_fmt); | |
416 | if(avfilter_init_filter(ist->input_video_filter, args, NULL)) | |
417 | return -1; | |
418 | if(avfilter_init_filter(ist->out_video_filter, NULL, &codec->pix_fmt)) | |
419 | return -1; | |
420 | ||
421 | /* add input and output filters to the overall graph */ | |
422 | avfilter_graph_add_filter(filt_graph_all, ist->input_video_filter); | |
423 | avfilter_graph_add_filter(filt_graph_all, ist->out_video_filter); | |
424 | ||
425 | curr_filter = ist->input_video_filter; | |
426 | ||
427 | if(ost->video_crop) { | |
428 | char crop_args[255]; | |
429 | AVFilterContext *filt_crop; | |
430 | snprintf(crop_args, 255, "%d:%d:%d:%d", ost->leftBand, ost->topBand, | |
0c22311b MN |
431 | codec->width, |
432 | codec->height); | |
46847a33 MN |
433 | filt_crop = avfilter_open(avfilter_get_by_name("crop"), NULL); |
434 | if (!filt_crop) | |
435 | return -1; | |
436 | if (avfilter_init_filter(filt_crop, crop_args, NULL)) | |
437 | return -1; | |
438 | if (avfilter_link(curr_filter, 0, filt_crop, 0)) | |
439 | return -1; | |
440 | curr_filter = filt_crop; | |
441 | avfilter_graph_add_filter(filt_graph_all, curr_filter); | |
442 | } | |
443 | ||
444 | if((codec->width != | |
0c22311b MN |
445 | icodec->width - (frame_leftBand + frame_rightBand)) || |
446 | (codec->height != icodec->height - (frame_topBand + frame_bottomBand))) { | |
46847a33 MN |
447 | char scale_args[255]; |
448 | AVFilterContext *filt_scale; | |
449 | snprintf(scale_args, 255, "%d:%d:flags=0x%X", | |
0c22311b MN |
450 | codec->width, |
451 | codec->height, | |
46847a33 MN |
452 | (int)av_get_int(sws_opts, "sws_flags", NULL)); |
453 | filt_scale = avfilter_open(avfilter_get_by_name("scale"), NULL); | |
454 | if (!filt_scale) | |
455 | return -1; | |
456 | if (avfilter_init_filter(filt_scale, scale_args, NULL)) | |
457 | return -1; | |
458 | if (avfilter_link(curr_filter, 0, filt_scale, 0)) | |
459 | return -1; | |
460 | curr_filter = filt_scale; | |
461 | avfilter_graph_add_filter(filt_graph_all, curr_filter); | |
462 | } | |
463 | ||
464 | if(vfilters) { | |
465 | AVFilterInOut *outputs = av_malloc(sizeof(AVFilterInOut)); | |
466 | AVFilterInOut *inputs = av_malloc(sizeof(AVFilterInOut)); | |
467 | ||
468 | outputs->name = av_strdup("in"); | |
469 | outputs->filter = curr_filter; | |
470 | outputs->pad_idx = 0; | |
471 | outputs->next = NULL; | |
472 | ||
473 | inputs->name = av_strdup("out"); | |
474 | inputs->filter = ist->out_video_filter; | |
475 | inputs->pad_idx = 0; | |
476 | inputs->next = NULL; | |
477 | ||
478 | if (avfilter_graph_parse(filt_graph_all, vfilters, inputs, outputs, NULL) < 0) | |
479 | return -1; | |
480 | av_freep(&vfilters); | |
481 | } else { | |
482 | if(avfilter_link(curr_filter, 0, ist->out_video_filter, 0) < 0) | |
483 | return -1; | |
484 | } | |
485 | ||
486 | { | |
487 | char scale_sws_opts[128]; | |
488 | snprintf(scale_sws_opts, sizeof(scale_sws_opts), "flags=0x%X", (int)av_get_int(sws_opts, "sws_flags", NULL)); | |
489 | filt_graph_all->scale_sws_opts = av_strdup(scale_sws_opts); | |
490 | } | |
491 | ||
492 | /* configure all the filter links */ | |
493 | if(avfilter_graph_check_validity(filt_graph_all, NULL)) | |
494 | return -1; | |
495 | if(avfilter_graph_config_formats(filt_graph_all, NULL)) | |
496 | return -1; | |
497 | if(avfilter_graph_config_links(filt_graph_all, NULL)) | |
498 | return -1; | |
499 | ||
500 | codec->width = ist->out_video_filter->inputs[0]->w; | |
501 | codec->height = ist->out_video_filter->inputs[0]->h; | |
502 | ||
503 | return 0; | |
504 | } | |
505 | #endif /* CONFIG_AVFILTER */ | |
506 | ||
85f07f22 FB |
507 | static void term_exit(void) |
508 | { | |
64f6e357 | 509 | #if HAVE_TERMIOS_H |
85f07f22 | 510 | tcsetattr (0, TCSANOW, &oldtty); |
9a9509e6 | 511 | #endif |
64f6e357 | 512 | } |
85f07f22 | 513 | |
e9a832e5 | 514 | static volatile int received_sigterm = 0; |
9680a722 RP |
515 | |
516 | static void | |
517 | sigterm_handler(int sig) | |
518 | { | |
519 | received_sigterm = sig; | |
520 | term_exit(); | |
521 | } | |
522 | ||
85f07f22 FB |
523 | static void term_init(void) |
524 | { | |
b250f9c6 | 525 | #if HAVE_TERMIOS_H |
85f07f22 FB |
526 | struct termios tty; |
527 | ||
528 | tcgetattr (0, &tty); | |
529 | oldtty = tty; | |
9a9509e6 | 530 | atexit(term_exit); |
85f07f22 FB |
531 | |
532 | tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP | |
533 | |INLCR|IGNCR|ICRNL|IXON); | |
534 | tty.c_oflag |= OPOST; | |
535 | tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); | |
536 | tty.c_cflag &= ~(CSIZE|PARENB); | |
537 | tty.c_cflag |= CS8; | |
538 | tty.c_cc[VMIN] = 1; | |
539 | tty.c_cc[VTIME] = 0; | |
115329f1 | 540 | |
85f07f22 | 541 | tcsetattr (0, TCSANOW, &tty); |
d86b83f8 RP |
542 | signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */ |
543 | #endif | |
85f07f22 | 544 | |
9680a722 | 545 | signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */ |
9680a722 | 546 | signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */ |
ffcc6e24 MR |
547 | #ifdef SIGXCPU |
548 | signal(SIGXCPU, sigterm_handler); | |
549 | #endif | |
550 | ||
b250f9c6 | 551 | #if CONFIG_BEOS_NETSERVER |
9ddd71fc FR |
552 | fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK); |
553 | #endif | |
85f07f22 FB |
554 | } |
555 | ||
556 | /* read a key without blocking */ | |
557 | static int read_key(void) | |
558 | { | |
b250f9c6 | 559 | #if HAVE_TERMIOS_H |
9ddd71fc | 560 | int n = 1; |
85f07f22 | 561 | unsigned char ch; |
b250f9c6 | 562 | #if !CONFIG_BEOS_NETSERVER |
9ddd71fc | 563 | struct timeval tv; |
85f07f22 FB |
564 | fd_set rfds; |
565 | ||
566 | FD_ZERO(&rfds); | |
567 | FD_SET(0, &rfds); | |
568 | tv.tv_sec = 0; | |
569 | tv.tv_usec = 0; | |
570 | n = select(1, &rfds, NULL, NULL, &tv); | |
9ddd71fc | 571 | #endif |
85f07f22 | 572 | if (n > 0) { |
cb09b2ed PG |
573 | n = read(0, &ch, 1); |
574 | if (n == 1) | |
85f07f22 | 575 | return ch; |
cb09b2ed PG |
576 | |
577 | return n; | |
85f07f22 | 578 | } |
b250f9c6 | 579 | #elif HAVE_CONIO_H |
4b54c6d0 RP |
580 | if(kbhit()) |
581 | return(getch()); | |
d86b83f8 | 582 | #endif |
85f07f22 FB |
583 | return -1; |
584 | } | |
585 | ||
b51469a0 LS |
586 | static int decode_interrupt_cb(void) |
587 | { | |
588 | return q_pressed || (q_pressed = read_key() == 'q'); | |
589 | } | |
590 | ||
296df4e7 | 591 | static int av_exit(int ret) |
e5295c0d RP |
592 | { |
593 | int i; | |
594 | ||
595 | /* close files */ | |
596 | for(i=0;i<nb_output_files;i++) { | |
597 | /* maybe av_close_output_file ??? */ | |
598 | AVFormatContext *s = output_files[i]; | |
599 | int j; | |
8767060c | 600 | if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb) |
e5295c0d RP |
601 | url_fclose(s->pb); |
602 | for(j=0;j<s->nb_streams;j++) { | |
094d9df7 | 603 | av_metadata_free(&s->streams[j]->metadata); |
e5295c0d RP |
604 | av_free(s->streams[j]->codec); |
605 | av_free(s->streams[j]); | |
606 | } | |
094d9df7 AJ |
607 | for(j=0;j<s->nb_programs;j++) { |
608 | av_metadata_free(&s->programs[j]->metadata); | |
609 | } | |
610 | for(j=0;j<s->nb_chapters;j++) { | |
611 | av_metadata_free(&s->chapters[j]->metadata); | |
612 | } | |
613 | av_metadata_free(&s->metadata); | |
e5295c0d RP |
614 | av_free(s); |
615 | } | |
616 | for(i=0;i<nb_input_files;i++) | |
617 | av_close_input_file(input_files[i]); | |
618 | ||
e5295c0d RP |
619 | av_free(intra_matrix); |
620 | av_free(inter_matrix); | |
621 | ||
622 | if (vstats_file) | |
623 | fclose(vstats_file); | |
624 | av_free(vstats_filename); | |
625 | ||
626 | av_free(opt_names); | |
627 | ||
628 | av_free(video_codec_name); | |
629 | av_free(audio_codec_name); | |
630 | av_free(subtitle_codec_name); | |
631 | ||
632 | av_free(video_standard); | |
633 | ||
b250f9c6 | 634 | #if CONFIG_POWERPC_PERF |
9686df2b | 635 | void powerpc_display_perf_report(void); |
e5295c0d RP |
636 | powerpc_display_perf_report(); |
637 | #endif /* CONFIG_POWERPC_PERF */ | |
638 | ||
72415b2a | 639 | for (i=0;i<AVMEDIA_TYPE_NB;i++) |
5973490a BC |
640 | av_free(avcodec_opts[i]); |
641 | av_free(avformat_opts); | |
642 | av_free(sws_opts); | |
3321cb3f BC |
643 | av_free(audio_buf); |
644 | av_free(audio_out); | |
b8919a30 | 645 | allocated_audio_buf_size= allocated_audio_out_size= 0; |
3321cb3f | 646 | av_free(samples); |
5973490a | 647 | |
46847a33 MN |
648 | #if CONFIG_AVFILTER |
649 | avfilter_uninit(); | |
650 | #endif | |
651 | ||
e5295c0d RP |
652 | if (received_sigterm) { |
653 | fprintf(stderr, | |
654 | "Received signal %d: terminating.\n", | |
655 | (int) received_sigterm); | |
656 | exit (255); | |
657 | } | |
658 | ||
296df4e7 RP |
659 | exit(ret); /* not all OS-es handle main() return value */ |
660 | return ret; | |
e5295c0d RP |
661 | } |
662 | ||
aa1de0d9 RB |
663 | static void choose_sample_fmt(AVStream *st, AVCodec *codec) |
664 | { | |
665 | if(codec && codec->sample_fmts){ | |
666 | const enum SampleFormat *p= codec->sample_fmts; | |
667 | for(; *p!=-1; p++){ | |
668 | if(*p == st->codec->sample_fmt) | |
669 | break; | |
670 | } | |
671 | if(*p == -1) | |
672 | st->codec->sample_fmt = codec->sample_fmts[0]; | |
673 | } | |
674 | } | |
675 | ||
10d0f5e0 MN |
676 | static void choose_sample_rate(AVStream *st, AVCodec *codec) |
677 | { | |
678 | if(codec && codec->supported_samplerates){ | |
679 | const int *p= codec->supported_samplerates; | |
680 | int best; | |
681 | int best_dist=INT_MAX; | |
682 | for(; *p; p++){ | |
683 | int dist= abs(st->codec->sample_rate - *p); | |
684 | if(dist < best_dist){ | |
685 | best_dist= dist; | |
686 | best= *p; | |
687 | } | |
688 | } | |
ff866063 MN |
689 | if(best_dist){ |
690 | av_log(st->codec, AV_LOG_WARNING, "Requested sampling rate unsupported using closest supported (%d)\n", best); | |
691 | } | |
10d0f5e0 MN |
692 | st->codec->sample_rate= best; |
693 | } | |
694 | } | |
695 | ||
aa1de0d9 RB |
696 | static void choose_pixel_fmt(AVStream *st, AVCodec *codec) |
697 | { | |
698 | if(codec && codec->pix_fmts){ | |
699 | const enum PixelFormat *p= codec->pix_fmts; | |
700 | for(; *p!=-1; p++){ | |
701 | if(*p == st->codec->pix_fmt) | |
702 | break; | |
703 | } | |
704 | if(*p == -1 | |
705 | && !( st->codec->codec_id==CODEC_ID_MJPEG | |
706 | && st->codec->strict_std_compliance <= FF_COMPLIANCE_INOFFICIAL | |
707 | && ( st->codec->pix_fmt == PIX_FMT_YUV420P | |
708 | || st->codec->pix_fmt == PIX_FMT_YUV422P))) | |
709 | st->codec->pix_fmt = codec->pix_fmts[0]; | |
710 | } | |
711 | } | |
712 | ||
b29f97d1 | 713 | static int read_ffserver_streams(AVFormatContext *s, const char *filename) |
85f07f22 | 714 | { |
79fdaa4c | 715 | int i, err; |
85f07f22 | 716 | AVFormatContext *ic; |
3438d82d | 717 | int nopts = 0; |
85f07f22 | 718 | |
79fdaa4c FB |
719 | err = av_open_input_file(&ic, filename, NULL, FFM_PACKET_SIZE, NULL); |
720 | if (err < 0) | |
721 | return err; | |
85f07f22 FB |
722 | /* copy stream format */ |
723 | s->nb_streams = ic->nb_streams; | |
724 | for(i=0;i<ic->nb_streams;i++) { | |
725 | AVStream *st; | |
d9521cb1 | 726 | AVCodec *codec; |
1e491e29 | 727 | |
f37f8d4c | 728 | // FIXME: a more elegant solution is needed |
e1031171 | 729 | st = av_mallocz(sizeof(AVStream)); |
85f07f22 | 730 | memcpy(st, ic->streams[i], sizeof(AVStream)); |
f37f8d4c | 731 | st->codec = avcodec_alloc_context(); |
7ef61879 RP |
732 | if (!st->codec) { |
733 | print_error(filename, AVERROR(ENOMEM)); | |
734 | av_exit(1); | |
735 | } | |
d9521cb1 | 736 | avcodec_copy_context(st->codec, ic->streams[i]->codec); |
85f07f22 | 737 | s->streams[i] = st; |
837d248d | 738 | |
d9521cb1 RB |
739 | codec = avcodec_find_encoder(st->codec->codec_id); |
740 | if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) { | |
741 | if (audio_stream_copy) { | |
742 | st->stream_copy = 1; | |
743 | } else | |
744 | choose_sample_fmt(st, codec); | |
745 | } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { | |
746 | if (video_stream_copy) { | |
747 | st->stream_copy = 1; | |
748 | } else | |
749 | choose_pixel_fmt(st, codec); | |
750 | } | |
837d248d | 751 | |
dbedf2aa BC |
752 | if(!st->codec->thread_count) |
753 | st->codec->thread_count = 1; | |
754 | if(st->codec->thread_count>1) | |
755 | avcodec_thread_init(st->codec, st->codec->thread_count); | |
756 | ||
3438d82d BC |
757 | if(st->codec->flags & CODEC_FLAG_BITEXACT) |
758 | nopts = 1; | |
85f07f22 FB |
759 | } |
760 | ||
3438d82d BC |
761 | if (!nopts) |
762 | s->timestamp = av_gettime(); | |
763 | ||
85f07f22 FB |
764 | av_close_input_file(ic); |
765 | return 0; | |
766 | } | |
767 | ||
b4a3389e WG |
768 | static double |
769 | get_sync_ipts(const AVOutputStream *ost) | |
770 | { | |
771 | const AVInputStream *ist = ost->sync_ist; | |
fec401f7 | 772 | return (double)(ist->pts - start_time)/AV_TIME_BASE; |
b4a3389e WG |
773 | } |
774 | ||
748c2fca | 775 | static void write_frame(AVFormatContext *s, AVPacket *pkt, AVCodecContext *avctx, AVBitStreamFilterContext *bsfc){ |
0ac07031 MN |
776 | int ret; |
777 | ||
748c2fca MN |
778 | while(bsfc){ |
779 | AVPacket new_pkt= *pkt; | |
780 | int a= av_bitstream_filter_filter(bsfc, avctx, NULL, | |
781 | &new_pkt.data, &new_pkt.size, | |
782 | pkt->data, pkt->size, | |
cc947f04 | 783 | pkt->flags & AV_PKT_FLAG_KEY); |
7055cdac | 784 | if(a>0){ |
748c2fca MN |
785 | av_free_packet(pkt); |
786 | new_pkt.destruct= av_destruct_packet; | |
7055cdac | 787 | } else if(a<0){ |
1f8e32cd DB |
788 | fprintf(stderr, "%s failed for stream %d, codec %s", |
789 | bsfc->filter->name, pkt->stream_index, | |
790 | avctx->codec ? avctx->codec->name : "copy"); | |
7055cdac | 791 | print_error("", a); |
f2abc559 BC |
792 | if (exit_on_error) |
793 | av_exit(1); | |
748c2fca MN |
794 | } |
795 | *pkt= new_pkt; | |
796 | ||
797 | bsfc= bsfc->next; | |
798 | } | |
799 | ||
0ac07031 MN |
800 | ret= av_interleaved_write_frame(s, pkt); |
801 | if(ret < 0){ | |
802 | print_error("av_interleaved_write_frame()", ret); | |
296df4e7 | 803 | av_exit(1); |
0ac07031 | 804 | } |
748c2fca MN |
805 | } |
806 | ||
817b23ff | 807 | #define MAX_AUDIO_PACKET_SIZE (128 * 1024) |
85f07f22 | 808 | |
115329f1 DB |
809 | static void do_audio_out(AVFormatContext *s, |
810 | AVOutputStream *ost, | |
85f07f22 FB |
811 | AVInputStream *ist, |
812 | unsigned char *buf, int size) | |
813 | { | |
0c1a9eda | 814 | uint8_t *buftmp; |
15bfe412 | 815 | int64_t audio_out_size, audio_buf_size; |
7a086a85 | 816 | int64_t allocated_for_size= size; |
d66c7abc | 817 | |
85f07f22 | 818 | int size_out, frame_bytes, ret; |
01f4895c | 819 | AVCodecContext *enc= ost->st->codec; |
2886f311 | 820 | AVCodecContext *dec= ist->st->codec; |
287ba997 PR |
821 | int osize= av_get_bits_per_sample_format(enc->sample_fmt)/8; |
822 | int isize= av_get_bits_per_sample_format(dec->sample_fmt)/8; | |
15bfe412 MN |
823 | const int coded_bps = av_get_bits_per_sample(enc->codec->id); |
824 | ||
7a086a85 MN |
825 | need_realloc: |
826 | audio_buf_size= (allocated_for_size + isize*dec->channels - 1) / (isize*dec->channels); | |
15bfe412 | 827 | audio_buf_size= (audio_buf_size*enc->sample_rate + dec->sample_rate) / dec->sample_rate; |
8b484d0f | 828 | audio_buf_size= audio_buf_size*2 + 10000; //safety factors for the deprecated resampling API |
15bfe412 MN |
829 | audio_buf_size*= osize*enc->channels; |
830 | ||
831 | audio_out_size= FFMAX(audio_buf_size, enc->frame_size * osize * enc->channels); | |
832 | if(coded_bps > 8*osize) | |
833 | audio_out_size= audio_out_size * coded_bps / (8*osize); | |
834 | audio_out_size += FF_MIN_BUFFER_SIZE; | |
835 | ||
836 | if(audio_out_size > INT_MAX || audio_buf_size > INT_MAX){ | |
837 | fprintf(stderr, "Buffer sizes too large\n"); | |
838 | av_exit(1); | |
839 | } | |
85f07f22 | 840 | |
b8919a30 MN |
841 | av_fast_malloc(&audio_buf, &allocated_audio_buf_size, audio_buf_size); |
842 | av_fast_malloc(&audio_out, &allocated_audio_out_size, audio_out_size); | |
e185a2f6 MN |
843 | if (!audio_buf || !audio_out){ |
844 | fprintf(stderr, "Out of memory in do_audio_out\n"); | |
845 | av_exit(1); | |
846 | } | |
d66c7abc | 847 | |
2886f311 AÖ |
848 | if (enc->channels != dec->channels) |
849 | ost->audio_resample = 1; | |
850 | ||
851 | if (ost->audio_resample && !ost->resample) { | |
d1e3c6fd BC |
852 | if (dec->sample_fmt != SAMPLE_FMT_S16) |
853 | fprintf(stderr, "Warning, using s16 intermediate sample format for resampling\n"); | |
854 | ost->resample = av_audio_resample_init(enc->channels, dec->channels, | |
855 | enc->sample_rate, dec->sample_rate, | |
856 | enc->sample_fmt, dec->sample_fmt, | |
857 | 16, 10, 0, 0.8); | |
2886f311 AÖ |
858 | if (!ost->resample) { |
859 | fprintf(stderr, "Can not resample %d channels @ %d Hz to %d channels @ %d Hz\n", | |
860 | dec->channels, dec->sample_rate, | |
861 | enc->channels, enc->sample_rate); | |
296df4e7 | 862 | av_exit(1); |
2886f311 AÖ |
863 | } |
864 | } | |
865 | ||
a79db0f7 | 866 | #define MAKE_SFMT_PAIR(a,b) ((a)+SAMPLE_FMT_NB*(b)) |
d1e3c6fd | 867 | if (!ost->audio_resample && dec->sample_fmt!=enc->sample_fmt && |
a79db0f7 | 868 | MAKE_SFMT_PAIR(enc->sample_fmt,dec->sample_fmt)!=ost->reformat_pair) { |
a79db0f7 PR |
869 | if (ost->reformat_ctx) |
870 | av_audio_convert_free(ost->reformat_ctx); | |
871 | ost->reformat_ctx = av_audio_convert_alloc(enc->sample_fmt, 1, | |
872 | dec->sample_fmt, 1, NULL, 0); | |
873 | if (!ost->reformat_ctx) { | |
874 | fprintf(stderr, "Cannot convert %s sample format to %s sample format\n", | |
875 | avcodec_get_sample_fmt_name(dec->sample_fmt), | |
876 | avcodec_get_sample_fmt_name(enc->sample_fmt)); | |
877 | av_exit(1); | |
878 | } | |
879 | ost->reformat_pair=MAKE_SFMT_PAIR(enc->sample_fmt,dec->sample_fmt); | |
880 | } | |
881 | ||
986ebcdb | 882 | if(audio_sync_method){ |
115329f1 | 883 | double delta = get_sync_ipts(ost) * enc->sample_rate - ost->sync_opts |
41dd680d | 884 | - av_fifo_size(ost->fifo)/(ost->st->codec->channels * 2); |
01f4895c MN |
885 | double idelta= delta*ist->st->codec->sample_rate / enc->sample_rate; |
886 | int byte_delta= ((int)idelta)*2*ist->st->codec->channels; | |
ff4905a5 | 887 | |
986ebcdb MN |
888 | //FIXME resample delay |
889 | if(fabs(delta) > 50){ | |
d4d226a8 | 890 | if(ist->is_start || fabs(delta) > audio_drift_threshold*enc->sample_rate){ |
ff4905a5 | 891 | if(byte_delta < 0){ |
f41dd5aa | 892 | byte_delta= FFMAX(byte_delta, -size); |
ff4905a5 MN |
893 | size += byte_delta; |
894 | buf -= byte_delta; | |
895 | if(verbose > 2) | |
896 | fprintf(stderr, "discarding %d audio samples\n", (int)-delta); | |
897 | if(!size) | |
898 | return; | |
899 | ist->is_start=0; | |
900 | }else{ | |
901 | static uint8_t *input_tmp= NULL; | |
902 | input_tmp= av_realloc(input_tmp, byte_delta + size); | |
903 | ||
7a086a85 MN |
904 | if(byte_delta > allocated_for_size - size){ |
905 | allocated_for_size= byte_delta + (int64_t)size; | |
906 | goto need_realloc; | |
907 | } | |
908 | ist->is_start=0; | |
ff4905a5 MN |
909 | |
910 | memset(input_tmp, 0, byte_delta); | |
911 | memcpy(input_tmp + byte_delta, buf, size); | |
912 | buf= input_tmp; | |
913 | size += byte_delta; | |
914 | if(verbose > 2) | |
915 | fprintf(stderr, "adding %d audio samples of silence\n", (int)delta); | |
916 | } | |
917 | }else if(audio_sync_method>1){ | |
f66e4f5f | 918 | int comp= av_clip(delta, -audio_sync_method, audio_sync_method); |
ff4905a5 MN |
919 | assert(ost->audio_resample); |
920 | if(verbose > 2) | |
921 | fprintf(stderr, "compensating audio timestamp drift:%f compensation:%d in:%d\n", delta, comp, enc->sample_rate); | |
41dd680d | 922 | // fprintf(stderr, "drift:%f len:%d opts:%"PRId64" ipts:%"PRId64" fifo:%d\n", delta, -1, ost->sync_opts, (int64_t)(get_sync_ipts(ost) * enc->sample_rate), av_fifo_size(ost->fifo)/(ost->st->codec->channels * 2)); |
ff4905a5 MN |
923 | av_resample_compensate(*(struct AVResampleContext**)ost->resample, comp, enc->sample_rate); |
924 | } | |
115329f1 | 925 | } |
986ebcdb | 926 | }else |
b4a3389e | 927 | ost->sync_opts= lrintf(get_sync_ipts(ost) * enc->sample_rate) |
41dd680d | 928 | - av_fifo_size(ost->fifo)/(ost->st->codec->channels * 2); //FIXME wrong |
85f07f22 FB |
929 | |
930 | if (ost->audio_resample) { | |
931 | buftmp = audio_buf; | |
115329f1 | 932 | size_out = audio_resample(ost->resample, |
85f07f22 | 933 | (short *)buftmp, (short *)buf, |
287ba997 PR |
934 | size / (ist->st->codec->channels * isize)); |
935 | size_out = size_out * enc->channels * osize; | |
85f07f22 FB |
936 | } else { |
937 | buftmp = buf; | |
938 | size_out = size; | |
939 | } | |
940 | ||
d1e3c6fd | 941 | if (!ost->audio_resample && dec->sample_fmt!=enc->sample_fmt) { |
a79db0f7 | 942 | const void *ibuf[6]= {buftmp}; |
80f47250 | 943 | void *obuf[6]= {audio_buf}; |
287ba997 PR |
944 | int istride[6]= {isize}; |
945 | int ostride[6]= {osize}; | |
a79db0f7 PR |
946 | int len= size_out/istride[0]; |
947 | if (av_audio_convert(ost->reformat_ctx, obuf, ostride, ibuf, istride, len)<0) { | |
948 | printf("av_audio_convert() failed\n"); | |
f2abc559 BC |
949 | if (exit_on_error) |
950 | av_exit(1); | |
a79db0f7 PR |
951 | return; |
952 | } | |
80f47250 | 953 | buftmp = audio_buf; |
287ba997 | 954 | size_out = len*osize; |
a79db0f7 PR |
955 | } |
956 | ||
85f07f22 | 957 | /* now encode as many frames as possible */ |
a0663ba4 | 958 | if (enc->frame_size > 1) { |
85f07f22 | 959 | /* output resampled raw samples */ |
41dd680d | 960 | if (av_fifo_realloc2(ost->fifo, av_fifo_size(ost->fifo) + size_out) < 0) { |
745b39d5 SS |
961 | fprintf(stderr, "av_fifo_realloc2() failed\n"); |
962 | av_exit(1); | |
963 | } | |
41dd680d | 964 | av_fifo_generic_write(ost->fifo, buftmp, size_out, NULL); |
85f07f22 | 965 | |
287ba997 | 966 | frame_bytes = enc->frame_size * osize * enc->channels; |
115329f1 | 967 | |
41dd680d | 968 | while (av_fifo_size(ost->fifo) >= frame_bytes) { |
e928649b MN |
969 | AVPacket pkt; |
970 | av_init_packet(&pkt); | |
971 | ||
3898eed8 | 972 | av_fifo_generic_read(ost->fifo, audio_buf, frame_bytes, NULL); |
0871ae1a | 973 | |
5bc440e7 MN |
974 | //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio() |
975 | ||
115329f1 | 976 | ret = avcodec_encode_audio(enc, audio_out, audio_out_size, |
a0663ba4 | 977 | (short *)audio_buf); |
528271ff MN |
978 | if (ret < 0) { |
979 | fprintf(stderr, "Audio encoding failed\n"); | |
980 | av_exit(1); | |
981 | } | |
1008ceb3 | 982 | audio_size += ret; |
e928649b MN |
983 | pkt.stream_index= ost->index; |
984 | pkt.data= audio_out; | |
985 | pkt.size= ret; | |
e7902f20 | 986 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 987 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
cc947f04 | 988 | pkt.flags |= AV_PKT_FLAG_KEY; |
748c2fca | 989 | write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
115329f1 | 990 | |
986ebcdb | 991 | ost->sync_opts += enc->frame_size; |
85f07f22 FB |
992 | } |
993 | } else { | |
e928649b MN |
994 | AVPacket pkt; |
995 | av_init_packet(&pkt); | |
986ebcdb | 996 | |
287ba997 | 997 | ost->sync_opts += size_out / (osize * enc->channels); |
986ebcdb | 998 | |
a0663ba4 | 999 | /* output a pcm frame */ |
287ba997 PR |
1000 | /* determine the size of the coded buffer */ |
1001 | size_out /= osize; | |
1002 | if (coded_bps) | |
060b8592 | 1003 | size_out = size_out*coded_bps/8; |
287ba997 | 1004 | |
5ee05a62 MN |
1005 | if(size_out > audio_out_size){ |
1006 | fprintf(stderr, "Internal error, buffer size too small\n"); | |
1007 | av_exit(1); | |
1008 | } | |
1009 | ||
5bc440e7 | 1010 | //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio() |
115329f1 | 1011 | ret = avcodec_encode_audio(enc, audio_out, size_out, |
bb270c08 | 1012 | (short *)buftmp); |
528271ff MN |
1013 | if (ret < 0) { |
1014 | fprintf(stderr, "Audio encoding failed\n"); | |
1015 | av_exit(1); | |
1016 | } | |
1008ceb3 | 1017 | audio_size += ret; |
e928649b MN |
1018 | pkt.stream_index= ost->index; |
1019 | pkt.data= audio_out; | |
1020 | pkt.size= ret; | |
e7902f20 | 1021 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 1022 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
cc947f04 | 1023 | pkt.flags |= AV_PKT_FLAG_KEY; |
748c2fca | 1024 | write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
85f07f22 FB |
1025 | } |
1026 | } | |
1027 | ||
10d104e4 PG |
1028 | static void pre_process_video_frame(AVInputStream *ist, AVPicture *picture, void **bufp) |
1029 | { | |
1030 | AVCodecContext *dec; | |
1031 | AVPicture *picture2; | |
1032 | AVPicture picture_tmp; | |
0c1a9eda | 1033 | uint8_t *buf = 0; |
10d104e4 | 1034 | |
01f4895c | 1035 | dec = ist->st->codec; |
10d104e4 PG |
1036 | |
1037 | /* deinterlace : must be done before any resize */ | |
fdf11906 | 1038 | if (do_deinterlace) { |
10d104e4 PG |
1039 | int size; |
1040 | ||
1041 | /* create temporary picture */ | |
1042 | size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height); | |
1043 | buf = av_malloc(size); | |
1044 | if (!buf) | |
1045 | return; | |
115329f1 | 1046 | |
10d104e4 PG |
1047 | picture2 = &picture_tmp; |
1048 | avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height); | |
1049 | ||
9e1cc598 RP |
1050 | if(avpicture_deinterlace(picture2, picture, |
1051 | dec->pix_fmt, dec->width, dec->height) < 0) { | |
1052 | /* if error, do not deinterlace */ | |
1053 | fprintf(stderr, "Deinterlacing failed\n"); | |
1054 | av_free(buf); | |
1055 | buf = NULL; | |
1056 | picture2 = picture; | |
1057 | } | |
10d104e4 PG |
1058 | } else { |
1059 | picture2 = picture; | |
1060 | } | |
1061 | ||
10d104e4 PG |
1062 | if (picture != picture2) |
1063 | *picture = *picture2; | |
1064 | *bufp = buf; | |
1065 | } | |
1066 | ||
ec5517d5 FB |
1067 | /* we begin to correct av delay at this threshold */ |
1068 | #define AV_DELAY_MAX 0.100 | |
85f07f22 | 1069 | |
115329f1 DB |
1070 | static void do_subtitle_out(AVFormatContext *s, |
1071 | AVOutputStream *ost, | |
cf7fc795 FB |
1072 | AVInputStream *ist, |
1073 | AVSubtitle *sub, | |
1074 | int64_t pts) | |
1075 | { | |
1076 | static uint8_t *subtitle_out = NULL; | |
7f4fca03 | 1077 | int subtitle_out_max_size = 1024 * 1024; |
cf7fc795 FB |
1078 | int subtitle_out_size, nb, i; |
1079 | AVCodecContext *enc; | |
1080 | AVPacket pkt; | |
1081 | ||
1082 | if (pts == AV_NOPTS_VALUE) { | |
1083 | fprintf(stderr, "Subtitle packets must have a pts\n"); | |
f2abc559 BC |
1084 | if (exit_on_error) |
1085 | av_exit(1); | |
cf7fc795 FB |
1086 | return; |
1087 | } | |
1088 | ||
01f4895c | 1089 | enc = ost->st->codec; |
cf7fc795 FB |
1090 | |
1091 | if (!subtitle_out) { | |
1092 | subtitle_out = av_malloc(subtitle_out_max_size); | |
1093 | } | |
1094 | ||
1095 | /* Note: DVB subtitle need one packet to draw them and one other | |
1096 | packet to clear them */ | |
1097 | /* XXX: signal it in the codec context ? */ | |
1098 | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) | |
1099 | nb = 2; | |
1100 | else | |
1101 | nb = 1; | |
1102 | ||
1103 | for(i = 0; i < nb; i++) { | |
4bbe788a | 1104 | sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q); |
8b03c014 RD |
1105 | // start_display_time is required to be 0 |
1106 | sub->pts += av_rescale_q(sub->start_display_time, (AVRational){1, 1000}, AV_TIME_BASE_Q); | |
1107 | sub->end_display_time -= sub->start_display_time; | |
1108 | sub->start_display_time = 0; | |
115329f1 | 1109 | subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, |
cf7fc795 | 1110 | subtitle_out_max_size, sub); |
266649a5 RD |
1111 | if (subtitle_out_size < 0) { |
1112 | fprintf(stderr, "Subtitle encoding failed\n"); | |
1113 | av_exit(1); | |
1114 | } | |
115329f1 | 1115 | |
cf7fc795 FB |
1116 | av_init_packet(&pkt); |
1117 | pkt.stream_index = ost->index; | |
1118 | pkt.data = subtitle_out; | |
1119 | pkt.size = subtitle_out_size; | |
8b03c014 | 1120 | pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base); |
cf7fc795 FB |
1121 | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) { |
1122 | /* XXX: the pts correction is handled here. Maybe handling | |
1123 | it in the codec would be better */ | |
1124 | if (i == 0) | |
1125 | pkt.pts += 90 * sub->start_display_time; | |
1126 | else | |
1127 | pkt.pts += 90 * sub->end_display_time; | |
1128 | } | |
748c2fca | 1129 | write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
cf7fc795 FB |
1130 | } |
1131 | } | |
1132 | ||
8a6cb114 | 1133 | static int bit_buffer_size= 1024*256; |
27537106 | 1134 | static uint8_t *bit_buffer= NULL; |
1ff93ffc | 1135 | |
115329f1 DB |
1136 | static void do_video_out(AVFormatContext *s, |
1137 | AVOutputStream *ost, | |
85f07f22 | 1138 | AVInputStream *ist, |
7a0f9d7e | 1139 | AVFrame *in_picture, |
986ebcdb | 1140 | int *frame_size) |
85f07f22 | 1141 | { |
ec5517d5 | 1142 | int nb_frames, i, ret; |
46847a33 | 1143 | #if !CONFIG_AVFILTER |
352666c1 | 1144 | int64_t topBand, bottomBand, leftBand, rightBand; |
46847a33 | 1145 | #endif |
07d0cdfc | 1146 | AVFrame *final_picture, *formatted_picture, *resampling_dst, *padding_src; |
18a54b04 | 1147 | AVFrame picture_crop_temp, picture_pad_temp; |
cfcf0ffd | 1148 | AVCodecContext *enc, *dec; |
47b229db | 1149 | double sync_ipts; |
115329f1 | 1150 | |
a4d36c11 | 1151 | avcodec_get_frame_defaults(&picture_crop_temp); |
07d0cdfc | 1152 | avcodec_get_frame_defaults(&picture_pad_temp); |
a4d36c11 | 1153 | |
01f4895c MN |
1154 | enc = ost->st->codec; |
1155 | dec = ist->st->codec; | |
85f07f22 | 1156 | |
47b229db AS |
1157 | sync_ipts = get_sync_ipts(ost) / av_q2d(enc->time_base); |
1158 | ||
ec5517d5 FB |
1159 | /* by default, we output a single frame */ |
1160 | nb_frames = 1; | |
1161 | ||
204c0f48 PG |
1162 | *frame_size = 0; |
1163 | ||
9ff261a2 | 1164 | if(video_sync_method){ |
d55065a2 | 1165 | double vdelta = sync_ipts - ost->sync_opts; |
e928649b MN |
1166 | //FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c |
1167 | if (vdelta < -1.1) | |
1168 | nb_frames = 0; | |
e6fdc2b1 MN |
1169 | else if (video_sync_method == 2 || (video_sync_method<0 && (s->oformat->flags & AVFMT_VARIABLE_FPS))){ |
1170 | if(vdelta<=-0.6){ | |
1171 | nb_frames=0; | |
1172 | }else if(vdelta>0.6) | |
47b229db | 1173 | ost->sync_opts= lrintf(sync_ipts); |
e6fdc2b1 | 1174 | }else if (vdelta > 1.1) |
70122f29 | 1175 | nb_frames = lrintf(vdelta); |
fc6765d7 | 1176 | //fprintf(stderr, "vdelta:%f, ost->sync_opts:%"PRId64", ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, get_sync_ipts(ost), nb_frames); |
50c3dd32 MN |
1177 | if (nb_frames == 0){ |
1178 | ++nb_frames_drop; | |
1179 | if (verbose>2) | |
1180 | fprintf(stderr, "*** drop!\n"); | |
8300609b | 1181 | }else if (nb_frames > 1) { |
ed30e518 | 1182 | nb_frames_dup += nb_frames - 1; |
50c3dd32 | 1183 | if (verbose>2) |
8300609b | 1184 | fprintf(stderr, "*** %d dup!\n", nb_frames-1); |
50c3dd32 MN |
1185 | } |
1186 | }else | |
47b229db | 1187 | ost->sync_opts= lrintf(sync_ipts); |
445f1b83 | 1188 | |
72415b2a | 1189 | nb_frames= FFMIN(nb_frames, max_frames[AVMEDIA_TYPE_VIDEO] - ost->frame_number); |
115329f1 | 1190 | if (nb_frames <= 0) |
85f07f22 | 1191 | return; |
ce7c56c2 | 1192 | |
46847a33 MN |
1193 | #if CONFIG_AVFILTER |
1194 | formatted_picture = in_picture; | |
1195 | #else | |
07d0cdfc | 1196 | if (ost->video_crop) { |
636d6a4a | 1197 | if (av_picture_crop((AVPicture *)&picture_crop_temp, (AVPicture *)in_picture, dec->pix_fmt, ost->topBand, ost->leftBand) < 0) { |
49a06a4d | 1198 | fprintf(stderr, "error cropping picture\n"); |
f2abc559 BC |
1199 | if (exit_on_error) |
1200 | av_exit(1); | |
4e780252 | 1201 | return; |
07d0cdfc LA |
1202 | } |
1203 | formatted_picture = &picture_crop_temp; | |
18a54b04 LA |
1204 | } else { |
1205 | formatted_picture = in_picture; | |
07d0cdfc | 1206 | } |
46847a33 | 1207 | #endif |
07d0cdfc LA |
1208 | |
1209 | final_picture = formatted_picture; | |
1210 | padding_src = formatted_picture; | |
1211 | resampling_dst = &ost->pict_tmp; | |
07d0cdfc | 1212 | |
b83ccbff MN |
1213 | if( (ost->resample_height != (ist->st->codec->height - (ost->topBand + ost->bottomBand))) |
1214 | || (ost->resample_width != (ist->st->codec->width - (ost->leftBand + ost->rightBand))) | |
1215 | || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) { | |
1216 | ||
1217 | fprintf(stderr,"Input Stream #%d.%d frame size changed to %dx%d, %s\n", ist->file_index, ist->index, ist->st->codec->width, ist->st->codec->height,avcodec_get_pix_fmt_name(ist->st->codec->pix_fmt)); | |
1218 | if(!ost->video_resample) | |
1219 | av_exit(1); | |
1220 | } | |
1221 | ||
46847a33 | 1222 | #if !CONFIG_AVFILTER |
85f07f22 | 1223 | if (ost->video_resample) { |
07d0cdfc | 1224 | padding_src = NULL; |
34b10a57 | 1225 | final_picture = &ost->pict_tmp; |
352666c1 | 1226 | if( (ost->resample_height != (ist->st->codec->height - (ost->topBand + ost->bottomBand))) |
01a3c821 JGG |
1227 | || (ost->resample_width != (ist->st->codec->width - (ost->leftBand + ost->rightBand))) |
1228 | || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) { | |
352666c1 | 1229 | |
352666c1 EB |
1230 | /* keep bands proportional to the frame size */ |
1231 | topBand = ((int64_t)ist->st->codec->height * ost->original_topBand / ost->original_height) & ~1; | |
1232 | bottomBand = ((int64_t)ist->st->codec->height * ost->original_bottomBand / ost->original_height) & ~1; | |
1233 | leftBand = ((int64_t)ist->st->codec->width * ost->original_leftBand / ost->original_width) & ~1; | |
1234 | rightBand = ((int64_t)ist->st->codec->width * ost->original_rightBand / ost->original_width) & ~1; | |
1235 | ||
1236 | /* sanity check to ensure no bad band sizes sneak in */ | |
1237 | assert(topBand <= INT_MAX && topBand >= 0); | |
1238 | assert(bottomBand <= INT_MAX && bottomBand >= 0); | |
1239 | assert(leftBand <= INT_MAX && leftBand >= 0); | |
1240 | assert(rightBand <= INT_MAX && rightBand >= 0); | |
1241 | ||
1242 | ost->topBand = topBand; | |
1243 | ost->bottomBand = bottomBand; | |
1244 | ost->leftBand = leftBand; | |
1245 | ost->rightBand = rightBand; | |
1246 | ||
1247 | ost->resample_height = ist->st->codec->height - (ost->topBand + ost->bottomBand); | |
1248 | ost->resample_width = ist->st->codec->width - (ost->leftBand + ost->rightBand); | |
01a3c821 | 1249 | ost->resample_pix_fmt= ist->st->codec->pix_fmt; |
352666c1 EB |
1250 | |
1251 | /* initialize a new scaler context */ | |
1252 | sws_freeContext(ost->img_resample_ctx); | |
1253 | sws_flags = av_get_int(sws_opts, "sws_flags", NULL); | |
1254 | ost->img_resample_ctx = sws_getContext( | |
1255 | ist->st->codec->width - (ost->leftBand + ost->rightBand), | |
1256 | ist->st->codec->height - (ost->topBand + ost->bottomBand), | |
1257 | ist->st->codec->pix_fmt, | |
0c22311b MN |
1258 | ost->st->codec->width, |
1259 | ost->st->codec->height, | |
352666c1 EB |
1260 | ost->st->codec->pix_fmt, |
1261 | sws_flags, NULL, NULL, NULL); | |
1262 | if (ost->img_resample_ctx == NULL) { | |
1263 | fprintf(stderr, "Cannot get resampling context\n"); | |
1264 | av_exit(1); | |
1265 | } | |
1266 | } | |
18a54b04 LA |
1267 | sws_scale(ost->img_resample_ctx, formatted_picture->data, formatted_picture->linesize, |
1268 | 0, ost->resample_height, resampling_dst->data, resampling_dst->linesize); | |
f122deb4 | 1269 | } |
46847a33 | 1270 | #endif |
07d0cdfc | 1271 | |
85f07f22 | 1272 | /* duplicates frame if needed */ |
ec5517d5 | 1273 | for(i=0;i<nb_frames;i++) { |
e928649b MN |
1274 | AVPacket pkt; |
1275 | av_init_packet(&pkt); | |
1276 | pkt.stream_index= ost->index; | |
1277 | ||
e8750b00 FR |
1278 | if (s->oformat->flags & AVFMT_RAWPICTURE) { |
1279 | /* raw pictures are written as AVPicture structure to | |
1280 | avoid any copies. We support temorarily the older | |
1281 | method. */ | |
2744ca9a | 1282 | AVFrame* old_frame = enc->coded_frame; |
bb270c08 | 1283 | enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack |
e928649b MN |
1284 | pkt.data= (uint8_t *)final_picture; |
1285 | pkt.size= sizeof(AVPicture); | |
b4dba580 | 1286 | pkt.pts= av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base); |
cc947f04 | 1287 | pkt.flags |= AV_PKT_FLAG_KEY; |
e928649b | 1288 | |
748c2fca | 1289 | write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
bb270c08 | 1290 | enc->coded_frame = old_frame; |
e8750b00 | 1291 | } else { |
492cd3a9 | 1292 | AVFrame big_picture; |
a4d36c11 MN |
1293 | |
1294 | big_picture= *final_picture; | |
7a0f9d7e FB |
1295 | /* better than nothing: use input picture interlaced |
1296 | settings */ | |
1297 | big_picture.interlaced_frame = in_picture->interlaced_frame; | |
72415b2a | 1298 | if(avcodec_opts[AVMEDIA_TYPE_VIDEO]->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)){ |
bb198e19 MN |
1299 | if(top_field_first == -1) |
1300 | big_picture.top_field_first = in_picture->top_field_first; | |
1301 | else | |
2a8edc5d | 1302 | big_picture.top_field_first = top_field_first; |
bb198e19 | 1303 | } |
7a0f9d7e | 1304 | |
85f07f22 FB |
1305 | /* handles sameq here. This is not correct because it may |
1306 | not be a global option */ | |
1307 | if (same_quality) { | |
1e491e29 MN |
1308 | big_picture.quality = ist->st->quality; |
1309 | }else | |
1310 | big_picture.quality = ost->st->quality; | |
f4f3223f MN |
1311 | if(!me_threshold) |
1312 | big_picture.pict_type = 0; | |
50c3dd32 | 1313 | // big_picture.pts = AV_NOPTS_VALUE; |
c0df9d75 MN |
1314 | big_picture.pts= ost->sync_opts; |
1315 | // big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den); | |
949b1a13 | 1316 | //av_log(NULL, AV_LOG_DEBUG, "%"PRId64" -> encoder\n", ost->sync_opts); |
115329f1 | 1317 | ret = avcodec_encode_video(enc, |
8a6cb114 | 1318 | bit_buffer, bit_buffer_size, |
1e491e29 | 1319 | &big_picture); |
95af5e1c | 1320 | if (ret < 0) { |
4156a436 | 1321 | fprintf(stderr, "Video encoding failed\n"); |
296df4e7 | 1322 | av_exit(1); |
4156a436 | 1323 | } |
54e28a85 | 1324 | |
4bbc6260 | 1325 | if(ret>0){ |
27537106 | 1326 | pkt.data= bit_buffer; |
e928649b | 1327 | pkt.size= ret; |
e6b4e4ff | 1328 | if(enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 1329 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
949b1a13 | 1330 | /*av_log(NULL, AV_LOG_DEBUG, "encoder -> %"PRId64"/%"PRId64"\n", |
c0df9d75 MN |
1331 | pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1, |
1332 | pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/ | |
50c3dd32 | 1333 | |
e6b4e4ff | 1334 | if(enc->coded_frame->key_frame) |
cc947f04 | 1335 | pkt.flags |= AV_PKT_FLAG_KEY; |
748c2fca | 1336 | write_frame(s, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
e928649b | 1337 | *frame_size = ret; |
44eb047a | 1338 | video_size += ret; |
54e28a85 BC |
1339 | //fprintf(stderr,"\nFrame: %3d size: %5d type: %d", |
1340 | // enc->frame_number-1, ret, enc->pict_type); | |
e928649b MN |
1341 | /* if two pass, output log */ |
1342 | if (ost->logfile && enc->stats_out) { | |
1343 | fprintf(ost->logfile, "%s", enc->stats_out); | |
1344 | } | |
5abdb4b1 | 1345 | } |
85f07f22 | 1346 | } |
50c3dd32 | 1347 | ost->sync_opts++; |
ec5517d5 | 1348 | ost->frame_number++; |
85f07f22 FB |
1349 | } |
1350 | } | |
1351 | ||
140cb663 | 1352 | static double psnr(double d){ |
b29f97d1 | 1353 | return -10.0*log(d)/log(10.0); |
140cb663 MN |
1354 | } |
1355 | ||
115329f1 | 1356 | static void do_video_stats(AVFormatContext *os, AVOutputStream *ost, |
ec5517d5 | 1357 | int frame_size) |
ce7c56c2 | 1358 | { |
ce7c56c2 J |
1359 | AVCodecContext *enc; |
1360 | int frame_number; | |
ce7c56c2 | 1361 | double ti1, bitrate, avg_bitrate; |
115329f1 | 1362 | |
b60d1379 | 1363 | /* this is executed just the first time do_video_stats is called */ |
032aa7df SS |
1364 | if (!vstats_file) { |
1365 | vstats_file = fopen(vstats_filename, "w"); | |
1366 | if (!vstats_file) { | |
4bd0c2b1 | 1367 | perror("fopen"); |
296df4e7 | 1368 | av_exit(1); |
4bd0c2b1 BF |
1369 | } |
1370 | } | |
1371 | ||
01f4895c | 1372 | enc = ost->st->codec; |
72415b2a | 1373 | if (enc->codec_type == AVMEDIA_TYPE_VIDEO) { |
ec5517d5 | 1374 | frame_number = ost->frame_number; |
032aa7df | 1375 | fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality/(float)FF_QP2LAMBDA); |
140cb663 | 1376 | if (enc->flags&CODEC_FLAG_PSNR) |
032aa7df | 1377 | fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0))); |
115329f1 | 1378 | |
032aa7df | 1379 | fprintf(vstats_file,"f_size= %6d ", frame_size); |
ec5517d5 | 1380 | /* compute pts value */ |
c0df9d75 | 1381 | ti1 = ost->sync_opts * av_q2d(enc->time_base); |
ce7c56c2 J |
1382 | if (ti1 < 0.01) |
1383 | ti1 = 0.01; | |
115329f1 | 1384 | |
c0df9d75 | 1385 | bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0; |
1008ceb3 | 1386 | avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0; |
032aa7df | 1387 | fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", |
1008ceb3 | 1388 | (double)video_size / 1024, ti1, bitrate, avg_bitrate); |
032aa7df | 1389 | fprintf(vstats_file,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type)); |
ce7c56c2 | 1390 | } |
ec5517d5 FB |
1391 | } |
1392 | ||
b29f97d1 | 1393 | static void print_report(AVFormatContext **output_files, |
bb270c08 DB |
1394 | AVOutputStream **ost_table, int nb_ostreams, |
1395 | int is_last_report) | |
ec5517d5 FB |
1396 | { |
1397 | char buf[1024]; | |
1398 | AVOutputStream *ost; | |
b5ee9c23 | 1399 | AVFormatContext *oc; |
0c1a9eda | 1400 | int64_t total_size; |
ec5517d5 FB |
1401 | AVCodecContext *enc; |
1402 | int frame_number, vid, i; | |
1403 | double bitrate, ti1, pts; | |
0c1a9eda | 1404 | static int64_t last_time = -1; |
0888fd22 | 1405 | static int qp_histogram[52]; |
115329f1 | 1406 | |
ec5517d5 | 1407 | if (!is_last_report) { |
0c1a9eda | 1408 | int64_t cur_time; |
ec5517d5 FB |
1409 | /* display the report every 0.5 seconds */ |
1410 | cur_time = av_gettime(); | |
1411 | if (last_time == -1) { | |
1412 | last_time = cur_time; | |
1413 | return; | |
115329f1 | 1414 | } |
ec5517d5 FB |
1415 | if ((cur_time - last_time) < 500000) |
1416 | return; | |
1417 | last_time = cur_time; | |
1418 | } | |
1419 | ||
ce7c56c2 | 1420 | |
ec5517d5 FB |
1421 | oc = output_files[0]; |
1422 | ||
899681cd | 1423 | total_size = url_fsize(oc->pb); |
859d95ba | 1424 | if(total_size<0) // FIXME improve url_fsize() so it works with non seekable output too |
899681cd | 1425 | total_size= url_ftell(oc->pb); |
115329f1 | 1426 | |
ec5517d5 FB |
1427 | buf[0] = '\0'; |
1428 | ti1 = 1e10; | |
1429 | vid = 0; | |
1430 | for(i=0;i<nb_ostreams;i++) { | |
1431 | ost = ost_table[i]; | |
01f4895c | 1432 | enc = ost->st->codec; |
72415b2a | 1433 | if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) { |
0ecca7a4 | 1434 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", |
e6b4e4ff | 1435 | !ost->st->stream_copy ? |
99fb79b5 | 1436 | enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1); |
10d104e4 | 1437 | } |
72415b2a | 1438 | if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) { |
7fc98937 LW |
1439 | float t = (av_gettime()-timer_start) / 1000000.0; |
1440 | ||
ec5517d5 | 1441 | frame_number = ost->frame_number; |
7fc98937 LW |
1442 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ", |
1443 | frame_number, (t>1)?(int)(frame_number/t+0.5) : 0, | |
e6b4e4ff | 1444 | !ost->st->stream_copy ? |
99fb79b5 | 1445 | enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1); |
890972be | 1446 | if(is_last_report) |
0ecca7a4 | 1447 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L"); |
e6b4e4ff | 1448 | if(qp_hist){ |
0888fd22 MN |
1449 | int j; |
1450 | int qp= lrintf(enc->coded_frame->quality/(float)FF_QP2LAMBDA); | |
37d3e066 | 1451 | if(qp>=0 && qp<FF_ARRAY_ELEMS(qp_histogram)) |
0888fd22 MN |
1452 | qp_histogram[qp]++; |
1453 | for(j=0; j<32; j++) | |
1454 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log(qp_histogram[j]+1)/log(2))); | |
1455 | } | |
890972be MN |
1456 | if (enc->flags&CODEC_FLAG_PSNR){ |
1457 | int j; | |
1458 | double error, error_sum=0; | |
1459 | double scale, scale_sum=0; | |
1460 | char type[3]= {'Y','U','V'}; | |
0ecca7a4 | 1461 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR="); |
890972be MN |
1462 | for(j=0; j<3; j++){ |
1463 | if(is_last_report){ | |
1464 | error= enc->error[j]; | |
1465 | scale= enc->width*enc->height*255.0*255.0*frame_number; | |
1466 | }else{ | |
1467 | error= enc->coded_frame->error[j]; | |
1468 | scale= enc->width*enc->height*255.0*255.0; | |
1469 | } | |
1470 | if(j) scale/=4; | |
1471 | error_sum += error; | |
1472 | scale_sum += scale; | |
0ecca7a4 | 1473 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error/scale)); |
890972be | 1474 | } |
0ecca7a4 | 1475 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum/scale_sum)); |
890972be | 1476 | } |
ec5517d5 FB |
1477 | vid = 1; |
1478 | } | |
1479 | /* compute min output value */ | |
43924f01 | 1480 | pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base); |
5d9827bc | 1481 | if ((pts < ti1) && (pts > 0)) |
ec5517d5 FB |
1482 | ti1 = pts; |
1483 | } | |
1484 | if (ti1 < 0.01) | |
1485 | ti1 = 0.01; | |
115329f1 | 1486 | |
f068206e BE |
1487 | if (verbose || is_last_report) { |
1488 | bitrate = (double)(total_size * 8) / ti1 / 1000.0; | |
115329f1 DB |
1489 | |
1490 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), | |
475f4d8d | 1491 | "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s", |
ec5517d5 | 1492 | (double)total_size / 1024, ti1, bitrate); |
a6a92a9a | 1493 | |
0f649d66 | 1494 | if (nb_frames_dup || nb_frames_drop) |
bb270c08 DB |
1495 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d", |
1496 | nb_frames_dup, nb_frames_drop); | |
115329f1 | 1497 | |
d8019eb5 AD |
1498 | if (verbose >= 0) |
1499 | fprintf(stderr, "%s \r", buf); | |
1500 | ||
ec5517d5 FB |
1501 | fflush(stderr); |
1502 | } | |
115329f1 | 1503 | |
1008ceb3 MN |
1504 | if (is_last_report && verbose >= 0){ |
1505 | int64_t raw= audio_size + video_size + extra_size; | |
f068206e | 1506 | fprintf(stderr, "\n"); |
1008ceb3 MN |
1507 | fprintf(stderr, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n", |
1508 | video_size/1024.0, | |
1509 | audio_size/1024.0, | |
1510 | extra_size/1024.0, | |
1511 | 100.0*(total_size - raw)/raw | |
1512 | ); | |
1513 | } | |
ce7c56c2 J |
1514 | } |
1515 | ||
a700a6ae FB |
1516 | /* pkt = NULL means EOF (needed to flush decoder buffers) */ |
1517 | static int output_packet(AVInputStream *ist, int ist_index, | |
1518 | AVOutputStream **ost_table, int nb_ostreams, | |
4b85a28f | 1519 | const AVPacket *pkt) |
a700a6ae FB |
1520 | { |
1521 | AVFormatContext *os; | |
1522 | AVOutputStream *ost; | |
ede0e475 | 1523 | int ret, i; |
8157483d | 1524 | int got_picture; |
a700a6ae | 1525 | AVFrame picture; |
a700a6ae | 1526 | void *buffer_to_free; |
f038fe8b | 1527 | static unsigned int samples_size= 0; |
cf7fc795 FB |
1528 | AVSubtitle subtitle, *subtitle_to_free; |
1529 | int got_subtitle; | |
46847a33 MN |
1530 | #if CONFIG_AVFILTER |
1531 | int loop; | |
1532 | #endif | |
1533 | ||
ede0e475 | 1534 | AVPacket avpkt; |
9d66ef18 | 1535 | int bps = av_get_bits_per_sample_format(ist->st->codec->sample_fmt)>>3; |
ede0e475 | 1536 | |
ed923859 MN |
1537 | if(ist->next_pts == AV_NOPTS_VALUE) |
1538 | ist->next_pts= ist->pts; | |
1539 | ||
a700a6ae FB |
1540 | if (pkt == NULL) { |
1541 | /* EOF handling */ | |
031e14ea | 1542 | av_init_packet(&avpkt); |
ede0e475 TB |
1543 | avpkt.data = NULL; |
1544 | avpkt.size = 0; | |
a700a6ae | 1545 | goto handle_eof; |
031e14ea TB |
1546 | } else { |
1547 | avpkt = *pkt; | |
a700a6ae FB |
1548 | } |
1549 | ||
b1b818fc MN |
1550 | if(pkt->dts != AV_NOPTS_VALUE) |
1551 | ist->next_pts = ist->pts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); | |
1552 | ||
bd6754aa | 1553 | //while we have more to decode or while the decoder did output something on EOF |
ede0e475 | 1554 | while (avpkt.size > 0 || (!pkt && ist->next_pts != ist->pts)) { |
036c1382 MN |
1555 | uint8_t *data_buf, *decoded_data_buf; |
1556 | int data_size, decoded_data_size; | |
a700a6ae | 1557 | handle_eof: |
b1b818fc | 1558 | ist->pts= ist->next_pts; |
19d5da50 | 1559 | |
d859bb1d | 1560 | if(avpkt.size && avpkt.size != pkt->size && |
6e2fdc3e | 1561 | ((!ist->showed_multi_packet_warning && verbose>0) || verbose>1)){ |
40cb57a2 | 1562 | fprintf(stderr, "Multiple frames in a packet from stream %d\n", pkt->stream_index); |
3ff0daf0 MN |
1563 | ist->showed_multi_packet_warning=1; |
1564 | } | |
40cb57a2 | 1565 | |
a700a6ae | 1566 | /* decode the packet if needed */ |
036c1382 MN |
1567 | decoded_data_buf = NULL; /* fail safe */ |
1568 | decoded_data_size= 0; | |
1569 | data_buf = avpkt.data; | |
1570 | data_size = avpkt.size; | |
cf7fc795 | 1571 | subtitle_to_free = NULL; |
a700a6ae | 1572 | if (ist->decoding_needed) { |
01f4895c | 1573 | switch(ist->st->codec->codec_type) { |
72415b2a | 1574 | case AVMEDIA_TYPE_AUDIO:{ |
81b060fa LM |
1575 | if(pkt && samples_size < FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE)) { |
1576 | samples_size = FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE); | |
1577 | av_free(samples); | |
1578 | samples= av_malloc(samples_size); | |
1579 | } | |
036c1382 | 1580 | decoded_data_size= samples_size; |
a700a6ae FB |
1581 | /* XXX: could avoid copy if PCM 16 bits with same |
1582 | endianness as CPU */ | |
036c1382 | 1583 | ret = avcodec_decode_audio3(ist->st->codec, samples, &decoded_data_size, |
ede0e475 | 1584 | &avpkt); |
a700a6ae FB |
1585 | if (ret < 0) |
1586 | goto fail_decode; | |
ede0e475 TB |
1587 | avpkt.data += ret; |
1588 | avpkt.size -= ret; | |
036c1382 | 1589 | data_size = ret; |
a700a6ae | 1590 | /* Some bug in mpeg audio decoder gives */ |
036c1382 MN |
1591 | /* decoded_data_size < 0, it seems they are overflows */ |
1592 | if (decoded_data_size <= 0) { | |
a700a6ae FB |
1593 | /* no audio frame */ |
1594 | continue; | |
1595 | } | |
036c1382 MN |
1596 | decoded_data_buf = (uint8_t *)samples; |
1597 | ist->next_pts += ((int64_t)AV_TIME_BASE/bps * decoded_data_size) / | |
01f4895c | 1598 | (ist->st->codec->sample_rate * ist->st->codec->channels); |
df84ac2e | 1599 | break;} |
72415b2a | 1600 | case AVMEDIA_TYPE_VIDEO: |
036c1382 | 1601 | decoded_data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2; |
a700a6ae | 1602 | /* XXX: allocate picture correctly */ |
9740beff MN |
1603 | avcodec_get_frame_defaults(&picture); |
1604 | ||
ede0e475 TB |
1605 | ret = avcodec_decode_video2(ist->st->codec, |
1606 | &picture, &got_picture, &avpkt); | |
a700a6ae | 1607 | ist->st->quality= picture.quality; |
115329f1 | 1608 | if (ret < 0) |
a700a6ae FB |
1609 | goto fail_decode; |
1610 | if (!got_picture) { | |
1611 | /* no picture yet */ | |
1612 | goto discard_packet; | |
1613 | } | |
01f4895c | 1614 | if (ist->st->codec->time_base.num != 0) { |
3797c74b | 1615 | int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame; |
115329f1 | 1616 | ist->next_pts += ((int64_t)AV_TIME_BASE * |
34583e1b | 1617 | ist->st->codec->time_base.num * ticks) / |
01f4895c | 1618 | ist->st->codec->time_base.den; |
a700a6ae | 1619 | } |
ede0e475 | 1620 | avpkt.size = 0; |
a700a6ae | 1621 | break; |
72415b2a | 1622 | case AVMEDIA_TYPE_SUBTITLE: |
ede0e475 TB |
1623 | ret = avcodec_decode_subtitle2(ist->st->codec, |
1624 | &subtitle, &got_subtitle, &avpkt); | |
cf7fc795 | 1625 | if (ret < 0) |
a700a6ae | 1626 | goto fail_decode; |
cf7fc795 FB |
1627 | if (!got_subtitle) { |
1628 | goto discard_packet; | |
a700a6ae | 1629 | } |
cf7fc795 | 1630 | subtitle_to_free = &subtitle; |
ede0e475 | 1631 | avpkt.size = 0; |
cf7fc795 FB |
1632 | break; |
1633 | default: | |
1634 | goto fail_decode; | |
1635 | } | |
1636 | } else { | |
bde0705c | 1637 | switch(ist->st->codec->codec_type) { |
72415b2a | 1638 | case AVMEDIA_TYPE_AUDIO: |
bde0705c | 1639 | ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) / |
1c715415 | 1640 | ist->st->codec->sample_rate; |
bde0705c | 1641 | break; |
72415b2a | 1642 | case AVMEDIA_TYPE_VIDEO: |
bde0705c | 1643 | if (ist->st->codec->time_base.num != 0) { |
3797c74b | 1644 | int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame; |
bde0705c | 1645 | ist->next_pts += ((int64_t)AV_TIME_BASE * |
34583e1b | 1646 | ist->st->codec->time_base.num * ticks) / |
bde0705c | 1647 | ist->st->codec->time_base.den; |
2fef0bdf | 1648 | } |
bde0705c | 1649 | break; |
a700a6ae | 1650 | } |
ede0e475 TB |
1651 | ret = avpkt.size; |
1652 | avpkt.size = 0; | |
bde0705c | 1653 | } |
a700a6ae | 1654 | |
bde0705c | 1655 | buffer_to_free = NULL; |
72415b2a | 1656 | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { |
bde0705c LW |
1657 | pre_process_video_frame(ist, (AVPicture *)&picture, |
1658 | &buffer_to_free); | |
1659 | } | |
a700a6ae | 1660 | |
46847a33 MN |
1661 | #if CONFIG_AVFILTER |
1662 | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ist->input_video_filter) { | |
1663 | // add it to be filtered | |
1664 | av_vsrc_buffer_add_frame(ist->input_video_filter, &picture, | |
1665 | ist->pts, | |
1666 | ist->st->codec->sample_aspect_ratio); | |
1667 | } | |
1668 | #endif | |
1669 | ||
bde0705c | 1670 | // preprocess audio (volume) |
72415b2a | 1671 | if (ist->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) { |
bde0705c LW |
1672 | if (audio_volume != 256) { |
1673 | short *volp; | |
1674 | volp = samples; | |
036c1382 | 1675 | for(i=0;i<(decoded_data_size / sizeof(short));i++) { |
bde0705c LW |
1676 | int v = ((*volp) * audio_volume + 128) >> 8; |
1677 | if (v < -32768) v = -32768; | |
1678 | if (v > 32767) v = 32767; | |
1679 | *volp++ = v; | |
7e987c33 C |
1680 | } |
1681 | } | |
bde0705c | 1682 | } |
7e987c33 | 1683 | |
bde0705c | 1684 | /* frame rate emulation */ |
3a25ca18 | 1685 | if (rate_emu) { |
cb103a19 | 1686 | int64_t pts = av_rescale(ist->pts, 1000000, AV_TIME_BASE); |
bde0705c LW |
1687 | int64_t now = av_gettime() - ist->start; |
1688 | if (pts > now) | |
1689 | usleep(pts - now); | |
bde0705c | 1690 | } |
46847a33 MN |
1691 | #if CONFIG_AVFILTER |
1692 | loop = ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || | |
1693 | !ist->out_video_filter || avfilter_poll_frame(ist->out_video_filter->inputs[0]); | |
1694 | #endif | |
bde0705c LW |
1695 | /* if output time reached then transcode raw format, |
1696 | encode packets and output them */ | |
1697 | if (start_time == 0 || ist->pts >= start_time) | |
46847a33 MN |
1698 | #if CONFIG_AVFILTER |
1699 | while(loop) { | |
1700 | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ist->out_video_filter) | |
1701 | get_filtered_video_pic(ist->out_video_filter, &ist->picref, &picture, &ist->pts); | |
1702 | #endif | |
bde0705c LW |
1703 | for(i=0;i<nb_ostreams;i++) { |
1704 | int frame_size; | |
a700a6ae | 1705 | |
bde0705c LW |
1706 | ost = ost_table[i]; |
1707 | if (ost->source_index == ist_index) { | |
1708 | os = output_files[ost->file_index]; | |
a700a6ae | 1709 | |
bde0705c LW |
1710 | /* set the input output pts pairs */ |
1711 | //ost->sync_ipts = (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/ AV_TIME_BASE; | |
1712 | ||
1713 | if (ost->encoding_needed) { | |
036c1382 | 1714 | assert(ist->decoding_needed); |
bde0705c | 1715 | switch(ost->st->codec->codec_type) { |
72415b2a | 1716 | case AVMEDIA_TYPE_AUDIO: |
036c1382 | 1717 | do_audio_out(os, ost, ist, decoded_data_buf, decoded_data_size); |
bde0705c | 1718 | break; |
72415b2a | 1719 | case AVMEDIA_TYPE_VIDEO: |
46847a33 MN |
1720 | #if CONFIG_AVFILTER |
1721 | ost->st->codec->sample_aspect_ratio = ist->picref->pixel_aspect; | |
1722 | #endif | |
bde0705c | 1723 | do_video_out(os, ost, ist, &picture, &frame_size); |
b60d1379 | 1724 | if (vstats_filename && frame_size) |
bde0705c LW |
1725 | do_video_stats(os, ost, frame_size); |
1726 | break; | |
72415b2a | 1727 | case AVMEDIA_TYPE_SUBTITLE: |
bde0705c LW |
1728 | do_subtitle_out(os, ost, ist, &subtitle, |
1729 | pkt->pts); | |
1730 | break; | |
1731 | default: | |
0f4e8165 | 1732 | abort(); |
bde0705c LW |
1733 | } |
1734 | } else { | |
1735 | AVFrame avframe; //FIXME/XXX remove this | |
1736 | AVPacket opkt; | |
cdf38a17 MN |
1737 | int64_t ost_tb_start_time= av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base); |
1738 | ||
bde0705c LW |
1739 | av_init_packet(&opkt); |
1740 | ||
cc947f04 | 1741 | if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) && !copy_initial_nonkeyframes) |
7cacf1e8 MN |
1742 | continue; |
1743 | ||
bde0705c LW |
1744 | /* no reencoding needed : output the packet directly */ |
1745 | /* force the input stream PTS */ | |
1746 | ||
1747 | avcodec_get_frame_defaults(&avframe); | |
1748 | ost->st->codec->coded_frame= &avframe; | |
cc947f04 | 1749 | avframe.key_frame = pkt->flags & AV_PKT_FLAG_KEY; |
bde0705c | 1750 | |
72415b2a | 1751 | if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) |
bde0705c | 1752 | audio_size += data_size; |
72415b2a | 1753 | else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { |
bde0705c LW |
1754 | video_size += data_size; |
1755 | ost->sync_opts++; | |
1756 | } | |
1757 | ||
1758 | opkt.stream_index= ost->index; | |
1759 | if(pkt->pts != AV_NOPTS_VALUE) | |
cdf38a17 | 1760 | opkt.pts= av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time; |
bde0705c LW |
1761 | else |
1762 | opkt.pts= AV_NOPTS_VALUE; | |
1763 | ||
d2ce2f5e | 1764 | if (pkt->dts == AV_NOPTS_VALUE) |
181782ae | 1765 | opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base); |
d2ce2f5e BC |
1766 | else |
1767 | opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base); | |
cdf38a17 | 1768 | opkt.dts -= ost_tb_start_time; |
c0dd7b7c | 1769 | |
a03d59b7 | 1770 | opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base); |
bde0705c LW |
1771 | opkt.flags= pkt->flags; |
1772 | ||
1773 | //FIXME remove the following 2 lines they shall be replaced by the bitstream filters | |
5bfe91e6 MN |
1774 | if( ost->st->codec->codec_id != CODEC_ID_H264 |
1775 | && ost->st->codec->codec_id != CODEC_ID_MPEG1VIDEO | |
1776 | && ost->st->codec->codec_id != CODEC_ID_MPEG2VIDEO | |
1777 | ) { | |
cc947f04 | 1778 | if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & AV_PKT_FLAG_KEY)) |
9f907d85 | 1779 | opkt.destruct= av_destruct_packet; |
d310d56a BC |
1780 | } else { |
1781 | opkt.data = data_buf; | |
1782 | opkt.size = data_size; | |
1783 | } | |
bde0705c | 1784 | |
8b389f15 | 1785 | write_frame(os, &opkt, ost->st->codec, bitstream_filters[ost->file_index][opkt.stream_index]); |
bde0705c LW |
1786 | ost->st->codec->frame_number++; |
1787 | ost->frame_number++; | |
1788 | av_free_packet(&opkt); | |
a700a6ae FB |
1789 | } |
1790 | } | |
46847a33 MN |
1791 | #if CONFIG_AVFILTER |
1792 | loop = (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) && | |
1793 | ist->out_video_filter && avfilter_poll_frame(ist->out_video_filter->inputs[0]); | |
1794 | #endif | |
bde0705c | 1795 | } |
46847a33 MN |
1796 | |
1797 | #if CONFIG_AVFILTER | |
1798 | if(ist->picref) | |
1799 | avfilter_unref_pic(ist->picref); | |
1800 | } | |
1801 | #endif | |
bde0705c LW |
1802 | av_free(buffer_to_free); |
1803 | /* XXX: allocate the subtitles in the codec ? */ | |
1804 | if (subtitle_to_free) { | |
1805 | if (subtitle_to_free->rects != NULL) { | |
1806 | for (i = 0; i < subtitle_to_free->num_rects; i++) { | |
25b4c651 MN |
1807 | av_freep(&subtitle_to_free->rects[i]->pict.data[0]); |
1808 | av_freep(&subtitle_to_free->rects[i]->pict.data[1]); | |
db4fac64 | 1809 | av_freep(&subtitle_to_free->rects[i]); |
c6ec28b1 | 1810 | } |
bde0705c | 1811 | av_freep(&subtitle_to_free->rects); |
cf7fc795 | 1812 | } |
bde0705c LW |
1813 | subtitle_to_free->num_rects = 0; |
1814 | subtitle_to_free = NULL; | |
a700a6ae | 1815 | } |
bde0705c | 1816 | } |
a700a6ae | 1817 | discard_packet: |
6f824977 MN |
1818 | if (pkt == NULL) { |
1819 | /* EOF handling */ | |
115329f1 | 1820 | |
6f824977 MN |
1821 | for(i=0;i<nb_ostreams;i++) { |
1822 | ost = ost_table[i]; | |
1823 | if (ost->source_index == ist_index) { | |
01f4895c | 1824 | AVCodecContext *enc= ost->st->codec; |
6f824977 | 1825 | os = output_files[ost->file_index]; |
115329f1 | 1826 | |
72415b2a | 1827 | if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <=1) |
6f824977 | 1828 | continue; |
72415b2a | 1829 | if(ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE)) |
6f824977 MN |
1830 | continue; |
1831 | ||
1832 | if (ost->encoding_needed) { | |
1833 | for(;;) { | |
1834 | AVPacket pkt; | |
cef7cc72 | 1835 | int fifo_bytes; |
6f824977 MN |
1836 | av_init_packet(&pkt); |
1837 | pkt.stream_index= ost->index; | |
115329f1 | 1838 | |
01f4895c | 1839 | switch(ost->st->codec->codec_type) { |
72415b2a | 1840 | case AVMEDIA_TYPE_AUDIO: |
41dd680d | 1841 | fifo_bytes = av_fifo_size(ost->fifo); |
cef7cc72 JR |
1842 | ret = 0; |
1843 | /* encode any samples remaining in fifo */ | |
b10d7e4e | 1844 | if (fifo_bytes > 0) { |
22c4c3e0 | 1845 | int osize = av_get_bits_per_sample_format(enc->sample_fmt) >> 3; |
cef7cc72 | 1846 | int fs_tmp = enc->frame_size; |
b10d7e4e | 1847 | |
3898eed8 | 1848 | av_fifo_generic_read(ost->fifo, samples, fifo_bytes, NULL); |
b10d7e4e BC |
1849 | if (enc->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) { |
1850 | enc->frame_size = fifo_bytes / (osize * enc->channels); | |
1851 | } else { /* pad */ | |
1852 | int frame_bytes = enc->frame_size*osize*enc->channels; | |
1853 | if (samples_size < frame_bytes) | |
1854 | av_exit(1); | |
1855 | memset((uint8_t*)samples+fifo_bytes, 0, frame_bytes - fifo_bytes); | |
1856 | } | |
1857 | ||
c573eb85 | 1858 | ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, samples); |
7c8689ef BC |
1859 | pkt.duration = av_rescale((int64_t)enc->frame_size*ost->st->time_base.den, |
1860 | ost->st->time_base.num, enc->sample_rate); | |
cef7cc72 | 1861 | enc->frame_size = fs_tmp; |
9e0db7d5 MN |
1862 | } |
1863 | if(ret <= 0) { | |
cef7cc72 JR |
1864 | ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL); |
1865 | } | |
528271ff MN |
1866 | if (ret < 0) { |
1867 | fprintf(stderr, "Audio encoding failed\n"); | |
1868 | av_exit(1); | |
1869 | } | |
6f824977 | 1870 | audio_size += ret; |
cc947f04 | 1871 | pkt.flags |= AV_PKT_FLAG_KEY; |
6f824977 | 1872 | break; |
72415b2a | 1873 | case AVMEDIA_TYPE_VIDEO: |
8a6cb114 | 1874 | ret = avcodec_encode_video(enc, bit_buffer, bit_buffer_size, NULL); |
528271ff MN |
1875 | if (ret < 0) { |
1876 | fprintf(stderr, "Video encoding failed\n"); | |
1877 | av_exit(1); | |
1878 | } | |
6f824977 MN |
1879 | video_size += ret; |
1880 | if(enc->coded_frame && enc->coded_frame->key_frame) | |
cc947f04 | 1881 | pkt.flags |= AV_PKT_FLAG_KEY; |
6f824977 MN |
1882 | if (ost->logfile && enc->stats_out) { |
1883 | fprintf(ost->logfile, "%s", enc->stats_out); | |
1884 | } | |
1885 | break; | |
1886 | default: | |
1887 | ret=-1; | |
1888 | } | |
115329f1 | 1889 | |
6f824977 MN |
1890 | if(ret<=0) |
1891 | break; | |
27537106 | 1892 | pkt.data= bit_buffer; |
6f824977 | 1893 | pkt.size= ret; |
e7902f20 | 1894 | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE) |
c0df9d75 | 1895 | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
748c2fca | 1896 | write_frame(os, &pkt, ost->st->codec, bitstream_filters[ost->file_index][pkt.stream_index]); |
6f824977 MN |
1897 | } |
1898 | } | |
1899 | } | |
1900 | } | |
1901 | } | |
115329f1 | 1902 | |
a700a6ae FB |
1903 | return 0; |
1904 | fail_decode: | |
1905 | return -1; | |
1906 | } | |
1907 | ||
6d1ba1ac LA |
1908 | static void print_sdp(AVFormatContext **avc, int n) |
1909 | { | |
1910 | char sdp[2048]; | |
1911 | ||
1912 | avf_sdp_create(avc, n, sdp, sizeof(sdp)); | |
1913 | printf("SDP:\n%s\n", sdp); | |
536cd1db | 1914 | fflush(stdout); |
6d1ba1ac | 1915 | } |
a700a6ae | 1916 | |
7a39f142 AK |
1917 | static int copy_chapters(int infile, int outfile) |
1918 | { | |
1919 | AVFormatContext *is = input_files[infile]; | |
1920 | AVFormatContext *os = output_files[outfile]; | |
1921 | int i; | |
1922 | ||
1923 | for (i = 0; i < is->nb_chapters; i++) { | |
1924 | AVChapter *in_ch = is->chapters[i], *out_ch; | |
1925 | AVMetadataTag *t = NULL; | |
1926 | int64_t ts_off = av_rescale_q(start_time - input_files_ts_offset[infile], | |
1927 | AV_TIME_BASE_Q, in_ch->time_base); | |
1928 | int64_t rt = (recording_time == INT64_MAX) ? INT64_MAX : | |
1929 | av_rescale_q(recording_time, AV_TIME_BASE_Q, in_ch->time_base); | |
1930 | ||
1931 | ||
1932 | if (in_ch->end < ts_off) | |
1933 | continue; | |
1934 | if (rt != INT64_MAX && in_ch->start > rt + ts_off) | |
1935 | break; | |
1936 | ||
1937 | out_ch = av_mallocz(sizeof(AVChapter)); | |
1938 | if (!out_ch) | |
1939 | return AVERROR(ENOMEM); | |
1940 | ||
1941 | out_ch->id = in_ch->id; | |
1942 | out_ch->time_base = in_ch->time_base; | |
1943 | out_ch->start = FFMAX(0, in_ch->start - ts_off); | |
1944 | out_ch->end = FFMIN(rt, in_ch->end - ts_off); | |
1945 | ||
1946 | while ((t = av_metadata_get(in_ch->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) | |
1947 | av_metadata_set2(&out_ch->metadata, t->key, t->value, 0); | |
1948 | ||
1949 | os->nb_chapters++; | |
1950 | os->chapters = av_realloc(os->chapters, sizeof(AVChapter)*os->nb_chapters); | |
1951 | if (!os->chapters) | |
1952 | return AVERROR(ENOMEM); | |
1953 | os->chapters[os->nb_chapters - 1] = out_ch; | |
1954 | } | |
1955 | return 0; | |
1956 | } | |
1957 | ||
85f07f22 FB |
1958 | /* |
1959 | * The following code is the main loop of the file converter | |
1960 | */ | |
ac61f59a | 1961 | static int av_transcode(AVFormatContext **output_files, |
685598f5 SS |
1962 | int nb_output_files, |
1963 | AVFormatContext **input_files, | |
1964 | int nb_input_files, | |
1965 | AVStreamMap *stream_maps, int nb_stream_maps) | |
85f07f22 | 1966 | { |
002c95d7 | 1967 | int ret = 0, i, j, k, n, nb_istreams = 0, nb_ostreams = 0; |
85f07f22 FB |
1968 | AVFormatContext *is, *os; |
1969 | AVCodecContext *codec, *icodec; | |
1970 | AVOutputStream *ost, **ost_table = NULL; | |
1971 | AVInputStream *ist, **ist_table = NULL; | |
bdc4796f | 1972 | AVInputFile *file_table; |
002c95d7 | 1973 | char error[1024]; |
cb09b2ed | 1974 | int key; |
6d1ba1ac | 1975 | int want_sdp = 1; |
545465ec MN |
1976 | uint8_t no_packet[MAX_FILES]={0}; |
1977 | int no_packet_count=0; | |
bdc4796f | 1978 | |
90901860 | 1979 | file_table= av_mallocz(nb_input_files * sizeof(AVInputFile)); |
bdc4796f FB |
1980 | if (!file_table) |
1981 | goto fail; | |
115329f1 | 1982 | |
85f07f22 FB |
1983 | /* input stream init */ |
1984 | j = 0; | |
1985 | for(i=0;i<nb_input_files;i++) { | |
1986 | is = input_files[i]; | |
1987 | file_table[i].ist_index = j; | |
79fdaa4c | 1988 | file_table[i].nb_streams = is->nb_streams; |
85f07f22 FB |
1989 | j += is->nb_streams; |
1990 | } | |
1991 | nb_istreams = j; | |
1992 | ||
1993 | ist_table = av_mallocz(nb_istreams * sizeof(AVInputStream *)); | |
1994 | if (!ist_table) | |
bdc4796f | 1995 | goto fail; |
115329f1 | 1996 | |
85f07f22 FB |
1997 | for(i=0;i<nb_istreams;i++) { |
1998 | ist = av_mallocz(sizeof(AVInputStream)); | |
1999 | if (!ist) | |
2000 | goto fail; | |
2001 | ist_table[i] = ist; | |
2002 | } | |
2003 | j = 0; | |
2004 | for(i=0;i<nb_input_files;i++) { | |
2005 | is = input_files[i]; | |
2006 | for(k=0;k<is->nb_streams;k++) { | |
2007 | ist = ist_table[j++]; | |
2008 | ist->st = is->streams[k]; | |
2009 | ist->file_index = i; | |
2010 | ist->index = k; | |
2011 | ist->discard = 1; /* the stream is discarded by default | |
2012 | (changed later) */ | |
bdfcbbed | 2013 | |
3a25ca18 | 2014 | if (rate_emu) { |
bdfcbbed | 2015 | ist->start = av_gettime(); |
bdfcbbed | 2016 | } |
85f07f22 FB |
2017 | } |
2018 | } | |
2019 | ||
2020 | /* output stream init */ | |
2021 | nb_ostreams = 0; | |
2022 | for(i=0;i<nb_output_files;i++) { | |
2023 | os = output_files[i]; | |
8a7bde1c | 2024 | if (!os->nb_streams) { |
fc5d0db5 SS |
2025 | dump_format(output_files[i], i, output_files[i]->filename, 1); |
2026 | fprintf(stderr, "Output file #%d does not contain any stream\n", i); | |
296df4e7 | 2027 | av_exit(1); |
8a7bde1c | 2028 | } |
85f07f22 FB |
2029 | nb_ostreams += os->nb_streams; |
2030 | } | |
2031 | if (nb_stream_maps > 0 && nb_stream_maps != nb_ostreams) { | |
2032 | fprintf(stderr, "Number of stream maps must match number of output streams\n"); | |
296df4e7 | 2033 | av_exit(1); |
85f07f22 FB |
2034 | } |
2035 | ||
bd073980 BF |
2036 | /* Sanity check the mapping args -- do the input files & streams exist? */ |
2037 | for(i=0;i<nb_stream_maps;i++) { | |
2038 | int fi = stream_maps[i].file_index; | |
2039 | int si = stream_maps[i].stream_index; | |
115329f1 | 2040 | |
bd073980 BF |
2041 | if (fi < 0 || fi > nb_input_files - 1 || |
2042 | si < 0 || si > file_table[fi].nb_streams - 1) { | |
2043 | fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si); | |
296df4e7 | 2044 | av_exit(1); |
bd073980 | 2045 | } |
b4a3389e WG |
2046 | fi = stream_maps[i].sync_file_index; |
2047 | si = stream_maps[i].sync_stream_index; | |
2048 | if (fi < 0 || fi > nb_input_files - 1 || | |
2049 | si < 0 || si > file_table[fi].nb_streams - 1) { | |
2050 | fprintf(stderr,"Could not find sync stream #%d.%d\n", fi, si); | |
296df4e7 | 2051 | av_exit(1); |
b4a3389e | 2052 | } |
bd073980 | 2053 | } |
115329f1 | 2054 | |
85f07f22 FB |
2055 | ost_table = av_mallocz(sizeof(AVOutputStream *) * nb_ostreams); |
2056 | if (!ost_table) | |
2057 | goto fail; | |
2058 | for(i=0;i<nb_ostreams;i++) { | |
2059 | ost = av_mallocz(sizeof(AVOutputStream)); | |
2060 | if (!ost) | |
2061 | goto fail; | |
2062 | ost_table[i] = ost; | |
2063 | } | |
115329f1 | 2064 | |
85f07f22 FB |
2065 | n = 0; |
2066 | for(k=0;k<nb_output_files;k++) { | |
2067 | os = output_files[k]; | |
de427ff4 | 2068 | for(i=0;i<os->nb_streams;i++,n++) { |
85f07f22 | 2069 | int found; |
de427ff4 | 2070 | ost = ost_table[n]; |
85f07f22 FB |
2071 | ost->file_index = k; |
2072 | ost->index = i; | |
2073 | ost->st = os->streams[i]; | |
2074 | if (nb_stream_maps > 0) { | |
de427ff4 SS |
2075 | ost->source_index = file_table[stream_maps[n].file_index].ist_index + |
2076 | stream_maps[n].stream_index; | |
115329f1 | 2077 | |
bd073980 | 2078 | /* Sanity check that the stream types match */ |
01f4895c | 2079 | if (ist_table[ost->source_index]->st->codec->codec_type != ost->st->codec->codec_type) { |
150d5a25 SS |
2080 | int i= ost->file_index; |
2081 | dump_format(output_files[i], i, output_files[i]->filename, 1); | |
bd073980 | 2082 | fprintf(stderr, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n", |
de427ff4 | 2083 | stream_maps[n].file_index, stream_maps[n].stream_index, |
bd073980 | 2084 | ost->file_index, ost->index); |
296df4e7 | 2085 | av_exit(1); |
bd073980 | 2086 | } |
115329f1 | 2087 | |
85f07f22 | 2088 | } else { |
247e3954 | 2089 | int best_nb_frames=-1; |
a15bc651 NS |
2090 | /* get corresponding input stream index : we select the first one with the right type */ |
2091 | found = 0; | |
85f07f22 | 2092 | for(j=0;j<nb_istreams;j++) { |
6d3d3b83 | 2093 | int skip=0; |
85f07f22 | 2094 | ist = ist_table[j]; |
6d3d3b83 MN |
2095 | if(opt_programid){ |
2096 | int pi,si; | |
2097 | AVFormatContext *f= input_files[ ist->file_index ]; | |
2098 | skip=1; | |
2099 | for(pi=0; pi<f->nb_programs; pi++){ | |
2100 | AVProgram *p= f->programs[pi]; | |
2101 | if(p->id == opt_programid) | |
2102 | for(si=0; si<p->nb_stream_indexes; si++){ | |
2103 | if(f->streams[ p->stream_index[si] ] == ist->st) | |
2104 | skip=0; | |
2105 | } | |
2106 | } | |
2107 | } | |
2108 | if (ist->discard && ist->st->discard != AVDISCARD_ALL && !skip && | |
a15bc651 | 2109 | ist->st->codec->codec_type == ost->st->codec->codec_type) { |
247e3954 MN |
2110 | if(best_nb_frames < ist->st->codec_info_nb_frames){ |
2111 | best_nb_frames= ist->st->codec_info_nb_frames; | |
2112 | ost->source_index = j; | |
2113 | found = 1; | |
2114 | } | |
85f07f22 FB |
2115 | } |
2116 | } | |
a15bc651 NS |
2117 | |
2118 | if (!found) { | |
2119 | if(! opt_programid) { | |
2120 | /* try again and reuse existing stream */ | |
2121 | for(j=0;j<nb_istreams;j++) { | |
2122 | ist = ist_table[j]; | |
6d3d3b83 MN |
2123 | if ( ist->st->codec->codec_type == ost->st->codec->codec_type |
2124 | && ist->st->discard != AVDISCARD_ALL) { | |
a15bc651 NS |
2125 | ost->source_index = j; |
2126 | found = 1; | |
2127 | } | |
2128 | } | |
50e143c4 | 2129 | } |
85f07f22 | 2130 | if (!found) { |
462cca10 SS |
2131 | int i= ost->file_index; |
2132 | dump_format(output_files[i], i, output_files[i]->filename, 1); | |
85f07f22 FB |
2133 | fprintf(stderr, "Could not find input stream matching output stream #%d.%d\n", |
2134 | ost->file_index, ost->index); | |
296df4e7 | 2135 | av_exit(1); |
85f07f22 FB |
2136 | } |
2137 | } | |
2138 | } | |
2139 | ist = ist_table[ost->source_index]; | |
2140 | ist->discard = 0; | |
b4a3389e | 2141 | ost->sync_ist = (nb_stream_maps > 0) ? |
de427ff4 SS |
2142 | ist_table[file_table[stream_maps[n].sync_file_index].ist_index + |
2143 | stream_maps[n].sync_stream_index] : ist; | |
85f07f22 FB |
2144 | } |
2145 | } | |
2146 | ||
85f07f22 FB |
2147 | /* for each output stream, we compute the right encoding parameters */ |
2148 | for(i=0;i<nb_ostreams;i++) { | |
46e6fb4c | 2149 | AVMetadataTag *t = NULL; |
85f07f22 | 2150 | ost = ost_table[i]; |
365515ac | 2151 | os = output_files[ost->file_index]; |
85f07f22 FB |
2152 | ist = ist_table[ost->source_index]; |
2153 | ||
01f4895c MN |
2154 | codec = ost->st->codec; |
2155 | icodec = ist->st->codec; | |
85f07f22 | 2156 | |
c71591a5 | 2157 | while ((t = av_metadata_get(ist->st->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) { |
46e6fb4c | 2158 | av_metadata_set2(&ost->st->metadata, t->key, t->value, AV_METADATA_DONT_OVERWRITE); |
c71591a5 | 2159 | } |
8e0d882b | 2160 | |
90c2295b | 2161 | ost->st->disposition = ist->st->disposition; |
a39b76ea | 2162 | codec->bits_per_raw_sample= icodec->bits_per_raw_sample; |
de961801 | 2163 | codec->chroma_sample_location = icodec->chroma_sample_location; |
90c2295b | 2164 | |
1629626f FB |
2165 | if (ost->st->stream_copy) { |
2166 | /* if stream_copy is selected, no need to decode or encode */ | |
2167 | codec->codec_id = icodec->codec_id; | |
2168 | codec->codec_type = icodec->codec_type; | |
365515ac MN |
2169 | |
2170 | if(!codec->codec_tag){ | |
2171 | if( !os->oformat->codec_tag | |
37ce3d6b | 2172 | || av_codec_get_id (os->oformat->codec_tag, icodec->codec_tag) == codec->codec_id |
365515ac MN |
2173 | || av_codec_get_tag(os->oformat->codec_tag, icodec->codec_id) <= 0) |
2174 | codec->codec_tag = icodec->codec_tag; | |
2175 | } | |
2176 | ||
1629626f | 2177 | codec->bit_rate = icodec->bit_rate; |
dffbfd06 MN |
2178 | codec->extradata= icodec->extradata; |
2179 | codec->extradata_size= icodec->extradata_size; | |
3797c74b | 2180 | if(av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base) && av_q2d(ist->st->time_base) < 1.0/1000){ |
d29de719 | 2181 | codec->time_base = icodec->time_base; |
3797c74b MN |
2182 | codec->time_base.num *= icodec->ticks_per_frame; |
2183 | }else | |
d29de719 | 2184 | codec->time_base = ist->st->time_base; |
1629626f | 2185 | switch(codec->codec_type) { |
72415b2a | 2186 | case AVMEDIA_TYPE_AUDIO: |
d08e3e91 RP |
2187 | if(audio_volume != 256) { |
2188 | fprintf(stderr,"-acodec copy and -vol are incompatible (frames are not decoded)\n"); | |
2189 | av_exit(1); | |
2190 | } | |
13367a46 | 2191 | codec->channel_layout = icodec->channel_layout; |
1629626f FB |
2192 | codec->sample_rate = icodec->sample_rate; |
2193 | codec->channels = icodec->channels; | |
0a3b0447 | 2194 | codec->frame_size = icodec->frame_size; |
c1344911 | 2195 | codec->block_align= icodec->block_align; |
4efd6f58 MN |
2196 | if(codec->block_align == 1 && codec->codec_id == CODEC_ID_MP3) |
2197 | codec->block_align= 0; | |
bcbd328e MN |
2198 | if(codec->codec_id == CODEC_ID_AC3) |
2199 | codec->block_align= 0; | |
1629626f | 2200 | break; |
72415b2a | 2201 | case AVMEDIA_TYPE_VIDEO: |
9df3437f | 2202 | codec->pix_fmt = icodec->pix_fmt; |
1629626f FB |
2203 | codec->width = icodec->width; |
2204 | codec->height = icodec->height; | |
ff8cc24b | 2205 | codec->has_b_frames = icodec->has_b_frames; |
1629626f | 2206 | break; |
72415b2a | 2207 | case AVMEDIA_TYPE_SUBTITLE: |
d43b26ea DC |
2208 | codec->width = icodec->width; |
2209 | codec->height = icodec->height; | |
cf7fc795 | 2210 | break; |
1629626f | 2211 | default: |
0f4e8165 | 2212 | abort(); |
1629626f FB |
2213 | } |
2214 | } else { | |
2215 | switch(codec->codec_type) { | |
72415b2a | 2216 | case AVMEDIA_TYPE_AUDIO: |
41dd680d MN |
2217 | ost->fifo= av_fifo_alloc(1024); |
2218 | if(!ost->fifo) | |
85f07f22 | 2219 | goto fail; |
a79db0f7 | 2220 | ost->reformat_pair = MAKE_SFMT_PAIR(SAMPLE_FMT_NONE,SAMPLE_FMT_NONE); |
2886f311 AÖ |
2221 | ost->audio_resample = codec->sample_rate != icodec->sample_rate || audio_sync_method > 1; |
2222 | icodec->request_channels = codec->channels; | |
85f07f22 FB |
2223 | ist->decoding_needed = 1; |
2224 | ost->encoding_needed = 1; | |
1629626f | 2225 | break; |
72415b2a | 2226 | case AVMEDIA_TYPE_VIDEO: |
761c8c92 | 2227 | if (ost->st->codec->pix_fmt == PIX_FMT_NONE) { |
562f22a6 | 2228 | fprintf(stderr, "Video pixel format is unknown, stream cannot be encoded\n"); |
761c8c92 BC |
2229 | av_exit(1); |
2230 | } | |
c3f11d19 | 2231 | ost->video_crop = ((frame_leftBand + frame_rightBand + frame_topBand + frame_bottomBand) != 0); |
c3f11d19 | 2232 | ost->video_resample = ((codec->width != icodec->width - |
0c22311b | 2233 | (frame_leftBand + frame_rightBand)) || |
c3f11d19 | 2234 | (codec->height != icodec->height - |
0c22311b | 2235 | (frame_topBand + frame_bottomBand)) || |
18a54b04 | 2236 | (codec->pix_fmt != icodec->pix_fmt)); |
c3f11d19 | 2237 | if (ost->video_crop) { |
352666c1 EB |
2238 | ost->topBand = ost->original_topBand = frame_topBand; |
2239 | ost->bottomBand = ost->original_bottomBand = frame_bottomBand; | |
2240 | ost->leftBand = ost->original_leftBand = frame_leftBand; | |
2241 | ost->rightBand = ost->original_rightBand = frame_rightBand; | |
c3f11d19 | 2242 | } |
c3f11d19 | 2243 | if (ost->video_resample) { |
2de28abb | 2244 | avcodec_get_frame_defaults(&ost->pict_tmp); |
9d58e0a9 BC |
2245 | if(avpicture_alloc((AVPicture*)&ost->pict_tmp, codec->pix_fmt, |
2246 | codec->width, codec->height)) { | |
eddc482d | 2247 | fprintf(stderr, "Cannot allocate temp picture, check pix fmt\n"); |
296df4e7 | 2248 | av_exit(1); |
eddc482d | 2249 | } |
9de8e6ac | 2250 | sws_flags = av_get_int(sws_opts, "sws_flags", NULL); |
18a54b04 LA |
2251 | ost->img_resample_ctx = sws_getContext( |
2252 | icodec->width - (frame_leftBand + frame_rightBand), | |
2253 | icodec->height - (frame_topBand + frame_bottomBand), | |
2254 | icodec->pix_fmt, | |
0c22311b MN |
2255 | codec->width, |
2256 | codec->height, | |
18a54b04 LA |
2257 | codec->pix_fmt, |
2258 | sws_flags, NULL, NULL, NULL); | |
0b50ac8a LA |
2259 | if (ost->img_resample_ctx == NULL) { |
2260 | fprintf(stderr, "Cannot get resampling context\n"); | |
296df4e7 | 2261 | av_exit(1); |
0b50ac8a | 2262 | } |
352666c1 | 2263 | |
46847a33 | 2264 | #if !CONFIG_AVFILTER |
352666c1 EB |
2265 | ost->original_height = icodec->height; |
2266 | ost->original_width = icodec->width; | |
46847a33 | 2267 | #endif |
a39b76ea | 2268 | codec->bits_per_raw_sample= 0; |
85f07f22 | 2269 | } |
b83ccbff MN |
2270 | ost->resample_height = icodec->height - (frame_topBand + frame_bottomBand); |
2271 | ost->resample_width = icodec->width - (frame_leftBand + frame_rightBand); | |
2272 | ost->resample_pix_fmt= icodec->pix_fmt; | |
85f07f22 FB |
2273 | ost->encoding_needed = 1; |
2274 | ist->decoding_needed = 1; | |
46847a33 MN |
2275 | |
2276 | #if CONFIG_AVFILTER | |
2277 | if (configure_filters(ist, ost)) { | |
2278 | fprintf(stderr, "Error opening filters!\n"); | |
2279 | exit(1); | |
2280 | } | |
2281 | #endif | |
1629626f | 2282 | break; |
72415b2a | 2283 | case AVMEDIA_TYPE_SUBTITLE: |
cf7fc795 FB |
2284 | ost->encoding_needed = 1; |
2285 | ist->decoding_needed = 1; | |
2286 | break; | |
1629626f | 2287 | default: |
0f4e8165 | 2288 | abort(); |
cf7fc795 | 2289 | break; |
85f07f22 | 2290 | } |
1629626f | 2291 | /* two pass mode */ |
115329f1 | 2292 | if (ost->encoding_needed && |
1629626f FB |
2293 | (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { |
2294 | char logfilename[1024]; | |
2295 | FILE *f; | |
115329f1 DB |
2296 | |
2297 | snprintf(logfilename, sizeof(logfilename), "%s-%d.log", | |
22730e87 SS |
2298 | pass_logfilename_prefix ? pass_logfilename_prefix : DEFAULT_PASS_LOGFILENAME_PREFIX, |
2299 | i); | |
1629626f FB |
2300 | if (codec->flags & CODEC_FLAG_PASS1) { |
2301 | f = fopen(logfilename, "w"); | |
2302 | if (!f) { | |
42d1d06e | 2303 | fprintf(stderr, "Cannot write log file '%s' for pass-1 encoding: %s\n", logfilename, strerror(errno)); |
296df4e7 | 2304 | av_exit(1); |
1629626f FB |
2305 | } |
2306 | ost->logfile = f; | |
2307 | } else { | |
458b062d SS |
2308 | char *logbuffer; |
2309 | size_t logbuffer_size; | |
2310 | if (read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { | |
2311 | fprintf(stderr, "Error reading log file '%s' for pass-2 encoding\n", logfilename); | |
296df4e7 | 2312 | av_exit(1); |
1629626f | 2313 | } |
1629626f | 2314 | codec->stats_in = logbuffer; |
5abdb4b1 | 2315 | } |
5abdb4b1 FB |
2316 | } |
2317 | } | |
72415b2a | 2318 | if(codec->codec_type == AVMEDIA_TYPE_VIDEO){ |
8a6cb114 | 2319 | int size= codec->width * codec->height; |
c027e91a | 2320 | bit_buffer_size= FFMAX(bit_buffer_size, 6*size + 200); |
8a6cb114 | 2321 | } |
85f07f22 FB |
2322 | } |
2323 | ||
8a6cb114 MN |
2324 | if (!bit_buffer) |
2325 | bit_buffer = av_malloc(bit_buffer_size); | |
002c95d7 | 2326 | if (!bit_buffer) { |
50f3fabc MR |
2327 | fprintf(stderr, "Cannot allocate %d bytes output buffer\n", |
2328 | bit_buffer_size); | |
002c95d7 | 2329 | ret = AVERROR(ENOMEM); |
8a6cb114 | 2330 | goto fail; |
1629626f FB |
2331 | } |
2332 | ||
85f07f22 FB |
2333 | /* open each encoder */ |
2334 | for(i=0;i<nb_ostreams;i++) { | |
2335 | ost = ost_table[i]; | |
2336 | if (ost->encoding_needed) { | |
6488cf9b AJ |
2337 | AVCodec *codec = output_codecs[i]; |
2338 | if (!codec) | |
fd2b356a | 2339 | codec = avcodec_find_encoder(ost->st->codec->codec_id); |
85f07f22 | 2340 | if (!codec) { |
f356fc57 BC |
2341 | snprintf(error, sizeof(error), "Encoder (codec id %d) not found for output stream #%d.%d", |
2342 | ost->st->codec->codec_id, ost->file_index, ost->index); | |
002c95d7 BC |
2343 | ret = AVERROR(EINVAL); |
2344 | goto dump_format; | |
85f07f22 | 2345 | } |
01f4895c | 2346 | if (avcodec_open(ost->st->codec, codec) < 0) { |
f356fc57 | 2347 | snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height", |
85f07f22 | 2348 | ost->file_index, ost->index); |
002c95d7 BC |
2349 | ret = AVERROR(EINVAL); |
2350 | goto dump_format; | |
85f07f22 | 2351 | } |
01f4895c | 2352 | extra_size += ost->st->codec->extradata_size; |
85f07f22 FB |
2353 | } |
2354 | } | |
2355 | ||
2356 | /* open each decoder */ | |
2357 | for(i=0;i<nb_istreams;i++) { | |
2358 | ist = ist_table[i]; | |
2359 | if (ist->decoding_needed) { | |
6488cf9b AJ |
2360 | AVCodec *codec = input_codecs[i]; |
2361 | if (!codec) | |
fd2b356a | 2362 | codec = avcodec_find_decoder(ist->st->codec->codec_id); |
85f07f22 | 2363 | if (!codec) { |
f356fc57 | 2364 | snprintf(error, sizeof(error), "Decoder (codec id %d) not found for input stream #%d.%d", |
01f4895c | 2365 | ist->st->codec->codec_id, ist->file_index, ist->index); |
002c95d7 BC |
2366 | ret = AVERROR(EINVAL); |
2367 | goto dump_format; | |
85f07f22 | 2368 | } |
01f4895c | 2369 | if (avcodec_open(ist->st->codec, codec) < 0) { |
f356fc57 | 2370 | snprintf(error, sizeof(error), "Error while opening decoder for input stream #%d.%d", |
85f07f22 | 2371 | ist->file_index, ist->index); |
002c95d7 BC |
2372 | ret = AVERROR(EINVAL); |
2373 | goto dump_format; | |
85f07f22 | 2374 | } |
72415b2a | 2375 | //if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) |
01f4895c | 2376 | // ist->st->codec->flags |= CODEC_FLAG_REPEAT_FIELD; |
85f07f22 FB |
2377 | } |
2378 | } | |
2379 | ||
2380 | /* init pts */ | |
2381 | for(i=0;i<nb_istreams;i++) { | |
b8c93c48 | 2382 | AVStream *st; |
85f07f22 | 2383 | ist = ist_table[i]; |
b8c93c48 MN |
2384 | st= ist->st; |
2385 | ist->pts = st->avg_frame_rate.num ? - st->codec->has_b_frames*AV_TIME_BASE / av_q2d(st->avg_frame_rate) : 0; | |
48291040 | 2386 | ist->next_pts = AV_NOPTS_VALUE; |
ff4905a5 | 2387 | ist->is_start = 1; |
85f07f22 | 2388 | } |
c5e1e982 | 2389 | |
0a38bafd PB |
2390 | /* set meta data information from input file if required */ |
2391 | for (i=0;i<nb_meta_data_maps;i++) { | |
2392 | AVFormatContext *out_file; | |
2393 | AVFormatContext *in_file; | |
a5926d85 | 2394 | AVMetadataTag *mtag; |
0a38bafd PB |
2395 | |
2396 | int out_file_index = meta_data_maps[i].out_file; | |
2397 | int in_file_index = meta_data_maps[i].in_file; | |
9d58e0a9 | 2398 | if (out_file_index < 0 || out_file_index >= nb_output_files) { |
002c95d7 BC |
2399 | snprintf(error, sizeof(error), "Invalid output file index %d map_meta_data(%d,%d)", |
2400 | out_file_index, out_file_index, in_file_index); | |
8fa36ae0 | 2401 | ret = AVERROR(EINVAL); |
002c95d7 | 2402 | goto dump_format; |
0a38bafd | 2403 | } |
9d58e0a9 | 2404 | if (in_file_index < 0 || in_file_index >= nb_input_files) { |
002c95d7 BC |
2405 | snprintf(error, sizeof(error), "Invalid input file index %d map_meta_data(%d,%d)", |
2406 | in_file_index, out_file_index, in_file_index); | |
8fa36ae0 | 2407 | ret = AVERROR(EINVAL); |
002c95d7 | 2408 | goto dump_format; |
115329f1 DB |
2409 | } |
2410 | ||
0a38bafd PB |
2411 | out_file = output_files[out_file_index]; |
2412 | in_file = input_files[in_file_index]; | |
2413 | ||
a5926d85 AJ |
2414 | |
2415 | mtag=NULL; | |
2416 | while((mtag=av_metadata_get(in_file->metadata, "", mtag, AV_METADATA_IGNORE_SUFFIX))) | |
1a6498d7 | 2417 | av_metadata_set2(&out_file->metadata, mtag->key, mtag->value, AV_METADATA_DONT_OVERWRITE); |
a5926d85 AJ |
2418 | av_metadata_conv(out_file, out_file->oformat->metadata_conv, |
2419 | in_file->iformat->metadata_conv); | |
0a38bafd | 2420 | } |
115329f1 | 2421 | |
7a39f142 AK |
2422 | /* copy chapters from the first input file that has them*/ |
2423 | for (i = 0; i < nb_input_files; i++) { | |
2424 | if (!input_files[i]->nb_chapters) | |
2425 | continue; | |
2426 | ||
2427 | for (j = 0; j < nb_output_files; j++) | |
2428 | if ((ret = copy_chapters(i, j)) < 0) | |
2429 | goto dump_format; | |
2430 | } | |
2431 | ||
85f07f22 FB |
2432 | /* open files and write file headers */ |
2433 | for(i=0;i<nb_output_files;i++) { | |
2434 | os = output_files[i]; | |
79fdaa4c | 2435 | if (av_write_header(os) < 0) { |
002c95d7 | 2436 | snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?)", i); |
8fa36ae0 | 2437 | ret = AVERROR(EINVAL); |
002c95d7 | 2438 | goto dump_format; |
a38469e1 | 2439 | } |
6d1ba1ac LA |
2440 | if (strcmp(output_files[i]->oformat->name, "rtp")) { |
2441 | want_sdp = 0; | |
2442 | } | |
2443 | } | |
002c95d7 BC |
2444 | |
2445 | dump_format: | |
2446 | /* dump the file output parameters - cannot be done before in case | |
2447 | of stream copy */ | |
2448 | for(i=0;i<nb_output_files;i++) { | |
2449 | dump_format(output_files[i], i, output_files[i]->filename, 1); | |
2450 | } | |
2451 | ||
2452 | /* dump the stream mapping */ | |
2453 | if (verbose >= 0) { | |
2454 | fprintf(stderr, "Stream mapping:\n"); | |
2455 | for(i=0;i<nb_ostreams;i++) { | |
2456 | ost = ost_table[i]; | |
2457 | fprintf(stderr, " Stream #%d.%d -> #%d.%d", | |
2458 | ist_table[ost->source_index]->file_index, | |
2459 | ist_table[ost->source_index]->index, | |
2460 | ost->file_index, | |
2461 | ost->index); | |
2462 | if (ost->sync_ist != ist_table[ost->source_index]) | |
2463 | fprintf(stderr, " [sync #%d.%d]", | |
2464 | ost->sync_ist->file_index, | |
2465 | ost->sync_ist->index); | |
2466 | fprintf(stderr, "\n"); | |
2467 | } | |
2468 | } | |
2469 | ||
2470 | if (ret) { | |
2471 | fprintf(stderr, "%s\n", error); | |
2472 | goto fail; | |
2473 | } | |
2474 | ||
6d1ba1ac LA |
2475 | if (want_sdp) { |
2476 | print_sdp(output_files, nb_output_files); | |
85f07f22 FB |
2477 | } |
2478 | ||
9d58e0a9 | 2479 | if (!using_stdin && verbose >= 0) { |
d9a916e2 | 2480 | fprintf(stderr, "Press [q] to stop encoding\n"); |
b51469a0 LS |
2481 | url_set_interrupt_cb(decode_interrupt_cb); |
2482 | } | |
a38469e1 FB |
2483 | term_init(); |
2484 | ||
7fc98937 | 2485 | timer_start = av_gettime(); |
51bd4565 | 2486 | |
d9a916e2 | 2487 | for(; received_sigterm == 0;) { |
85f07f22 FB |
2488 | int file_index, ist_index; |
2489 | AVPacket pkt; | |
a9aeda81 PB |
2490 | double ipts_min; |
2491 | double opts_min; | |
23ffe323 | 2492 | |
85f07f22 | 2493 | redo: |
a9aeda81 PB |
2494 | ipts_min= 1e100; |
2495 | opts_min= 1e100; | |
a38469e1 | 2496 | /* if 'q' pressed, exits */ |
d9a916e2 | 2497 | if (!using_stdin) { |
b51469a0 LS |
2498 | if (q_pressed) |
2499 | break; | |
cb09b2ed PG |
2500 | /* read_key() returns 0 on EOF */ |
2501 | key = read_key(); | |
2502 | if (key == 'q') | |
2503 | break; | |
2504 | } | |
a38469e1 | 2505 | |
ec5517d5 FB |
2506 | /* select the stream that we must read now by looking at the |
2507 | smallest output pts */ | |
85f07f22 | 2508 | file_index = -1; |
ec5517d5 | 2509 | for(i=0;i<nb_ostreams;i++) { |
23ffe323 | 2510 | double ipts, opts; |
ec5517d5 FB |
2511 | ost = ost_table[i]; |
2512 | os = output_files[ost->file_index]; | |
2513 | ist = ist_table[ost->source_index]; | |
55a7e946 | 2514 | if(ist->is_past_recording_time || no_packet[ist->file_index]) |
545465ec | 2515 | continue; |
c0df9d75 | 2516 | opts = ost->st->pts.val * av_q2d(ost->st->time_base); |
23ffe323 MN |
2517 | ipts = (double)ist->pts; |
2518 | if (!file_table[ist->file_index].eof_reached){ | |
2519 | if(ipts < ipts_min) { | |
2520 | ipts_min = ipts; | |
2521 | if(input_sync ) file_index = ist->file_index; | |
2522 | } | |
2523 | if(opts < opts_min) { | |
2524 | opts_min = opts; | |
2525 | if(!input_sync) file_index = ist->file_index; | |
2526 | } | |
85f07f22 | 2527 | } |
01f4895c | 2528 | if(ost->frame_number >= max_frames[ost->st->codec->codec_type]){ |
7ca60994 MN |
2529 | file_index= -1; |
2530 | break; | |
2531 | } | |
85f07f22 FB |
2532 | } |
2533 | /* if none, if is finished */ | |
51bd4565 | 2534 | if (file_index < 0) { |
545465ec MN |
2535 | if(no_packet_count){ |
2536 | no_packet_count=0; | |
2537 | memset(no_packet, 0, sizeof(no_packet)); | |
d61f30a7 | 2538 | usleep(10000); |
545465ec MN |
2539 | continue; |
2540 | } | |
85f07f22 | 2541 | break; |
ec5517d5 FB |
2542 | } |
2543 | ||
b6e16b86 | 2544 | /* finish if limit size exhausted */ |
899681cd | 2545 | if (limit_filesize != 0 && limit_filesize < url_ftell(output_files[0]->pb)) |
b6e16b86 C |
2546 | break; |
2547 | ||
254abc2e | 2548 | /* read a frame from it and output it in the fifo */ |
85f07f22 | 2549 | is = input_files[file_index]; |
ad51c68c | 2550 | ret= av_read_frame(is, &pkt); |
b9edbe99 | 2551 | if(ret == AVERROR(EAGAIN)){ |
545465ec MN |
2552 | no_packet[file_index]=1; |
2553 | no_packet_count++; | |
ad51c68c | 2554 | continue; |
545465ec | 2555 | } |
ad51c68c | 2556 | if (ret < 0) { |
85f07f22 | 2557 | file_table[file_index].eof_reached = 1; |
d24ce947 AB |
2558 | if (opt_shortest) |
2559 | break; | |
2560 | else | |
2561 | continue; | |
85f07f22 | 2562 | } |
303e50e6 | 2563 | |
545465ec MN |
2564 | no_packet_count=0; |
2565 | memset(no_packet, 0, sizeof(no_packet)); | |
2566 | ||
254abc2e | 2567 | if (do_pkt_dump) { |
750f0e1f | 2568 | av_pkt_dump_log(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump); |
817b23ff | 2569 | } |
79fdaa4c FB |
2570 | /* the following test is needed in case new streams appear |
2571 | dynamically in stream : we ignore them */ | |
2572 | if (pkt.stream_index >= file_table[file_index].nb_streams) | |
bf5af568 | 2573 | goto discard_packet; |
85f07f22 FB |
2574 | ist_index = file_table[file_index].ist_index + pkt.stream_index; |
2575 | ist = ist_table[ist_index]; | |
bf5af568 FB |
2576 | if (ist->discard) |
2577 | goto discard_packet; | |
85f07f22 | 2578 | |
fec401f7 MN |
2579 | if (pkt.dts != AV_NOPTS_VALUE) |
2580 | pkt.dts += av_rescale_q(input_files_ts_offset[ist->file_index], AV_TIME_BASE_Q, ist->st->time_base); | |
2581 | if (pkt.pts != AV_NOPTS_VALUE) | |
2582 | pkt.pts += av_rescale_q(input_files_ts_offset[ist->file_index], AV_TIME_BASE_Q, ist->st->time_base); | |
2583 | ||
8833f375 MN |
2584 | if(input_files_ts_scale[file_index][pkt.stream_index]){ |
2585 | if(pkt.pts != AV_NOPTS_VALUE) | |
2586 | pkt.pts *= input_files_ts_scale[file_index][pkt.stream_index]; | |
2587 | if(pkt.dts != AV_NOPTS_VALUE) | |
2588 | pkt.dts *= input_files_ts_scale[file_index][pkt.stream_index]; | |
2589 | } | |
2590 | ||
949b1a13 | 2591 | // fprintf(stderr, "next:%"PRId64" dts:%"PRId64" off:%"PRId64" %d\n", ist->next_pts, pkt.dts, input_files_ts_offset[ist->file_index], ist->st->codec->codec_type); |
965530e1 MN |
2592 | if (pkt.dts != AV_NOPTS_VALUE && ist->next_pts != AV_NOPTS_VALUE |
2593 | && (is->iformat->flags & AVFMT_TS_DISCONT)) { | |
81d6d520 MN |
2594 | int64_t pkt_dts= av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q); |
2595 | int64_t delta= pkt_dts - ist->next_pts; | |
2596 | if((FFABS(delta) > 1LL*dts_delta_threshold*AV_TIME_BASE || pkt_dts+1<ist->pts)&& !copy_ts){ | |
72bd8100 MN |
2597 | input_files_ts_offset[ist->file_index]-= delta; |
2598 | if (verbose > 2) | |
4733abcb | 2599 | fprintf(stderr, "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n", delta, input_files_ts_offset[ist->file_index]); |
fec401f7 MN |
2600 | pkt.dts-= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base); |
2601 | if(pkt.pts != AV_NOPTS_VALUE) | |
2602 | pkt.pts-= av_rescale_q(delta, AV_TIME_BASE_Q, ist->st->time_base); | |
72bd8100 MN |
2603 | } |
2604 | } | |
2605 | ||
f8ccf720 | 2606 | /* finish if recording time exhausted */ |
6abda15f FC |
2607 | if (recording_time != INT64_MAX && |
2608 | av_compare_ts(pkt.pts, ist->st->time_base, recording_time + start_time, (AVRational){1, 1000000}) >= 0) { | |
55a7e946 | 2609 | ist->is_past_recording_time = 1; |
f8ccf720 | 2610 | goto discard_packet; |
55a7e946 | 2611 | } |
f8ccf720 | 2612 | |
8831db5c | 2613 | //fprintf(stderr,"read #%d.%d size=%d\n", ist->file_index, ist->index, pkt.size); |
a700a6ae | 2614 | if (output_packet(ist, ist_index, ost_table, nb_ostreams, &pkt) < 0) { |
d8019eb5 AD |
2615 | |
2616 | if (verbose >= 0) | |
2617 | fprintf(stderr, "Error while decoding stream #%d.%d\n", | |
2618 | ist->file_index, ist->index); | |
f2abc559 BC |
2619 | if (exit_on_error) |
2620 | av_exit(1); | |
a700a6ae FB |
2621 | av_free_packet(&pkt); |
2622 | goto redo; | |
fe08925f | 2623 | } |
cf7fc795 | 2624 | |
bf5af568 | 2625 | discard_packet: |
85f07f22 | 2626 | av_free_packet(&pkt); |
115329f1 | 2627 | |
ec5517d5 FB |
2628 | /* dump report by using the output first video and audio streams */ |
2629 | print_report(output_files, ost_table, nb_ostreams, 0); | |
85f07f22 | 2630 | } |
a700a6ae FB |
2631 | |
2632 | /* at the end of stream, we must flush the decoder buffers */ | |
2633 | for(i=0;i<nb_istreams;i++) { | |
2634 | ist = ist_table[i]; | |
2635 | if (ist->decoding_needed) { | |
2636 | output_packet(ist, i, ost_table, nb_ostreams, NULL); | |
2637 | } | |
2638 | } | |
2639 | ||
a38469e1 | 2640 | term_exit(); |
85f07f22 | 2641 | |
c4e37247 MN |
2642 | /* write the trailer if needed and close file */ |
2643 | for(i=0;i<nb_output_files;i++) { | |
2644 | os = output_files[i]; | |
2645 | av_write_trailer(os); | |
2646 | } | |
2647 | ||
37f5cd5a MN |
2648 | /* dump report by using the first video and audio streams */ |
2649 | print_report(output_files, ost_table, nb_ostreams, 1); | |
2650 | ||
85f07f22 FB |
2651 | /* close each encoder */ |
2652 | for(i=0;i<nb_ostreams;i++) { | |
2653 | ost = ost_table[i]; | |
2654 | if (ost->encoding_needed) { | |
01f4895c MN |
2655 | av_freep(&ost->st->codec->stats_in); |
2656 | avcodec_close(ost->st->codec); | |
85f07f22 FB |
2657 | } |
2658 | } | |
115329f1 | 2659 | |
85f07f22 FB |
2660 | /* close each decoder */ |
2661 | for(i=0;i<nb_istreams;i++) { | |
2662 | ist = ist_table[i]; | |
2663 | if (ist->decoding_needed) { | |
01f4895c | 2664 | avcodec_close(ist->st->codec); |
85f07f22 FB |
2665 | } |
2666 | } | |
46847a33 MN |
2667 | #if CONFIG_AVFILTER |
2668 | if (filt_graph_all) { | |
2669 | avfilter_graph_destroy(filt_graph_all); | |
2670 | av_freep(&filt_graph_all); | |
2671 | } | |
2672 | #endif | |
85f07f22 | 2673 | |
85f07f22 | 2674 | /* finished ! */ |
00b7fbdc | 2675 | ret = 0; |
115329f1 | 2676 | |
002c95d7 | 2677 | fail: |
83b07470 | 2678 | av_freep(&bit_buffer); |
0f1578af | 2679 | av_free(file_table); |
bdc4796f | 2680 | |
85f07f22 FB |
2681 | if (ist_table) { |
2682 | for(i=0;i<nb_istreams;i++) { | |
2683 | ist = ist_table[i]; | |
0f1578af | 2684 | av_free(ist); |
85f07f22 | 2685 | } |
0f1578af | 2686 | av_free(ist_table); |
85f07f22 FB |
2687 | } |
2688 | if (ost_table) { | |
2689 | for(i=0;i<nb_ostreams;i++) { | |
2690 | ost = ost_table[i]; | |
2691 | if (ost) { | |
5abdb4b1 FB |
2692 | if (ost->logfile) { |
2693 | fclose(ost->logfile); | |
2694 | ost->logfile = NULL; | |
2695 | } | |
41dd680d | 2696 | av_fifo_free(ost->fifo); /* works even if fifo is not |
f5a478f6 | 2697 | initialized but set to zero */ |
0f1578af | 2698 | av_free(ost->pict_tmp.data[0]); |
85f07f22 | 2699 | if (ost->video_resample) |
18a54b04 | 2700 | sws_freeContext(ost->img_resample_ctx); |
8e4270c5 | 2701 | if (ost->resample) |
85f07f22 | 2702 | audio_resample_close(ost->resample); |
a79db0f7 PR |
2703 | if (ost->reformat_ctx) |
2704 | av_audio_convert_free(ost->reformat_ctx); | |
0f1578af | 2705 | av_free(ost); |
85f07f22 FB |
2706 | } |
2707 | } | |
0f1578af | 2708 | av_free(ost_table); |
85f07f22 FB |
2709 | } |
2710 | return ret; | |
85f07f22 FB |
2711 | } |
2712 | ||
b29f97d1 | 2713 | static void opt_format(const char *arg) |
85f07f22 | 2714 | { |
817b23ff FB |
2715 | /* compatibility stuff for pgmyuv */ |
2716 | if (!strcmp(arg, "pgmyuv")) { | |
5b6d5596 | 2717 | pgmyuv_compatibility_hack=1; |
9286699a | 2718 | // opt_image_format(arg); |
5b6d5596 | 2719 | arg = "image2"; |
17ceb4f9 | 2720 | fprintf(stderr, "pgmyuv format is deprecated, use image2\n"); |
817b23ff FB |
2721 | } |
2722 | ||
a5abfd8f | 2723 | last_asked_format = arg; |
85f07f22 FB |
2724 | } |
2725 | ||
464a631c | 2726 | static void opt_video_rc_override_string(const char *arg) |
ac2830ec MN |
2727 | { |
2728 | video_rc_override_string = arg; | |
2729 | } | |
2730 | ||
c48da33c | 2731 | static int opt_me_threshold(const char *opt, const char *arg) |
f4f3223f | 2732 | { |
c48da33c SS |
2733 | me_threshold = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX); |
2734 | return 0; | |
f4f3223f MN |
2735 | } |
2736 | ||
c48da33c | 2737 | static int opt_verbose(const char *opt, const char *arg) |
f068206e | 2738 | { |
46eab093 | 2739 | verbose = parse_number_or_die(opt, arg, OPT_INT64, -10, 10); |
c48da33c | 2740 | return 0; |
f068206e BE |
2741 | } |
2742 | ||
2fc3866d | 2743 | static int opt_frame_rate(const char *opt, const char *arg) |
85f07f22 | 2744 | { |
b33ece16 | 2745 | if (av_parse_video_frame_rate(&frame_rate, arg) < 0) { |
2fc3866d | 2746 | fprintf(stderr, "Incorrect value for %s: %s\n", opt, arg); |
296df4e7 | 2747 | av_exit(1); |
445f1b83 | 2748 | } |
2fc3866d | 2749 | return 0; |
85f07f22 FB |
2750 | } |
2751 | ||
ebde2a2c | 2752 | static int opt_bitrate(const char *opt, const char *arg) |
1b1656c6 | 2753 | { |
72415b2a | 2754 | int codec_type = opt[0]=='a' ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO; |
1b1656c6 RP |
2755 | |
2756 | opt_default(opt, arg); | |
2757 | ||
636f1c4c | 2758 | if (av_get_int(avcodec_opts[codec_type], "b", NULL) < 1000) |
1b1656c6 | 2759 | fprintf(stderr, "WARNING: The bitrate parameter is set too low. It takes bits/s as argument, not kbits/s\n"); |
ebde2a2c MH |
2760 | |
2761 | return 0; | |
1b1656c6 RP |
2762 | } |
2763 | ||
b29f97d1 | 2764 | static void opt_frame_crop_top(const char *arg) |
ab6d194a | 2765 | { |
115329f1 | 2766 | frame_topBand = atoi(arg); |
ab6d194a MN |
2767 | if (frame_topBand < 0) { |
2768 | fprintf(stderr, "Incorrect top crop size\n"); | |
296df4e7 | 2769 | av_exit(1); |
ab6d194a | 2770 | } |
ab6d194a | 2771 | if ((frame_topBand) >= frame_height){ |
bb270c08 | 2772 | fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
296df4e7 | 2773 | av_exit(1); |
ab6d194a MN |
2774 | } |
2775 | frame_height -= frame_topBand; | |
2776 | } | |
2777 | ||
b29f97d1 | 2778 | static void opt_frame_crop_bottom(const char *arg) |
ab6d194a MN |
2779 | { |
2780 | frame_bottomBand = atoi(arg); | |
2781 | if (frame_bottomBand < 0) { | |
2782 | fprintf(stderr, "Incorrect bottom crop size\n"); | |
296df4e7 | 2783 | av_exit(1); |
ab6d194a | 2784 | } |
ab6d194a | 2785 | if ((frame_bottomBand) >= frame_height){ |
bb270c08 | 2786 | fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
296df4e7 | 2787 | av_exit(1); |
ab6d194a MN |
2788 | } |
2789 | frame_height -= frame_bottomBand; | |
2790 | } | |
2791 | ||
b29f97d1 | 2792 | static void opt_frame_crop_left(const char *arg) |
ab6d194a MN |
2793 | { |
2794 | frame_leftBand = atoi(arg); | |
2795 | if (frame_leftBand < 0) { | |
2796 | fprintf(stderr, "Incorrect left crop size\n"); | |
296df4e7 | 2797 | av_exit(1); |
ab6d194a | 2798 | } |
ab6d194a | 2799 | if ((frame_leftBand) >= frame_width){ |
bb270c08 | 2800 | fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
296df4e7 | 2801 | av_exit(1); |
ab6d194a MN |
2802 | } |
2803 | frame_width -= frame_leftBand; | |
2804 | } | |
2805 | ||
b29f97d1 | 2806 | static void opt_frame_crop_right(const char *arg) |
ab6d194a MN |
2807 | { |
2808 | frame_rightBand = atoi(arg); | |
2809 | if (frame_rightBand < 0) { | |
2810 | fprintf(stderr, "Incorrect right crop size\n"); | |
296df4e7 | 2811 | av_exit(1); |
ab6d194a | 2812 | } |
ab6d194a | 2813 | if ((frame_rightBand) >= frame_width){ |
bb270c08 | 2814 | fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n"); |
296df4e7 | 2815 | av_exit(1); |
ab6d194a MN |
2816 | } |
2817 | frame_width -= frame_rightBand; | |
2818 | } | |
2819 | ||
b29f97d1 | 2820 | static void opt_frame_size(const char *arg) |
85f07f22 | 2821 | { |
b33ece16 | 2822 | if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) { |
85f07f22 | 2823 | fprintf(stderr, "Incorrect frame size\n"); |
296df4e7 | 2824 | av_exit(1); |
85f07f22 | 2825 | } |
85f07f22 FB |
2826 | } |
2827 | ||
0c22311b MN |
2828 | static void opt_pad(const char *arg) { |
2829 | fprintf(stderr, "Please use vfilters=pad\n"); | |
2830 | av_exit(1); | |
1ff93ffc TK |
2831 | } |
2832 | ||
63167088 RS |
2833 | static void opt_frame_pix_fmt(const char *arg) |
2834 | { | |
90da2b50 | 2835 | if (strcmp(arg, "list")) { |
718c7b18 | 2836 | frame_pix_fmt = av_get_pix_fmt(arg); |
90da2b50 SS |
2837 | if (frame_pix_fmt == PIX_FMT_NONE) { |
2838 | fprintf(stderr, "Unknown pixel format requested: %s\n", arg); | |
2839 | av_exit(1); | |
2840 | } | |
2841 | } else { | |
cedac882 | 2842 | show_pix_fmts(); |
296df4e7 | 2843 | av_exit(0); |
c3b95b1d | 2844 | } |
63167088 RS |
2845 | } |
2846 | ||
5fe03e38 RS |
2847 | static void opt_frame_aspect_ratio(const char *arg) |
2848 | { | |
2849 | int x = 0, y = 0; | |
2850 | double ar = 0; | |
2851 | const char *p; | |
815f98cc | 2852 | char *end; |
115329f1 | 2853 | |
5fe03e38 RS |
2854 | p = strchr(arg, ':'); |
2855 | if (p) { | |
815f98cc AJ |
2856 | x = strtol(arg, &end, 10); |
2857 | if (end == p) | |
2858 | y = strtol(end+1, &end, 10); | |
bb270c08 DB |
2859 | if (x > 0 && y > 0) |
2860 | ar = (double)x / (double)y; | |
5fe03e38 | 2861 | } else |
815f98cc | 2862 | ar = strtod(arg, NULL); |
5fe03e38 RS |
2863 | |
2864 | if (!ar) { | |
2865 | fprintf(stderr, "Incorrect aspect ratio specification.\n"); | |
296df4e7 | 2866 | av_exit(1); |
5fe03e38 RS |
2867 | } |
2868 | frame_aspect_ratio = ar; | |
2869 | } | |
2870 | ||
a5926d85 AJ |
2871 | static int opt_metadata(const char *opt, const char *arg) |
2872 | { | |
2873 | char *mid= strchr(arg, '='); | |
2874 | ||
2875 | if(!mid){ | |
2876 | fprintf(stderr, "Missing =\n"); | |
2877 | av_exit(1); | |
2878 | } | |
2879 | *mid++= 0; | |
2880 | ||
2881 | metadata_count++; | |
2882 | metadata= av_realloc(metadata, sizeof(*metadata)*metadata_count); | |
2883 | metadata[metadata_count-1].key = av_strdup(arg); | |
2884 | metadata[metadata_count-1].value= av_strdup(mid); | |
2885 | ||
2886 | return 0; | |
2887 | } | |
2888 | ||
b29f97d1 | 2889 | static void opt_qscale(const char *arg) |
85f07f22 | 2890 | { |
158c7f05 | 2891 | video_qscale = atof(arg); |
4e64bead | 2892 | if (video_qscale <= 0 || |
158c7f05 | 2893 | video_qscale > 255) { |
4e64bead | 2894 | fprintf(stderr, "qscale must be > 0.0 and <= 255\n"); |
296df4e7 | 2895 | av_exit(1); |
85f07f22 FB |
2896 | } |
2897 | } | |
2898 | ||
bb198e19 MN |
2899 | static void opt_top_field_first(const char *arg) |
2900 | { | |
2901 | top_field_first= atoi(arg); | |
2902 | } | |
2903 | ||
d18811bb | 2904 | static int opt_thread_count(const char *opt, const char *arg) |
9c3d33d6 | 2905 | { |
d18811bb | 2906 | thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX); |
b250f9c6 | 2907 | #if !HAVE_THREADS |
d8019eb5 AD |
2908 | if (verbose >= 0) |
2909 | fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n"); | |
842b556a | 2910 | #endif |
d18811bb | 2911 | return 0; |
9c3d33d6 MN |
2912 | } |
2913 | ||
ce1ee094 PR |
2914 | static void opt_audio_sample_fmt(const char *arg) |
2915 | { | |
2916 | if (strcmp(arg, "list")) | |
2917 | audio_sample_fmt = avcodec_get_sample_fmt(arg); | |
2918 | else { | |
2919 | list_fmts(avcodec_sample_fmt_string, SAMPLE_FMT_NB); | |
2920 | av_exit(0); | |
2921 | } | |
2922 | } | |
2923 | ||
c48da33c | 2924 | static int opt_audio_rate(const char *opt, const char *arg) |
85f07f22 | 2925 | { |
c48da33c SS |
2926 | audio_sample_rate = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX); |
2927 | return 0; | |
85f07f22 FB |
2928 | } |
2929 | ||
c48da33c | 2930 | static int opt_audio_channels(const char *opt, const char *arg) |
85f07f22 | 2931 | { |
c48da33c SS |
2932 | audio_channels = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX); |
2933 | return 0; | |
85f07f22 FB |
2934 | } |
2935 | ||
b29f97d1 | 2936 | static void opt_video_channel(const char *arg) |
a5df11ab FB |
2937 | { |
2938 | video_channel = strtol(arg, NULL, 0); | |
2939 | } | |
2940 | ||
e3ee3283 AB |
2941 | static void opt_video_standard(const char *arg) |
2942 | { | |
2943 | video_standard = av_strdup(arg); | |
2944 | } | |
2945 | ||
4a897224 | 2946 | static void opt_codec(int *pstream_copy, char **pcodec_name, |
cf7fc795 | 2947 | int codec_type, const char *arg) |
85f07f22 | 2948 | { |
4a897224 | 2949 | av_freep(pcodec_name); |
1629626f | 2950 | if (!strcmp(arg, "copy")) { |
cf7fc795 | 2951 | *pstream_copy = 1; |
85f07f22 | 2952 | } else { |
4a897224 | 2953 | *pcodec_name = av_strdup(arg); |
85f07f22 FB |
2954 | } |
2955 | } | |
2956 | ||
cf7fc795 FB |
2957 | static void opt_audio_codec(const char *arg) |
2958 | { | |
72415b2a | 2959 | opt_codec(&audio_stream_copy, &audio_codec_name, AVMEDIA_TYPE_AUDIO, arg); |
cf7fc795 FB |
2960 | } |
2961 | ||
b2a2197e MN |
2962 | static void opt_audio_tag(const char *arg) |
2963 | { | |
2964 | char *tail; | |
2965 | audio_codec_tag= strtol(arg, &tail, 0); | |
2966 | ||
2967 | if(!tail || *tail) | |
2968 | audio_codec_tag= arg[0] + (arg[1]<<8) + (arg[2]<<16) + (arg[3]<<24); | |
2969 | } | |
2970 | ||
2971 | static void opt_video_tag(const char *arg) | |
2972 | { | |
2973 | char *tail; | |
2974 | video_codec_tag= strtol(arg, &tail, 0); | |
2975 | ||
2976 | if(!tail || *tail) | |
2977 | video_codec_tag= arg[0] + (arg[1]<<8) + (arg[2]<<16) + (arg[3]<<24); | |
2978 | } | |
2979 | ||
b29f97d1 | 2980 | static void opt_video_codec(const char *arg) |
85f07f22 | 2981 | { |
72415b2a | 2982 | opt_codec(&video_stream_copy, &video_codec_name, AVMEDIA_TYPE_VIDEO, arg); |
cf7fc795 | 2983 | } |
85f07f22 | 2984 | |
cf7fc795 FB |
2985 | static void opt_subtitle_codec(const char *arg) |
2986 | { | |
72415b2a | 2987 | opt_codec(&subtitle_stream_copy, &subtitle_codec_name, AVMEDIA_TYPE_SUBTITLE, arg); |
85f07f22 FB |
2988 | } |
2989 | ||
27ad7d3a BC |
2990 | static void opt_subtitle_tag(const char *arg) |
2991 | { | |
2992 | char *tail; | |
2993 | subtitle_codec_tag= strtol(arg, &tail, 0); | |
2994 | ||
2995 | if(!tail || *tail) | |
2996 | subtitle_codec_tag= arg[0] + (arg[1]<<8) + (arg[2]<<16) + (arg[3]<<24); | |
2997 | } | |
2998 | ||
b29f97d1 | 2999 | static void opt_map(const char *arg) |
85f07f22 FB |
3000 | { |
3001 | AVStreamMap *m; | |
815f98cc | 3002 | char *p; |
85f07f22 | 3003 | |
85f07f22 FB |
3004 | m = &stream_maps[nb_stream_maps++]; |
3005 | ||
815f98cc | 3006 | m->file_index = strtol(arg, &p, 0); |
85f07f22 FB |
3007 | if (*p) |
3008 | p++; | |
a5dc85ef | 3009 | |
815f98cc | 3010 | m->stream_index = strtol(p, &p, 0); |
b4a3389e WG |
3011 | if (*p) { |
3012 | p++; | |
815f98cc | 3013 | m->sync_file_index = strtol(p, &p, 0); |
b4a3389e WG |
3014 | if (*p) |
3015 | p++; | |
815f98cc | 3016 | m->sync_stream_index = strtol(p, &p, 0); |
b4a3389e WG |
3017 | } else { |
3018 | m->sync_file_index = m->file_index; | |
3019 | m->sync_stream_index = m->stream_index; | |
3020 | } | |
85f07f22 FB |
3021 | } |
3022 | ||
0a38bafd PB |
3023 | static void opt_map_meta_data(const char *arg) |
3024 | { | |
3025 | AVMetaDataMap *m; | |
815f98cc | 3026 | char *p; |
115329f1 | 3027 | |
0a38bafd PB |
3028 | m = &meta_data_maps[nb_meta_data_maps++]; |
3029 | ||
815f98cc | 3030 | m->out_file = strtol(arg, &p, 0); |
0a38bafd PB |
3031 | if (*p) |
3032 | p++; | |
3033 | ||
815f98cc | 3034 | m->in_file = strtol(p, &p, 0); |
0a38bafd PB |
3035 | } |
3036 | ||
8833f375 MN |
3037 | static void opt_input_ts_scale(const char *arg) |
3038 | { | |
3039 | unsigned int stream; | |
3040 | double scale; | |
3041 | char *p; | |
3042 | ||
3043 | stream = strtol(arg, &p, 0); | |
3044 | if (*p) | |
3045 | p++; | |
3046 | scale= strtod(p, &p); | |
3047 | ||
3048 | if(stream >= MAX_STREAMS) | |
3049 | av_exit(1); | |
3050 | ||
3051 | input_files_ts_scale[nb_input_files][stream]= scale; | |
3052 | } | |
3053 | ||
b19221c8 | 3054 | static int opt_recording_time(const char *opt, const char *arg) |
85f07f22 | 3055 | { |
b19221c8 SS |
3056 | recording_time = parse_time_or_die(opt, arg, 1); |
3057 | return 0; | |
85f07f22 FB |
3058 | } |
3059 | ||
b19221c8 | 3060 | static int opt_start_time(const char *opt, const char *arg) |
8831db5c | 3061 | { |
b19221c8 SS |
3062 | start_time = parse_time_or_die(opt, arg, 1); |
3063 | return 0; | |
8831db5c MN |
3064 | } |
3065 | ||
b19221c8 | 3066 | static int opt_rec_timestamp(const char *opt, const char *arg) |
4568325a | 3067 | { |
b19221c8 SS |
3068 | rec_timestamp = parse_time_or_die(opt, arg, 0) / 1000000; |
3069 | return 0; | |
4568325a RS |
3070 | } |
3071 | ||
b19221c8 | 3072 | static int opt_input_ts_offset(const char *opt, const char *arg) |
a6a92a9a | 3073 | { |
b19221c8 SS |
3074 | input_ts_offset = parse_time_or_die(opt, arg, 1); |
3075 | return 0; | |
a6a92a9a WG |
3076 | } |
3077 | ||
4a897224 NG |
3078 | static enum CodecID find_codec_or_die(const char *name, int type, int encoder) |
3079 | { | |
f73008d8 | 3080 | const char *codec_string = encoder ? "encoder" : "decoder"; |
4a897224 NG |
3081 | AVCodec *codec; |
3082 | ||
3083 | if(!name) | |
3084 | return CODEC_ID_NONE; | |
3085 | codec = encoder ? | |
3086 | avcodec_find_encoder_by_name(name) : | |
3087 | avcodec_find_decoder_by_name(name); | |
3088 | if(!codec) { | |
49a06a4d | 3089 | fprintf(stderr, "Unknown %s '%s'\n", codec_string, name); |
296df4e7 | 3090 | av_exit(1); |
4a897224 NG |
3091 | } |
3092 | if(codec->type != type) { | |
49a06a4d | 3093 | fprintf(stderr, "Invalid %s type '%s'\n", codec_string, name); |
296df4e7 | 3094 | av_exit(1); |
4a897224 NG |
3095 | } |
3096 | return codec->id; | |
3097 | } | |
3098 | ||
b29f97d1 | 3099 | static void opt_input_file(const char *filename) |
85f07f22 FB |
3100 | { |
3101 | AVFormatContext *ic; | |
3102 | AVFormatParameters params, *ap = ¶ms; | |
a5abfd8f | 3103 | AVInputFormat *file_iformat = NULL; |
14bea432 | 3104 | int err, i, ret, rfps, rfps_base; |
bd1b79a1 | 3105 | int64_t timestamp; |
85f07f22 | 3106 | |
a5abfd8f | 3107 | if (last_asked_format) { |
8c8bf9ec SS |
3108 | if (!(file_iformat = av_find_input_format(last_asked_format))) { |
3109 | fprintf(stderr, "Unknown input format: '%s'\n", last_asked_format); | |
3110 | av_exit(1); | |
3111 | } | |
a5abfd8f EB |
3112 | last_asked_format = NULL; |
3113 | } | |
3114 | ||
b242baa4 FB |
3115 | if (!strcmp(filename, "-")) |
3116 | filename = "pipe:"; | |
3117 | ||
115329f1 | 3118 | using_stdin |= !strncmp(filename, "pipe:", 5) || |
9d58e0a9 | 3119 | !strcmp(filename, "/dev/stdin"); |
d9a916e2 | 3120 | |
85f07f22 | 3121 | /* get default parameters from command line */ |
8e2fd8e1 | 3122 | ic = avformat_alloc_context(); |
7ef61879 RP |
3123 | if (!ic) { |
3124 | print_error(filename, AVERROR(ENOMEM)); | |
3125 | av_exit(1); | |
3126 | } | |
4eb72c6b | 3127 | |
79fdaa4c | 3128 | memset(ap, 0, sizeof(*ap)); |
4eb72c6b | 3129 | ap->prealloced_context = 1; |
79fdaa4c FB |
3130 | ap->sample_rate = audio_sample_rate; |
3131 | ap->channels = audio_channels; | |
b33ece16 SS |
3132 | ap->time_base.den = frame_rate.num; |
3133 | ap->time_base.num = frame_rate.den; | |
0c22311b MN |
3134 | ap->width = frame_width; |
3135 | ap->height = frame_height; | |
63167088 | 3136 | ap->pix_fmt = frame_pix_fmt; |
a79db0f7 | 3137 | // ap->sample_fmt = audio_sample_fmt; //FIXME:not implemented in libavformat |
2639c651 RS |
3138 | ap->channel = video_channel; |
3139 | ap->standard = video_standard; | |
79fdaa4c | 3140 | |
3022cd10 | 3141 | set_context_opts(ic, avformat_opts, AV_OPT_FLAG_DECODING_PARAM); |
62600469 | 3142 | |
72415b2a SS |
3143 | ic->video_codec_id = find_codec_or_die(video_codec_name , AVMEDIA_TYPE_VIDEO , 0); |
3144 | ic->audio_codec_id = find_codec_or_die(audio_codec_name , AVMEDIA_TYPE_AUDIO , 0); | |
3145 | ic->subtitle_codec_id= find_codec_or_die(subtitle_codec_name, AVMEDIA_TYPE_SUBTITLE, 0); | |
1ad1eaad | 3146 | ic->flags |= AVFMT_FLAG_NONBLOCK; |
62600469 | 3147 | |
ecc544de JM |
3148 | if(pgmyuv_compatibility_hack) |
3149 | ic->video_codec_id= CODEC_ID_PGMYUV; | |
3150 | ||
79fdaa4c FB |
3151 | /* open the input file with generic libav function */ |
3152 | err = av_open_input_file(&ic, filename, file_iformat, 0, ap); | |
85f07f22 | 3153 | if (err < 0) { |
79fdaa4c | 3154 | print_error(filename, err); |
296df4e7 | 3155 | av_exit(1); |
85f07f22 | 3156 | } |
50e143c4 | 3157 | if(opt_programid) { |
6d3d3b83 MN |
3158 | int i, j; |
3159 | int found=0; | |
3160 | for(i=0; i<ic->nb_streams; i++){ | |
3161 | ic->streams[i]->discard= AVDISCARD_ALL; | |
3162 | } | |
3163 | for(i=0; i<ic->nb_programs; i++){ | |
3164 | AVProgram *p= ic->programs[i]; | |
3165 | if(p->id != opt_programid){ | |
3166 | p->discard = AVDISCARD_ALL; | |
3167 | }else{ | |
3168 | found=1; | |
3169 | for(j=0; j<p->nb_stream_indexes; j++){ | |
18590be6 | 3170 | ic->streams[p->stream_index[j]]->discard= AVDISCARD_DEFAULT; |
6d3d3b83 MN |
3171 | } |
3172 | } | |
3173 | } | |
3174 | if(!found){ | |
3175 | fprintf(stderr, "Specified program id not found\n"); | |
3176 | av_exit(1); | |
3177 | } | |
3178 | opt_programid=0; | |
50e143c4 | 3179 | } |
30bc6613 | 3180 | |
5894e1bb VP |
3181 | ic->loop_input = loop_input; |
3182 | ||
79fdaa4c FB |
3183 | /* If not enough info to get the stream parameters, we decode the |
3184 | first frames to get it. (used in mpeg case for example) */ | |
3185 | ret = av_find_stream_info(ic); | |
d8019eb5 | 3186 | if (ret < 0 && verbose >= 0) { |
85f07f22 | 3187 | fprintf(stderr, "%s: could not find codec parameters\n", filename); |
296df4e7 | 3188 | av_exit(1); |
85f07f22 FB |
3189 | } |
3190 | ||
bd1b79a1 MN |
3191 | timestamp = start_time; |
3192 | /* add the stream start time */ | |
3193 | if (ic->start_time != AV_NOPTS_VALUE) | |
3194 | timestamp += ic->start_time; | |
3195 | ||
254abc2e FB |
3196 | /* if seeking requested, we execute it */ |
3197 | if (start_time != 0) { | |
3ba1438d | 3198 | ret = av_seek_frame(ic, -1, timestamp, AVSEEK_FLAG_BACKWARD); |
254abc2e | 3199 | if (ret < 0) { |
115329f1 | 3200 | fprintf(stderr, "%s: could not seek to position %0.3f\n", |
254abc2e FB |
3201 | filename, (double)timestamp / AV_TIME_BASE); |
3202 | } | |
3203 | /* reset seek info */ | |
3204 | start_time = 0; | |
3205 | } | |
3206 | ||
85f07f22 FB |
3207 | /* update the current parameters so that they match the one of the input stream */ |
3208 | for(i=0;i<ic->nb_streams;i++) { | |
22b16e6a MN |
3209 | AVStream *st = ic->streams[i]; |
3210 | AVCodecContext *enc = st->codec; | |
40ccc754 | 3211 | avcodec_thread_init(enc, thread_count); |
85f07f22 | 3212 | switch(enc->codec_type) { |
72415b2a SS |
3213 | case AVMEDIA_TYPE_AUDIO: |
3214 | set_context_opts(enc, avcodec_opts[AVMEDIA_TYPE_AUDIO], AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM); | |
e0d2714a | 3215 | //fprintf(stderr, "\nInput Audio channels: %d", enc->channels); |
13367a46 | 3216 | channel_layout = enc->channel_layout; |
85f07f22 FB |
3217 | audio_channels = enc->channels; |
3218 | audio_sample_rate = enc->sample_rate; | |
a79db0f7 | 3219 | audio_sample_fmt = enc->sample_fmt; |
6488cf9b | 3220 | input_codecs[nb_icodecs++] = avcodec_find_decoder_by_name(audio_codec_name); |
b4aea108 | 3221 | if(audio_disable) |
22b16e6a | 3222 | st->discard= AVDISCARD_ALL; |
85f07f22 | 3223 | break; |
72415b2a SS |
3224 | case AVMEDIA_TYPE_VIDEO: |