ffmpeg / ffmpeg.c @ 043d2ff2
History | View | Annotate | Download (160 KB)
1 | 85f07f22 | Fabrice Bellard | /*
|
---|---|---|---|
2 | 115329f1 | Diego Biurrun | * FFmpeg main
|
3 | 01310af2 | Fabrice Bellard | * Copyright (c) 2000-2003 Fabrice Bellard
|
4 | 85f07f22 | Fabrice Bellard | *
|
5 | b78e7197 | Diego Biurrun | * This file is part of FFmpeg.
|
6 | *
|
||
7 | * FFmpeg is free software; you can redistribute it and/or
|
||
8 | bf5af568 | Fabrice Bellard | * modify it under the terms of the GNU Lesser General Public
|
9 | * License as published by the Free Software Foundation; either
|
||
10 | b78e7197 | Diego Biurrun | * version 2.1 of the License, or (at your option) any later version.
|
11 | 85f07f22 | Fabrice Bellard | *
|
12 | b78e7197 | Diego Biurrun | * FFmpeg is distributed in the hope that it will be useful,
|
13 | 85f07f22 | Fabrice Bellard | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 | bf5af568 | Fabrice Bellard | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 | * Lesser General Public License for more details.
|
||
16 | 85f07f22 | Fabrice Bellard | *
|
17 | bf5af568 | Fabrice Bellard | * You should have received a copy of the GNU Lesser General Public
|
18 | b78e7197 | Diego Biurrun | * License along with FFmpeg; if not, write to the Free Software
|
19 | 5509bffa | Diego Biurrun | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 | 85f07f22 | Fabrice Bellard | */
|
21 | 364a9607 | Diego Biurrun | |
22 | 7246177d | Aurelien Jacobs | /* needed for usleep() */
|
23 | d0feff2a | Diego Biurrun | #define _XOPEN_SOURCE 600 |
24 | 7246177d | Aurelien Jacobs | |
25 | 0f4e8165 | Ronald S. Bultje | #include "config.h" |
26 | #include <ctype.h> |
||
27 | #include <string.h> |
||
28 | #include <math.h> |
||
29 | #include <stdlib.h> |
||
30 | #include <errno.h> |
||
31 | d86b83f8 | Ramiro Polla | #include <signal.h> |
32 | 22f7a060 | Michael Niedermayer | #include <limits.h> |
33 | 7246177d | Aurelien Jacobs | #include <unistd.h> |
34 | 245976da | Diego Biurrun | #include "libavformat/avformat.h" |
35 | #include "libavdevice/avdevice.h" |
||
36 | #include "libswscale/swscale.h" |
||
37 | #include "libavcodec/opt.h" |
||
38 | ce1ee094 | Peter Ross | #include "libavcodec/audioconvert.h" |
39 | 63e8d976 | Stefano Sabatini | #include "libavcore/audioconvert.h" |
40 | 126b638e | Stefano Sabatini | #include "libavcore/parseutils.h" |
41 | ba7d6e79 | Stefano Sabatini | #include "libavcore/samplefmt.h" |
42 | 2b4abbd6 | Stefano Sabatini | #include "libavutil/colorspace.h" |
43 | 245976da | Diego Biurrun | #include "libavutil/fifo.h" |
44 | 2839dc97 | Stefano Sabatini | #include "libavutil/intreadwrite.h" |
45 | 718c7b18 | Stefano Sabatini | #include "libavutil/pixdesc.h" |
46 | 245976da | Diego Biurrun | #include "libavutil/avstring.h" |
47 | 335ee1aa | Måns Rullgård | #include "libavutil/libm.h" |
48 | 245976da | Diego Biurrun | #include "libavformat/os_support.h" |
49 | daf8e955 | Fabrice Bellard | |
50 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
51 | # include "libavfilter/avfilter.h" |
||
52 | # include "libavfilter/avfiltergraph.h" |
||
53 | # include "libavfilter/vsrc_buffer.h" |
||
54 | #endif
|
||
55 | |||
56 | b250f9c6 | Aurelien Jacobs | #if HAVE_SYS_RESOURCE_H
|
57 | 0a1b29de | Dave Yeo | #include <sys/types.h> |
58 | fc5607f8 | Reimar Döffinger | #include <sys/time.h> |
59 | b091aa44 | Ramiro Polla | #include <sys/resource.h> |
60 | b250f9c6 | Aurelien Jacobs | #elif HAVE_GETPROCESSTIMES
|
61 | 7495c306 | Ramiro Polla | #include <windows.h> |
62 | #endif
|
||
63 | fc5607f8 | Reimar Döffinger | #if HAVE_GETPROCESSMEMORYINFO
|
64 | #include <windows.h> |
||
65 | #include <psapi.h> |
||
66 | #endif
|
||
67 | 7495c306 | Ramiro Polla | |
68 | b250f9c6 | Aurelien Jacobs | #if HAVE_SYS_SELECT_H
|
69 | fb1d2d7b | Baptiste Coudurier | #include <sys/select.h> |
70 | #endif
|
||
71 | |||
72 | b250f9c6 | Aurelien Jacobs | #if HAVE_TERMIOS_H
|
73 | 85f07f22 | Fabrice Bellard | #include <fcntl.h> |
74 | #include <sys/ioctl.h> |
||
75 | #include <sys/time.h> |
||
76 | #include <termios.h> |
||
77 | b250f9c6 | Aurelien Jacobs | #elif HAVE_CONIO_H
|
78 | 4b54c6d0 | Ramiro Polla | #include <conio.h> |
79 | bdc4796f | Fabrice Bellard | #endif
|
80 | bf5af568 | Fabrice Bellard | #include <time.h> |
81 | 85f07f22 | Fabrice Bellard | |
82 | 01310af2 | Fabrice Bellard | #include "cmdutils.h" |
83 | |||
84 | b64b4134 | Måns Rullgård | #include "libavutil/avassert.h" |
85 | 2b18dcd0 | Michael Niedermayer | |
86 | 64555bd9 | Michael Niedermayer | const char program_name[] = "FFmpeg"; |
87 | ea9c581f | Stefano Sabatini | const int program_birth_year = 2000; |
88 | 86074ed1 | Stefano Sabatini | |
89 | 85f07f22 | Fabrice Bellard | /* select an input stream for an output stream */
|
90 | typedef struct AVStreamMap { |
||
91 | int file_index;
|
||
92 | int stream_index;
|
||
93 | b4a3389e | Wolfram Gloger | int sync_file_index;
|
94 | int sync_stream_index;
|
||
95 | 85f07f22 | Fabrice Bellard | } AVStreamMap; |
96 | |||
97 | 3f07e8db | Michael Niedermayer | /**
|
98 | * select an input file for an output file
|
||
99 | */
|
||
100 | 0a38bafd | Patrice Bensoussan | typedef struct AVMetaDataMap { |
101 | 1829e195 | Anton Khirnov | int file; //< file index |
102 | char type; //< type of metadata to copy -- (g)lobal, (s)tream, (c)hapter or (p)rogram |
||
103 | int index; //< stream/chapter/program number |
||
104 | 0a38bafd | Patrice Bensoussan | } AVMetaDataMap; |
105 | |||
106 | 91e96eba | Anton Khirnov | typedef struct AVChapterMap { |
107 | int in_file;
|
||
108 | int out_file;
|
||
109 | } AVChapterMap; |
||
110 | |||
111 | 580a6c57 | Diego Pettenò | static const OptionDef options[]; |
112 | 85f07f22 | Fabrice Bellard | |
113 | 60402344 | Jai Menon | #define MAX_FILES 100 |
114 | 84fd51e5 | Aurelien Jacobs | #if !FF_API_MAX_STREAMS
|
115 | #define MAX_STREAMS 1024 /* arbitrary sanity check value */ |
||
116 | #endif
|
||
117 | 85f07f22 | Fabrice Bellard | |
118 | ef6fc647 | Stefano Sabatini | static const char *last_asked_format = NULL; |
119 | 85f07f22 | Fabrice Bellard | static AVFormatContext *input_files[MAX_FILES];
|
120 | a6a92a9a | Wolfram Gloger | static int64_t input_files_ts_offset[MAX_FILES];
|
121 | 2c6958aa | Aurelien Jacobs | static double *input_files_ts_scale[MAX_FILES] = {NULL}; |
122 | 311e223f | Aurelien Jacobs | static AVCodec **input_codecs = NULL; |
123 | 85f07f22 | Fabrice Bellard | static int nb_input_files = 0; |
124 | 311e223f | Aurelien Jacobs | static int nb_input_codecs = 0; |
125 | 2c6958aa | Aurelien Jacobs | static int nb_input_files_ts_scale[MAX_FILES] = {0}; |
126 | 85f07f22 | Fabrice Bellard | |
127 | static AVFormatContext *output_files[MAX_FILES];
|
||
128 | 0a6d97b3 | Aurelien Jacobs | static AVCodec **output_codecs = NULL; |
129 | 85f07f22 | Fabrice Bellard | static int nb_output_files = 0; |
130 | 0a6d97b3 | Aurelien Jacobs | static int nb_output_codecs = 0; |
131 | 85f07f22 | Fabrice Bellard | |
132 | 3a8e8824 | Aurelien Jacobs | static AVStreamMap *stream_maps = NULL; |
133 | 85f07f22 | Fabrice Bellard | static int nb_stream_maps; |
134 | |||
135 | 1829e195 | Anton Khirnov | /* first item specifies output metadata, second is input */
|
136 | static AVMetaDataMap (*meta_data_maps)[2] = NULL; |
||
137 | 0a38bafd | Patrice Bensoussan | static int nb_meta_data_maps; |
138 | 477b1aea | Anton Khirnov | static int metadata_global_autocopy = 1; |
139 | d0abe80a | Anton Khirnov | static int metadata_streams_autocopy = 1; |
140 | static int metadata_chapters_autocopy = 1; |
||
141 | 0a38bafd | Patrice Bensoussan | |
142 | 91e96eba | Anton Khirnov | static AVChapterMap *chapter_maps = NULL; |
143 | static int nb_chapter_maps; |
||
144 | |||
145 | 006e8108 | Mike Scheutzow | /* indexed by output file stream index */
|
146 | e640f261 | Aurelien Jacobs | static int *streamid_map = NULL; |
147 | static int nb_streamid_map = 0; |
||
148 | 006e8108 | Mike Scheutzow | |
149 | 55cf1959 | Michael Niedermayer | static int frame_width = 0; |
150 | static int frame_height = 0; |
||
151 | 880e8ba7 | Roman Shaposhnik | static float frame_aspect_ratio = 0; |
152 | 644a9262 | Michael Niedermayer | static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; |
153 | 5d6e4c16 | Stefano Sabatini | static enum AVSampleFormat audio_sample_fmt = AV_SAMPLE_FMT_NONE; |
154 | cf7fc795 | Fabrice Bellard | static int max_frames[4] = {INT_MAX, INT_MAX, INT_MAX, INT_MAX}; |
155 | 89129c6b | Diego Biurrun | static AVRational frame_rate;
|
156 | 158c7f05 | Michael Niedermayer | static float video_qscale = 0; |
157 | 84f608f4 | Vidar Madsen | static uint16_t *intra_matrix = NULL; |
158 | static uint16_t *inter_matrix = NULL; |
||
159 | 464a631c | Morten Hustveit | static const char *video_rc_override_string=NULL; |
160 | 85f07f22 | Fabrice Bellard | static int video_disable = 0; |
161 | f3356e9c | Michael Niedermayer | static int video_discard = 0; |
162 | 4a897224 | Nicolas George | static char *video_codec_name = NULL; |
163 | 83a36b2e | Stefano Sabatini | static unsigned int video_codec_tag = 0; |
164 | 0fc2c0f6 | Matthieu Crapet | static char *video_language = NULL; |
165 | 85f07f22 | Fabrice Bellard | static int same_quality = 0; |
166 | cfcf0ffd | Fabrice Bellard | static int do_deinterlace = 0; |
167 | bb198e19 | Michael Niedermayer | static int top_field_first = -1; |
168 | f4f3223f | Michael Niedermayer | static int me_threshold = 0; |
169 | 1a11cbcc | Michael Niedermayer | static int intra_dc_precision = 8; |
170 | 5894e1bb | Víctor Paesa | static int loop_input = 0; |
171 | 8108551a | Todd Kirby | static int loop_output = AVFMT_NOOUTPUTLOOP; |
172 | 0888fd22 | Michael Niedermayer | static int qp_hist = 0; |
173 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
174 | static char *vfilters = NULL; |
||
175 | 41727b85 | Diego Elio Pettenò | static AVFilterGraph *graph = NULL; |
176 | 46847a33 | Michael Niedermayer | #endif
|
177 | 85f07f22 | Fabrice Bellard | |
178 | static int intra_only = 0; |
||
179 | static int audio_sample_rate = 44100; |
||
180 | 13367a46 | Benjamin Larsson | static int64_t channel_layout = 0; |
181 | c57c770d | Justin Ruggles | #define QSCALE_NONE -99999 |
182 | static float audio_qscale = QSCALE_NONE; |
||
183 | 85f07f22 | Fabrice Bellard | static int audio_disable = 0; |
184 | static int audio_channels = 1; |
||
185 | 4a897224 | Nicolas George | static char *audio_codec_name = NULL; |
186 | 83a36b2e | Stefano Sabatini | static unsigned int audio_codec_tag = 0; |
187 | cf7fc795 | Fabrice Bellard | static char *audio_language = NULL; |
188 | |||
189 | 11bf3847 | Aurelien Jacobs | static int subtitle_disable = 0; |
190 | 4a897224 | Nicolas George | static char *subtitle_codec_name = NULL; |
191 | cf7fc795 | Fabrice Bellard | static char *subtitle_language = NULL; |
192 | 83a36b2e | Stefano Sabatini | static unsigned int subtitle_codec_tag = 0; |
193 | 85f07f22 | Fabrice Bellard | |
194 | 17c88cb0 | Michael Niedermayer | static float mux_preload= 0.5; |
195 | static float mux_max_delay= 0.7; |
||
196 | 2db3c638 | Michael Niedermayer | |
197 | fc7ad2af | Stefano Sabatini | static int64_t recording_time = INT64_MAX;
|
198 | 8831db5c | Michael Niedermayer | static int64_t start_time = 0; |
199 | 25d34458 | Stefano Sabatini | static int64_t recording_timestamp = 0; |
200 | a6a92a9a | Wolfram Gloger | static int64_t input_ts_offset = 0; |
201 | 85f07f22 | Fabrice Bellard | static int file_overwrite = 0; |
202 | 4bf65e2a | Stefano Sabatini | static AVMetadata *metadata;
|
203 | 5727b222 | Fabrice Bellard | static int do_benchmark = 0; |
204 | a0663ba4 | Fabrice Bellard | static int do_hex_dump = 0; |
205 | 254abc2e | Fabrice Bellard | static int do_pkt_dump = 0; |
206 | 43f1708f | Juanjo | static int do_psnr = 0; |
207 | 5abdb4b1 | Fabrice Bellard | static int do_pass = 0; |
208 | ad16627f | Stefano Sabatini | static char *pass_logfilename_prefix = NULL; |
209 | 1629626f | Fabrice Bellard | static int audio_stream_copy = 0; |
210 | static int video_stream_copy = 0; |
||
211 | cf7fc795 | Fabrice Bellard | static int subtitle_stream_copy = 0; |
212 | 8858816d | Michael Niedermayer | static int video_sync_method= -1; |
213 | 986ebcdb | Michael Niedermayer | static int audio_sync_method= 0; |
214 | d4d226a8 | Michael Niedermayer | static float audio_drift_threshold= 0.1; |
215 | 72bd8100 | Michael Niedermayer | static int copy_ts= 0; |
216 | 0f27e6b4 | Baptiste Coudurier | static int copy_tb; |
217 | 76bdac6d | Stefano Sabatini | static int opt_shortest = 0; |
218 | 90ad92b3 | Michael Niedermayer | static int video_global_header = 0; |
219 | b60d1379 | Stefano Sabatini | static char *vstats_filename; |
220 | 032aa7df | Stefano Sabatini | static FILE *vstats_file;
|
221 | 50e143c4 | Nico Sabbi | static int opt_programid = 0; |
222 | 50e3477f | Wolfram Gloger | static int copy_initial_nonkeyframes = 0; |
223 | 5abdb4b1 | Fabrice Bellard | |
224 | bdfcbbed | Max Krasnyansky | static int rate_emu = 0; |
225 | |||
226 | a5df11ab | Fabrice Bellard | static int video_channel = 0; |
227 | df0cecdd | Luca Abeni | static char *video_standard; |
228 | 79a7c268 | Fabrice Bellard | |
229 | a9aa3467 | Michael Niedermayer | static int audio_volume = 256; |
230 | 8aa3ee32 | Max Krasnyansky | |
231 | f2abc559 | Baptiste Coudurier | static int exit_on_error = 0; |
232 | d9a916e2 | Charles Yates | static int using_stdin = 0; |
233 | f068206e | Bill Eldridge | static int verbose = 1; |
234 | 9c3d33d6 | Michael Niedermayer | static int thread_count= 1; |
235 | b51469a0 | Leon van Stuivenberg | static int q_pressed = 0; |
236 | 1008ceb3 | Michael Niedermayer | static int64_t video_size = 0; |
237 | static int64_t audio_size = 0; |
||
238 | static int64_t extra_size = 0; |
||
239 | a6a92a9a | Wolfram Gloger | static int nb_frames_dup = 0; |
240 | static int nb_frames_drop = 0; |
||
241 | 6e454c38 | Luca Abeni | static int input_sync; |
242 | 76bdac6d | Stefano Sabatini | static uint64_t limit_filesize = 0; |
243 | d2845b75 | Stefano Sabatini | static int force_fps = 0; |
244 | 4ad08021 | Nicolas George | static char *forced_key_frames = NULL; |
245 | d9a916e2 | Charles Yates | |
246 | a8482aab | Michael Niedermayer | static float dts_delta_threshold = 10; |
247 | 5b6d5596 | Michael Niedermayer | |
248 | e60da588 | Michael Niedermayer | static unsigned int sws_flags = SWS_BICUBIC; |
249 | 18a54b04 | Luca Abeni | |
250 | 29cc1c23 | Benoit Fouet | static int64_t timer_start;
|
251 | 8bbf6db9 | Michael Niedermayer | |
252 | 3321cb3f | Baptiste Coudurier | static uint8_t *audio_buf;
|
253 | static uint8_t *audio_out;
|
||
254 | 41727b85 | Diego Elio Pettenò | static unsigned int allocated_audio_out_size, allocated_audio_buf_size; |
255 | 3321cb3f | Baptiste Coudurier | |
256 | static short *samples; |
||
257 | |||
258 | 748c2fca | Michael Niedermayer | static AVBitStreamFilterContext *video_bitstream_filters=NULL; |
259 | static AVBitStreamFilterContext *audio_bitstream_filters=NULL; |
||
260 | e1cc8339 | Reimar Döffinger | static AVBitStreamFilterContext *subtitle_bitstream_filters=NULL; |
261 | 5b6d5596 | Michael Niedermayer | |
262 | ad16627f | Stefano Sabatini | #define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass" |
263 | 85f07f22 | Fabrice Bellard | |
264 | b4a3389e | Wolfram Gloger | struct AVInputStream;
|
265 | |||
266 | 85f07f22 | Fabrice Bellard | typedef struct AVOutputStream { |
267 | int file_index; /* file index */ |
||
268 | int index; /* stream index in the output file */ |
||
269 | int source_index; /* AVInputStream index */ |
||
270 | AVStream *st; /* stream in the output file */
|
||
271 | ec5517d5 | Fabrice Bellard | int encoding_needed; /* true if encoding needed for this stream */ |
272 | int frame_number;
|
||
273 | /* input pts and corresponding output pts
|
||
274 | for A/V sync */
|
||
275 | b4a3389e | Wolfram Gloger | //double sync_ipts; /* dts from the AVPacket of the demuxer in second units */
|
276 | struct AVInputStream *sync_ist; /* input stream to sync against */ |
||
277 | e928649b | Michael Niedermayer | int64_t sync_opts; /* output frame counter, could be changed to some true timestamp */ //FIXME look at frame_number |
278 | 0b6d358a | Nicolas George | AVBitStreamFilterContext *bitstream_filters; |
279 | 85f07f22 | Fabrice Bellard | /* video only */
|
280 | 07d0cdfc | Luca Abeni | int video_resample;
|
281 | a4d36c11 | Michael Niedermayer | AVFrame pict_tmp; /* temporary image for resampling */
|
282 | 18a54b04 | Luca Abeni | struct SwsContext *img_resample_ctx; /* for image resampling */ |
283 | int resample_height;
|
||
284 | 352666c1 | Eric Buehl | int resample_width;
|
285 | 01a3c821 | Jason Garrett-Glaser | int resample_pix_fmt;
|
286 | 34b10a57 | Dieter | |
287 | 352666c1 | Eric Buehl | /* full frame size of first frame */
|
288 | int original_height;
|
||
289 | int original_width;
|
||
290 | |||
291 | 4ad08021 | Nicolas George | /* forced key frames */
|
292 | int64_t *forced_kf_pts; |
||
293 | int forced_kf_count;
|
||
294 | int forced_kf_index;
|
||
295 | |||
296 | 85f07f22 | Fabrice Bellard | /* audio only */
|
297 | int audio_resample;
|
||
298 | ReSampleContext *resample; /* for audio resampling */
|
||
299 | 8afab686 | Stefano Sabatini | int resample_sample_fmt;
|
300 | int resample_channels;
|
||
301 | int resample_sample_rate;
|
||
302 | a79db0f7 | Peter Ross | int reformat_pair;
|
303 | AVAudioConvert *reformat_ctx; |
||
304 | 41dd680d | Michael Niedermayer | AVFifoBuffer *fifo; /* for compression: one audio fifo per codec */
|
305 | 5abdb4b1 | Fabrice Bellard | FILE *logfile; |
306 | 85f07f22 | Fabrice Bellard | } AVOutputStream; |
307 | |||
308 | 9fdf4b58 | Nicolas George | static AVOutputStream **output_streams_for_file[MAX_FILES] = { NULL }; |
309 | static int nb_output_streams_for_file[MAX_FILES] = { 0 }; |
||
310 | |||
311 | 85f07f22 | Fabrice Bellard | typedef struct AVInputStream { |
312 | int file_index;
|
||
313 | int index;
|
||
314 | AVStream *st; |
||
315 | int discard; /* true if stream data should be discarded */ |
||
316 | int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */ |
||
317 | 0c1a9eda | Zdenek Kabelac | int64_t sample_index; /* current sample */
|
318 | bdfcbbed | Max Krasnyansky | |
319 | int64_t start; /* time when read started */
|
||
320 | 254abc2e | Fabrice Bellard | int64_t next_pts; /* synthetic pts for cases where pkt.pts
|
321 | is not defined */
|
||
322 | e7d0374f | Roman Shaposhnik | int64_t pts; /* current pts */
|
323 | ff4905a5 | Michael Niedermayer | int is_start; /* is 1 at the start and after a discontinuity */ |
324 | 3ff0daf0 | Michael Niedermayer | int showed_multi_packet_warning;
|
325 | 55a7e946 | Wolfram Gloger | int is_past_recording_time;
|
326 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
327 | dfd57757 | Stefano Sabatini | AVFilterContext *output_video_filter; |
328 | 46847a33 | Michael Niedermayer | AVFilterContext *input_video_filter; |
329 | AVFrame *filter_frame; |
||
330 | int has_filter_frame;
|
||
331 | ecc8dada | S.N. Hemanth Meenakshisundaram | AVFilterBufferRef *picref; |
332 | 46847a33 | Michael Niedermayer | #endif
|
333 | 85f07f22 | Fabrice Bellard | } AVInputStream; |
334 | |||
335 | typedef struct AVInputFile { |
||
336 | int eof_reached; /* true if eof reached */ |
||
337 | int ist_index; /* index of first stream in ist_table */ |
||
338 | int buffer_size; /* current total buffer size */ |
||
339 | 79fdaa4c | Fabrice Bellard | int nb_streams; /* nb streams we are aware of */ |
340 | 85f07f22 | Fabrice Bellard | } AVInputFile; |
341 | |||
342 | b250f9c6 | Aurelien Jacobs | #if HAVE_TERMIOS_H
|
343 | bdc4796f | Fabrice Bellard | |
344 | 85f07f22 | Fabrice Bellard | /* init terminal so that we can grab keys */
|
345 | static struct termios oldtty; |
||
346 | 64f6e357 | Måns Rullgård | #endif
|
347 | 85f07f22 | Fabrice Bellard | |
348 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
349 | |||
350 | static int configure_filters(AVInputStream *ist, AVOutputStream *ost) |
||
351 | { |
||
352 | a9f3cb93 | Baptiste Coudurier | AVFilterContext *last_filter, *filter; |
353 | 46847a33 | Michael Niedermayer | /** filter graph containing all filters including input & output */
|
354 | AVCodecContext *codec = ost->st->codec; |
||
355 | AVCodecContext *icodec = ist->st->codec; |
||
356 | f7ead94c | Stefano Sabatini | FFSinkContext ffsink_ctx = { .pix_fmt = codec->pix_fmt }; |
357 | 7b3ea550 | Michael Niedermayer | AVRational sample_aspect_ratio; |
358 | 46847a33 | Michael Niedermayer | char args[255]; |
359 | 4ddf0d29 | Stefano Sabatini | int ret;
|
360 | 46847a33 | Michael Niedermayer | |
361 | e15aeea6 | Stefano Sabatini | graph = avfilter_graph_alloc(); |
362 | 46847a33 | Michael Niedermayer | |
363 | 7b3ea550 | Michael Niedermayer | if (ist->st->sample_aspect_ratio.num){
|
364 | sample_aspect_ratio = ist->st->sample_aspect_ratio; |
||
365 | }else
|
||
366 | sample_aspect_ratio = ist->st->codec->sample_aspect_ratio; |
||
367 | |||
368 | snprintf(args, 255, "%d:%d:%d:%d:%d:%d:%d", ist->st->codec->width, |
||
369 | ist->st->codec->height, ist->st->codec->pix_fmt, 1, AV_TIME_BASE,
|
||
370 | sample_aspect_ratio.num, sample_aspect_ratio.den); |
||
371 | |||
372 | 037be76e | Stefano Sabatini | ret = avfilter_graph_create_filter(&ist->input_video_filter, avfilter_get_by_name("buffer"),
|
373 | "src", args, NULL, graph); |
||
374 | if (ret < 0) |
||
375 | 4ddf0d29 | Stefano Sabatini | return ret;
|
376 | 037be76e | Stefano Sabatini | ret = avfilter_graph_create_filter(&ist->output_video_filter, &ffsink, |
377 | "out", NULL, &ffsink_ctx, graph); |
||
378 | if (ret < 0) |
||
379 | 4ddf0d29 | Stefano Sabatini | return ret;
|
380 | a9f3cb93 | Baptiste Coudurier | last_filter = ist->input_video_filter; |
381 | 46847a33 | Michael Niedermayer | |
382 | 5879ea6d | Stefano Sabatini | if (codec->width != icodec->width || codec->height != icodec->height) {
|
383 | 6e82e7fa | Baptiste Coudurier | snprintf(args, 255, "%d:%d:flags=0x%X", |
384 | 0c22311b | Michael Niedermayer | codec->width, |
385 | codec->height, |
||
386 | 46847a33 | Michael Niedermayer | (int)av_get_int(sws_opts, "sws_flags", NULL)); |
387 | 037be76e | Stefano Sabatini | if ((ret = avfilter_graph_create_filter(&filter, avfilter_get_by_name("scale"), |
388 | NULL, args, NULL, graph)) < 0) |
||
389 | 4ddf0d29 | Stefano Sabatini | return ret;
|
390 | if ((ret = avfilter_link(last_filter, 0, filter, 0)) < 0) |
||
391 | return ret;
|
||
392 | a9f3cb93 | Baptiste Coudurier | last_filter = filter; |
393 | 46847a33 | Michael Niedermayer | } |
394 | |||
395 | f96363df | Baptiste Coudurier | snprintf(args, sizeof(args), "flags=0x%X", (int)av_get_int(sws_opts, "sws_flags", NULL)); |
396 | graph->scale_sws_opts = av_strdup(args); |
||
397 | |||
398 | 79b90b25 | Baptiste Coudurier | if (vfilters) {
|
399 | 46847a33 | Michael Niedermayer | AVFilterInOut *outputs = av_malloc(sizeof(AVFilterInOut));
|
400 | AVFilterInOut *inputs = av_malloc(sizeof(AVFilterInOut));
|
||
401 | |||
402 | outputs->name = av_strdup("in");
|
||
403 | 7313132b | Stefano Sabatini | outputs->filter_ctx = last_filter; |
404 | 46847a33 | Michael Niedermayer | outputs->pad_idx = 0;
|
405 | outputs->next = NULL;
|
||
406 | |||
407 | inputs->name = av_strdup("out");
|
||
408 | 7313132b | Stefano Sabatini | inputs->filter_ctx = ist->output_video_filter; |
409 | 46847a33 | Michael Niedermayer | inputs->pad_idx = 0;
|
410 | inputs->next = NULL;
|
||
411 | |||
412 | 4ddf0d29 | Stefano Sabatini | if ((ret = avfilter_graph_parse(graph, vfilters, inputs, outputs, NULL)) < 0) |
413 | return ret;
|
||
414 | 46847a33 | Michael Niedermayer | av_freep(&vfilters); |
415 | } else {
|
||
416 | dfd57757 | Stefano Sabatini | if ((ret = avfilter_link(last_filter, 0, ist->output_video_filter, 0)) < 0) |
417 | 4ddf0d29 | Stefano Sabatini | return ret;
|
418 | 46847a33 | Michael Niedermayer | } |
419 | |||
420 | 2a24df93 | Stefano Sabatini | if ((ret = avfilter_graph_config(graph, NULL)) < 0) |
421 | 4ddf0d29 | Stefano Sabatini | return ret;
|
422 | 46847a33 | Michael Niedermayer | |
423 | dfd57757 | Stefano Sabatini | codec->width = ist->output_video_filter->inputs[0]->w;
|
424 | codec->height = ist->output_video_filter->inputs[0]->h;
|
||
425 | 7b3ea550 | Michael Niedermayer | codec->sample_aspect_ratio = ost->st->sample_aspect_ratio = |
426 | ist->output_video_filter->inputs[0]->sample_aspect_ratio;
|
||
427 | 46847a33 | Michael Niedermayer | |
428 | return 0; |
||
429 | } |
||
430 | #endif /* CONFIG_AVFILTER */ |
||
431 | |||
432 | 85f07f22 | Fabrice Bellard | static void term_exit(void) |
433 | { |
||
434 | 6b6bca64 | Michael Niedermayer | av_log(NULL, AV_LOG_QUIET, ""); |
435 | 64f6e357 | Måns Rullgård | #if HAVE_TERMIOS_H
|
436 | 85f07f22 | Fabrice Bellard | tcsetattr (0, TCSANOW, &oldtty);
|
437 | 9a9509e6 | Måns Rullgård | #endif
|
438 | 64f6e357 | Måns Rullgård | } |
439 | 85f07f22 | Fabrice Bellard | |
440 | e9a832e5 | Martin Storsjö | static volatile int received_sigterm = 0; |
441 | 9680a722 | Roumen Petrov | |
442 | static void |
||
443 | sigterm_handler(int sig)
|
||
444 | { |
||
445 | received_sigterm = sig; |
||
446 | term_exit(); |
||
447 | } |
||
448 | |||
449 | 85f07f22 | Fabrice Bellard | static void term_init(void) |
450 | { |
||
451 | b250f9c6 | Aurelien Jacobs | #if HAVE_TERMIOS_H
|
452 | 85f07f22 | Fabrice Bellard | struct termios tty;
|
453 | |||
454 | tcgetattr (0, &tty);
|
||
455 | oldtty = tty; |
||
456 | 9a9509e6 | Måns Rullgård | atexit(term_exit); |
457 | 85f07f22 | Fabrice Bellard | |
458 | tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP |
||
459 | |INLCR|IGNCR|ICRNL|IXON); |
||
460 | tty.c_oflag |= OPOST; |
||
461 | tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); |
||
462 | tty.c_cflag &= ~(CSIZE|PARENB); |
||
463 | tty.c_cflag |= CS8; |
||
464 | tty.c_cc[VMIN] = 1;
|
||
465 | tty.c_cc[VTIME] = 0;
|
||
466 | 115329f1 | Diego Biurrun | |
467 | 85f07f22 | Fabrice Bellard | tcsetattr (0, TCSANOW, &tty);
|
468 | d86b83f8 | Ramiro Polla | signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
|
469 | #endif
|
||
470 | 85f07f22 | Fabrice Bellard | |
471 | 9680a722 | Roumen Petrov | signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
|
472 | signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
|
||
473 | ffcc6e24 | Måns Rullgård | #ifdef SIGXCPU
|
474 | signal(SIGXCPU, sigterm_handler); |
||
475 | #endif
|
||
476 | 85f07f22 | Fabrice Bellard | } |
477 | |||
478 | /* read a key without blocking */
|
||
479 | static int read_key(void) |
||
480 | { |
||
481 | b250f9c6 | Aurelien Jacobs | #if HAVE_TERMIOS_H
|
482 | 9ddd71fc | François Revol | int n = 1; |
483 | 85f07f22 | Fabrice Bellard | unsigned char ch; |
484 | 9ddd71fc | François Revol | struct timeval tv;
|
485 | 85f07f22 | Fabrice Bellard | fd_set rfds; |
486 | |||
487 | FD_ZERO(&rfds); |
||
488 | FD_SET(0, &rfds);
|
||
489 | tv.tv_sec = 0;
|
||
490 | tv.tv_usec = 0;
|
||
491 | n = select(1, &rfds, NULL, NULL, &tv); |
||
492 | if (n > 0) { |
||
493 | cb09b2ed | Philip Gladstone | n = read(0, &ch, 1); |
494 | if (n == 1) |
||
495 | 85f07f22 | Fabrice Bellard | return ch;
|
496 | cb09b2ed | Philip Gladstone | |
497 | return n;
|
||
498 | 85f07f22 | Fabrice Bellard | } |
499 | b250f9c6 | Aurelien Jacobs | #elif HAVE_CONIO_H
|
500 | 4b54c6d0 | Ramiro Polla | if(kbhit())
|
501 | return(getch());
|
||
502 | d86b83f8 | Ramiro Polla | #endif
|
503 | 85f07f22 | Fabrice Bellard | return -1; |
504 | } |
||
505 | |||
506 | b51469a0 | Leon van Stuivenberg | static int decode_interrupt_cb(void) |
507 | { |
||
508 | return q_pressed || (q_pressed = read_key() == 'q'); |
||
509 | } |
||
510 | |||
511 | 639e4ec8 | Stefano Sabatini | static int ffmpeg_exit(int ret) |
512 | e5295c0d | Ramiro Polla | { |
513 | int i;
|
||
514 | |||
515 | /* close files */
|
||
516 | for(i=0;i<nb_output_files;i++) { |
||
517 | AVFormatContext *s = output_files[i]; |
||
518 | int j;
|
||
519 | 8767060c | Ramiro Polla | if (!(s->oformat->flags & AVFMT_NOFILE) && s->pb)
|
520 | e5295c0d | Ramiro Polla | url_fclose(s->pb); |
521 | 42f97696 | Martin Storsjö | avformat_free_context(s); |
522 | 9fdf4b58 | Nicolas George | av_free(output_streams_for_file[i]); |
523 | e5295c0d | Ramiro Polla | } |
524 | 2c6958aa | Aurelien Jacobs | for(i=0;i<nb_input_files;i++) { |
525 | e5295c0d | Ramiro Polla | av_close_input_file(input_files[i]); |
526 | 2c6958aa | Aurelien Jacobs | av_free(input_files_ts_scale[i]); |
527 | } |
||
528 | e5295c0d | Ramiro Polla | |
529 | av_free(intra_matrix); |
||
530 | av_free(inter_matrix); |
||
531 | |||
532 | if (vstats_file)
|
||
533 | fclose(vstats_file); |
||
534 | av_free(vstats_filename); |
||
535 | |||
536 | e640f261 | Aurelien Jacobs | av_free(streamid_map); |
537 | 311e223f | Aurelien Jacobs | av_free(input_codecs); |
538 | 0a6d97b3 | Aurelien Jacobs | av_free(output_codecs); |
539 | 3a8e8824 | Aurelien Jacobs | av_free(stream_maps); |
540 | 63e856df | Anton Khirnov | av_free(meta_data_maps); |
541 | e5295c0d | Ramiro Polla | |
542 | av_free(video_codec_name); |
||
543 | av_free(audio_codec_name); |
||
544 | av_free(subtitle_codec_name); |
||
545 | |||
546 | av_free(video_standard); |
||
547 | |||
548 | a5c33faa | Reimar Döffinger | uninit_opts(); |
549 | 3321cb3f | Baptiste Coudurier | av_free(audio_buf); |
550 | av_free(audio_out); |
||
551 | b8919a30 | Michael Niedermayer | allocated_audio_buf_size= allocated_audio_out_size= 0;
|
552 | 3321cb3f | Baptiste Coudurier | av_free(samples); |
553 | 5973490a | Baptiste Coudurier | |
554 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
555 | avfilter_uninit(); |
||
556 | #endif
|
||
557 | |||
558 | e5295c0d | Ramiro Polla | if (received_sigterm) {
|
559 | fprintf(stderr, |
||
560 | "Received signal %d: terminating.\n",
|
||
561 | (int) received_sigterm);
|
||
562 | exit (255);
|
||
563 | } |
||
564 | |||
565 | 296df4e7 | Ramiro Polla | exit(ret); /* not all OS-es handle main() return value */
|
566 | return ret;
|
||
567 | dba249ab | Aurelien Jacobs | } |
568 | |||
569 | /* similar to ff_dynarray_add() and av_fast_realloc() */
|
||
570 | static void *grow_array(void *array, int elem_size, int *size, int new_size) |
||
571 | { |
||
572 | if (new_size >= INT_MAX / elem_size) {
|
||
573 | fprintf(stderr, "Array too big.\n");
|
||
574 | ffmpeg_exit(1);
|
||
575 | } |
||
576 | if (*size < new_size) {
|
||
577 | uint8_t *tmp = av_realloc(array, new_size*elem_size); |
||
578 | if (!tmp) {
|
||
579 | fprintf(stderr, "Could not alloc buffer.\n");
|
||
580 | ffmpeg_exit(1);
|
||
581 | } |
||
582 | memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size);
|
||
583 | *size = new_size; |
||
584 | return tmp;
|
||
585 | } |
||
586 | return array;
|
||
587 | e5295c0d | Ramiro Polla | } |
588 | |||
589 | aa1de0d9 | Ronald S. Bultje | static void choose_sample_fmt(AVStream *st, AVCodec *codec) |
590 | { |
||
591 | if(codec && codec->sample_fmts){
|
||
592 | 5d6e4c16 | Stefano Sabatini | const enum AVSampleFormat *p= codec->sample_fmts; |
593 | aa1de0d9 | Ronald S. Bultje | for(; *p!=-1; p++){ |
594 | if(*p == st->codec->sample_fmt)
|
||
595 | break;
|
||
596 | } |
||
597 | 5a8d1075 | Stefano Sabatini | if (*p == -1) { |
598 | av_log(NULL, AV_LOG_WARNING,
|
||
599 | "Incompatible sample format '%s' for codec '%s', auto-selecting format '%s'\n",
|
||
600 | av_get_sample_fmt_name(st->codec->sample_fmt), |
||
601 | codec->name, |
||
602 | av_get_sample_fmt_name(codec->sample_fmts[0]));
|
||
603 | aa1de0d9 | Ronald S. Bultje | st->codec->sample_fmt = codec->sample_fmts[0];
|
604 | 5a8d1075 | Stefano Sabatini | } |
605 | aa1de0d9 | Ronald S. Bultje | } |
606 | } |
||
607 | |||
608 | 10d0f5e0 | Michael Niedermayer | static void choose_sample_rate(AVStream *st, AVCodec *codec) |
609 | { |
||
610 | if(codec && codec->supported_samplerates){
|
||
611 | const int *p= codec->supported_samplerates; |
||
612 | 3c5e1b36 | Baptiste Coudurier | int best=0; |
613 | 10d0f5e0 | Michael Niedermayer | int best_dist=INT_MAX;
|
614 | for(; *p; p++){
|
||
615 | int dist= abs(st->codec->sample_rate - *p);
|
||
616 | if(dist < best_dist){
|
||
617 | best_dist= dist; |
||
618 | best= *p; |
||
619 | } |
||
620 | } |
||
621 | ff866063 | Michael Niedermayer | if(best_dist){
|
622 | av_log(st->codec, AV_LOG_WARNING, "Requested sampling rate unsupported using closest supported (%d)\n", best);
|
||
623 | } |
||
624 | 10d0f5e0 | Michael Niedermayer | st->codec->sample_rate= best; |
625 | } |
||
626 | } |
||
627 | |||
628 | aa1de0d9 | Ronald S. Bultje | static void choose_pixel_fmt(AVStream *st, AVCodec *codec) |
629 | { |
||
630 | if(codec && codec->pix_fmts){
|
||
631 | const enum PixelFormat *p= codec->pix_fmts; |
||
632 | b26847b7 | Michael Niedermayer | if(st->codec->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL){
|
633 | if(st->codec->codec_id==CODEC_ID_MJPEG){
|
||
634 | p= (const enum PixelFormat[]){PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P, PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_NONE}; |
||
635 | }else if(st->codec->codec_id==CODEC_ID_LJPEG){ |
||
636 | p= (const enum PixelFormat[]){PIX_FMT_YUVJ420P, PIX_FMT_YUVJ422P, PIX_FMT_YUVJ444P, PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_BGRA, PIX_FMT_NONE}; |
||
637 | } |
||
638 | } |
||
639 | aa1de0d9 | Ronald S. Bultje | for(; *p!=-1; p++){ |
640 | if(*p == st->codec->pix_fmt)
|
||
641 | break;
|
||
642 | } |
||
643 | b26847b7 | Michael Niedermayer | if(*p == -1) |
644 | aa1de0d9 | Ronald S. Bultje | st->codec->pix_fmt = codec->pix_fmts[0];
|
645 | } |
||
646 | } |
||
647 | |||
648 | ec1ca41c | Carl Eugen Hoyos | static AVOutputStream *new_output_stream(AVFormatContext *oc, int file_idx) |
649 | { |
||
650 | int idx = oc->nb_streams - 1; |
||
651 | AVOutputStream *ost; |
||
652 | |||
653 | output_streams_for_file[file_idx] = |
||
654 | grow_array(output_streams_for_file[file_idx], |
||
655 | sizeof(*output_streams_for_file[file_idx]),
|
||
656 | &nb_output_streams_for_file[file_idx], |
||
657 | oc->nb_streams); |
||
658 | ost = output_streams_for_file[file_idx][idx] = |
||
659 | av_mallocz(sizeof(AVOutputStream));
|
||
660 | if (!ost) {
|
||
661 | fprintf(stderr, "Could not alloc output stream\n");
|
||
662 | ffmpeg_exit(1);
|
||
663 | } |
||
664 | ost->file_index = file_idx; |
||
665 | ost->index = idx; |
||
666 | return ost;
|
||
667 | } |
||
668 | |||
669 | b29f97d1 | Zdenek Kabelac | static int read_ffserver_streams(AVFormatContext *s, const char *filename) |
670 | 85f07f22 | Fabrice Bellard | { |
671 | 79fdaa4c | Fabrice Bellard | int i, err;
|
672 | 85f07f22 | Fabrice Bellard | AVFormatContext *ic; |
673 | 3438d82d | Baptiste Coudurier | int nopts = 0; |
674 | 85f07f22 | Fabrice Bellard | |
675 | 79fdaa4c | Fabrice Bellard | err = av_open_input_file(&ic, filename, NULL, FFM_PACKET_SIZE, NULL); |
676 | if (err < 0) |
||
677 | return err;
|
||
678 | 85f07f22 | Fabrice Bellard | /* copy stream format */
|
679 | b67f3d65 | Rocky Cardwell | s->nb_streams = 0;
|
680 | 85f07f22 | Fabrice Bellard | for(i=0;i<ic->nb_streams;i++) { |
681 | AVStream *st; |
||
682 | d9521cb1 | Ronald S. Bultje | AVCodec *codec; |
683 | 1e491e29 | Michael Niedermayer | |
684 | b67f3d65 | Rocky Cardwell | s->nb_streams++; |
685 | |||
686 | f37f8d4c | Alex Beregszaszi | // FIXME: a more elegant solution is needed
|
687 | e1031171 | Alex Beregszaszi | st = av_mallocz(sizeof(AVStream));
|
688 | 85f07f22 | Fabrice Bellard | memcpy(st, ic->streams[i], sizeof(AVStream));
|
689 | f37f8d4c | Alex Beregszaszi | st->codec = avcodec_alloc_context(); |
690 | 7ef61879 | Ramiro Polla | if (!st->codec) {
|
691 | print_error(filename, AVERROR(ENOMEM)); |
||
692 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
693 | 7ef61879 | Ramiro Polla | } |
694 | d9521cb1 | Ronald S. Bultje | avcodec_copy_context(st->codec, ic->streams[i]->codec); |
695 | 85f07f22 | Fabrice Bellard | s->streams[i] = st; |
696 | 837d248d | Baptiste Coudurier | |
697 | d9521cb1 | Ronald S. Bultje | codec = avcodec_find_encoder(st->codec->codec_id); |
698 | if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
|
||
699 | if (audio_stream_copy) {
|
||
700 | st->stream_copy = 1;
|
||
701 | } else
|
||
702 | choose_sample_fmt(st, codec); |
||
703 | } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { |
||
704 | if (video_stream_copy) {
|
||
705 | st->stream_copy = 1;
|
||
706 | } else
|
||
707 | choose_pixel_fmt(st, codec); |
||
708 | } |
||
709 | 837d248d | Baptiste Coudurier | |
710 | 3438d82d | Baptiste Coudurier | if(st->codec->flags & CODEC_FLAG_BITEXACT)
|
711 | nopts = 1;
|
||
712 | b67f3d65 | Rocky Cardwell | |
713 | new_output_stream(s, nb_output_files); |
||
714 | 85f07f22 | Fabrice Bellard | } |
715 | |||
716 | 3438d82d | Baptiste Coudurier | if (!nopts)
|
717 | s->timestamp = av_gettime(); |
||
718 | |||
719 | 85f07f22 | Fabrice Bellard | av_close_input_file(ic); |
720 | return 0; |
||
721 | } |
||
722 | |||
723 | b4a3389e | Wolfram Gloger | static double |
724 | get_sync_ipts(const AVOutputStream *ost)
|
||
725 | { |
||
726 | const AVInputStream *ist = ost->sync_ist;
|
||
727 | fec401f7 | Michael Niedermayer | return (double)(ist->pts - start_time)/AV_TIME_BASE; |
728 | b4a3389e | Wolfram Gloger | } |
729 | |||
730 | 748c2fca | Michael Niedermayer | static void write_frame(AVFormatContext *s, AVPacket *pkt, AVCodecContext *avctx, AVBitStreamFilterContext *bsfc){ |
731 | 0ac07031 | Michael Niedermayer | int ret;
|
732 | |||
733 | 748c2fca | Michael Niedermayer | while(bsfc){
|
734 | AVPacket new_pkt= *pkt; |
||
735 | int a= av_bitstream_filter_filter(bsfc, avctx, NULL, |
||
736 | &new_pkt.data, &new_pkt.size, |
||
737 | pkt->data, pkt->size, |
||
738 | cc947f04 | Jean-Daniel Dupas | pkt->flags & AV_PKT_FLAG_KEY); |
739 | 7055cdac | Benoit Fouet | if(a>0){ |
740 | 748c2fca | Michael Niedermayer | av_free_packet(pkt); |
741 | new_pkt.destruct= av_destruct_packet; |
||
742 | 7055cdac | Benoit Fouet | } else if(a<0){ |
743 | 1f8e32cd | Diego Biurrun | fprintf(stderr, "%s failed for stream %d, codec %s",
|
744 | bsfc->filter->name, pkt->stream_index, |
||
745 | avctx->codec ? avctx->codec->name : "copy");
|
||
746 | 7055cdac | Benoit Fouet | print_error("", a);
|
747 | f2abc559 | Baptiste Coudurier | if (exit_on_error)
|
748 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
749 | 748c2fca | Michael Niedermayer | } |
750 | *pkt= new_pkt; |
||
751 | |||
752 | bsfc= bsfc->next; |
||
753 | } |
||
754 | |||
755 | 0ac07031 | Michael Niedermayer | ret= av_interleaved_write_frame(s, pkt); |
756 | if(ret < 0){ |
||
757 | print_error("av_interleaved_write_frame()", ret);
|
||
758 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
759 | 0ac07031 | Michael Niedermayer | } |
760 | 748c2fca | Michael Niedermayer | } |
761 | |||
762 | 817b23ff | Fabrice Bellard | #define MAX_AUDIO_PACKET_SIZE (128 * 1024) |
763 | 85f07f22 | Fabrice Bellard | |
764 | 115329f1 | Diego Biurrun | static void do_audio_out(AVFormatContext *s, |
765 | AVOutputStream *ost, |
||
766 | 85f07f22 | Fabrice Bellard | AVInputStream *ist, |
767 | unsigned char *buf, int size) |
||
768 | { |
||
769 | 0c1a9eda | Zdenek Kabelac | uint8_t *buftmp; |
770 | 15bfe412 | Michael Niedermayer | int64_t audio_out_size, audio_buf_size; |
771 | 7a086a85 | Michael Niedermayer | int64_t allocated_for_size= size; |
772 | d66c7abc | Sylvain Corré | |
773 | 8afab686 | Stefano Sabatini | int size_out, frame_bytes, ret, resample_changed;
|
774 | 01f4895c | Michael Niedermayer | AVCodecContext *enc= ost->st->codec; |
775 | 2886f311 | Andreas Öman | AVCodecContext *dec= ist->st->codec; |
776 | ba7d6e79 | Stefano Sabatini | int osize= av_get_bits_per_sample_fmt(enc->sample_fmt)/8; |
777 | int isize= av_get_bits_per_sample_fmt(dec->sample_fmt)/8; |
||
778 | 15bfe412 | Michael Niedermayer | const int coded_bps = av_get_bits_per_sample(enc->codec->id); |
779 | |||
780 | 7a086a85 | Michael Niedermayer | need_realloc:
|
781 | audio_buf_size= (allocated_for_size + isize*dec->channels - 1) / (isize*dec->channels);
|
||
782 | 15bfe412 | Michael Niedermayer | audio_buf_size= (audio_buf_size*enc->sample_rate + dec->sample_rate) / dec->sample_rate; |
783 | 8b484d0f | Vitor Sessak | audio_buf_size= audio_buf_size*2 + 10000; //safety factors for the deprecated resampling API |
784 | 79c85beb | Justin Ruggles | audio_buf_size= FFMAX(audio_buf_size, enc->frame_size); |
785 | 15bfe412 | Michael Niedermayer | audio_buf_size*= osize*enc->channels; |
786 | |||
787 | audio_out_size= FFMAX(audio_buf_size, enc->frame_size * osize * enc->channels); |
||
788 | if(coded_bps > 8*osize) |
||
789 | audio_out_size= audio_out_size * coded_bps / (8*osize);
|
||
790 | audio_out_size += FF_MIN_BUFFER_SIZE; |
||
791 | |||
792 | if(audio_out_size > INT_MAX || audio_buf_size > INT_MAX){
|
||
793 | fprintf(stderr, "Buffer sizes too large\n");
|
||
794 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
795 | 15bfe412 | Michael Niedermayer | } |
796 | 85f07f22 | Fabrice Bellard | |
797 | b8919a30 | Michael Niedermayer | av_fast_malloc(&audio_buf, &allocated_audio_buf_size, audio_buf_size); |
798 | av_fast_malloc(&audio_out, &allocated_audio_out_size, audio_out_size); |
||
799 | e185a2f6 | Michael Niedermayer | if (!audio_buf || !audio_out){
|
800 | fprintf(stderr, "Out of memory in do_audio_out\n");
|
||
801 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
802 | e185a2f6 | Michael Niedermayer | } |
803 | d66c7abc | Sylvain Corré | |
804 | 2886f311 | Andreas Öman | if (enc->channels != dec->channels)
|
805 | ost->audio_resample = 1;
|
||
806 | |||
807 | 8afab686 | Stefano Sabatini | resample_changed = ost->resample_sample_fmt != dec->sample_fmt || |
808 | ost->resample_channels != dec->channels || |
||
809 | ost->resample_sample_rate != dec->sample_rate; |
||
810 | |||
811 | if ((ost->audio_resample && !ost->resample) || resample_changed) {
|
||
812 | if (resample_changed) {
|
||
813 | av_log(NULL, AV_LOG_INFO, "Input stream #%d.%d frame changed from rate:%d fmt:%s ch:%d to rate:%d fmt:%s ch:%d\n", |
||
814 | ist->file_index, ist->index, |
||
815 | ost->resample_sample_rate, av_get_sample_fmt_name(ost->resample_sample_fmt), ost->resample_channels, |
||
816 | dec->sample_rate, av_get_sample_fmt_name(dec->sample_fmt), dec->channels); |
||
817 | ost->resample_sample_fmt = dec->sample_fmt; |
||
818 | ost->resample_channels = dec->channels; |
||
819 | ost->resample_sample_rate = dec->sample_rate; |
||
820 | if (ost->resample)
|
||
821 | audio_resample_close(ost->resample); |
||
822 | } |
||
823 | 0f16f725 | Stefano Sabatini | /* if audio_sync_method is >1 the resampler is needed for audio drift compensation */
|
824 | if (audio_sync_method <= 1 && |
||
825 | ost->resample_sample_fmt == enc->sample_fmt && |
||
826 | 8afab686 | Stefano Sabatini | ost->resample_channels == enc->channels && |
827 | ost->resample_sample_rate == enc->sample_rate) { |
||
828 | ost->resample = NULL;
|
||
829 | ost->audio_resample = 0;
|
||
830 | } else {
|
||
831 | f6715848 | Stefano Sabatini | if (dec->sample_fmt != AV_SAMPLE_FMT_S16)
|
832 | fprintf(stderr, "Warning, using s16 intermediate sample format for resampling\n");
|
||
833 | ost->resample = av_audio_resample_init(enc->channels, dec->channels, |
||
834 | enc->sample_rate, dec->sample_rate, |
||
835 | enc->sample_fmt, dec->sample_fmt, |
||
836 | 16, 10, 0, 0.8); |
||
837 | if (!ost->resample) {
|
||
838 | fprintf(stderr, "Can not resample %d channels @ %d Hz to %d channels @ %d Hz\n",
|
||
839 | dec->channels, dec->sample_rate, |
||
840 | enc->channels, enc->sample_rate); |
||
841 | ffmpeg_exit(1);
|
||
842 | } |
||
843 | 8afab686 | Stefano Sabatini | } |
844 | 2886f311 | Andreas Öman | } |
845 | |||
846 | 5d6e4c16 | Stefano Sabatini | #define MAKE_SFMT_PAIR(a,b) ((a)+AV_SAMPLE_FMT_NB*(b))
|
847 | d1e3c6fd | Baptiste Coudurier | if (!ost->audio_resample && dec->sample_fmt!=enc->sample_fmt &&
|
848 | a79db0f7 | Peter Ross | MAKE_SFMT_PAIR(enc->sample_fmt,dec->sample_fmt)!=ost->reformat_pair) { |
849 | if (ost->reformat_ctx)
|
||
850 | av_audio_convert_free(ost->reformat_ctx); |
||
851 | ost->reformat_ctx = av_audio_convert_alloc(enc->sample_fmt, 1,
|
||
852 | dec->sample_fmt, 1, NULL, 0); |
||
853 | if (!ost->reformat_ctx) {
|
||
854 | fprintf(stderr, "Cannot convert %s sample format to %s sample format\n",
|
||
855 | ba7d6e79 | Stefano Sabatini | av_get_sample_fmt_name(dec->sample_fmt), |
856 | av_get_sample_fmt_name(enc->sample_fmt)); |
||
857 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
858 | a79db0f7 | Peter Ross | } |
859 | ost->reformat_pair=MAKE_SFMT_PAIR(enc->sample_fmt,dec->sample_fmt); |
||
860 | } |
||
861 | |||
862 | 986ebcdb | Michael Niedermayer | if(audio_sync_method){
|
863 | 115329f1 | Diego Biurrun | double delta = get_sync_ipts(ost) * enc->sample_rate - ost->sync_opts
|
864 | 37f5a713 | Justin Ruggles | - av_fifo_size(ost->fifo)/(enc->channels * 2);
|
865 | double idelta= delta*dec->sample_rate / enc->sample_rate;
|
||
866 | ff19d16b | Justin Ruggles | int byte_delta= ((int)idelta)*2*dec->channels; |
867 | ff4905a5 | Michael Niedermayer | |
868 | 986ebcdb | Michael Niedermayer | //FIXME resample delay
|
869 | if(fabs(delta) > 50){ |
||
870 | d4d226a8 | Michael Niedermayer | if(ist->is_start || fabs(delta) > audio_drift_threshold*enc->sample_rate){
|
871 | ff4905a5 | Michael Niedermayer | if(byte_delta < 0){ |
872 | f41dd5aa | Michael Niedermayer | byte_delta= FFMAX(byte_delta, -size); |
873 | ff4905a5 | Michael Niedermayer | size += byte_delta; |
874 | buf -= byte_delta; |
||
875 | if(verbose > 2) |
||
876 | fprintf(stderr, "discarding %d audio samples\n", (int)-delta); |
||
877 | if(!size)
|
||
878 | return;
|
||
879 | ist->is_start=0;
|
||
880 | }else{
|
||
881 | static uint8_t *input_tmp= NULL; |
||
882 | input_tmp= av_realloc(input_tmp, byte_delta + size); |
||
883 | |||
884 | 7a086a85 | Michael Niedermayer | if(byte_delta > allocated_for_size - size){
|
885 | allocated_for_size= byte_delta + (int64_t)size; |
||
886 | goto need_realloc;
|
||
887 | } |
||
888 | ist->is_start=0;
|
||
889 | ff4905a5 | Michael Niedermayer | |
890 | memset(input_tmp, 0, byte_delta);
|
||
891 | memcpy(input_tmp + byte_delta, buf, size); |
||
892 | buf= input_tmp; |
||
893 | size += byte_delta; |
||
894 | if(verbose > 2) |
||
895 | fprintf(stderr, "adding %d audio samples of silence\n", (int)delta); |
||
896 | } |
||
897 | }else if(audio_sync_method>1){ |
||
898 | f66e4f5f | Reimar Döffinger | int comp= av_clip(delta, -audio_sync_method, audio_sync_method);
|
899 | b926b628 | Michael Niedermayer | av_assert0(ost->audio_resample); |
900 | ff4905a5 | Michael Niedermayer | if(verbose > 2) |
901 | fprintf(stderr, "compensating audio timestamp drift:%f compensation:%d in:%d\n", delta, comp, enc->sample_rate);
|
||
902 | 41dd680d | Michael Niedermayer | // 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));
|
903 | ff4905a5 | Michael Niedermayer | av_resample_compensate(*(struct AVResampleContext**)ost->resample, comp, enc->sample_rate);
|
904 | } |
||
905 | 115329f1 | Diego Biurrun | } |
906 | 986ebcdb | Michael Niedermayer | }else
|
907 | b4a3389e | Wolfram Gloger | ost->sync_opts= lrintf(get_sync_ipts(ost) * enc->sample_rate) |
908 | 37f5a713 | Justin Ruggles | - av_fifo_size(ost->fifo)/(enc->channels * 2); //FIXME wrong |
909 | 85f07f22 | Fabrice Bellard | |
910 | if (ost->audio_resample) {
|
||
911 | buftmp = audio_buf; |
||
912 | 115329f1 | Diego Biurrun | size_out = audio_resample(ost->resample, |
913 | 85f07f22 | Fabrice Bellard | (short *)buftmp, (short *)buf, |
914 | 37f5a713 | Justin Ruggles | size / (dec->channels * isize)); |
915 | 287ba997 | Peter Ross | size_out = size_out * enc->channels * osize; |
916 | 85f07f22 | Fabrice Bellard | } else {
|
917 | buftmp = buf; |
||
918 | size_out = size; |
||
919 | } |
||
920 | |||
921 | d1e3c6fd | Baptiste Coudurier | if (!ost->audio_resample && dec->sample_fmt!=enc->sample_fmt) {
|
922 | a79db0f7 | Peter Ross | const void *ibuf[6]= {buftmp}; |
923 | 80f47250 | Michael Niedermayer | void *obuf[6]= {audio_buf}; |
924 | 287ba997 | Peter Ross | int istride[6]= {isize}; |
925 | int ostride[6]= {osize}; |
||
926 | a79db0f7 | Peter Ross | int len= size_out/istride[0]; |
927 | if (av_audio_convert(ost->reformat_ctx, obuf, ostride, ibuf, istride, len)<0) { |
||
928 | printf("av_audio_convert() failed\n");
|
||
929 | f2abc559 | Baptiste Coudurier | if (exit_on_error)
|
930 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
931 | a79db0f7 | Peter Ross | return;
|
932 | } |
||
933 | 80f47250 | Michael Niedermayer | buftmp = audio_buf; |
934 | 287ba997 | Peter Ross | size_out = len*osize; |
935 | a79db0f7 | Peter Ross | } |
936 | |||
937 | 85f07f22 | Fabrice Bellard | /* now encode as many frames as possible */
|
938 | a0663ba4 | Fabrice Bellard | if (enc->frame_size > 1) { |
939 | 85f07f22 | Fabrice Bellard | /* output resampled raw samples */
|
940 | 41dd680d | Michael Niedermayer | if (av_fifo_realloc2(ost->fifo, av_fifo_size(ost->fifo) + size_out) < 0) { |
941 | 745b39d5 | Stefano Sabatini | fprintf(stderr, "av_fifo_realloc2() failed\n");
|
942 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
943 | 745b39d5 | Stefano Sabatini | } |
944 | 41dd680d | Michael Niedermayer | av_fifo_generic_write(ost->fifo, buftmp, size_out, NULL);
|
945 | 85f07f22 | Fabrice Bellard | |
946 | 287ba997 | Peter Ross | frame_bytes = enc->frame_size * osize * enc->channels; |
947 | 115329f1 | Diego Biurrun | |
948 | 41dd680d | Michael Niedermayer | while (av_fifo_size(ost->fifo) >= frame_bytes) {
|
949 | e928649b | Michael Niedermayer | AVPacket pkt; |
950 | av_init_packet(&pkt); |
||
951 | |||
952 | 3898eed8 | Reimar Döffinger | av_fifo_generic_read(ost->fifo, audio_buf, frame_bytes, NULL);
|
953 | 0871ae1a | Michael Niedermayer | |
954 | 5bc440e7 | Michael Niedermayer | //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio()
|
955 | |||
956 | 115329f1 | Diego Biurrun | ret = avcodec_encode_audio(enc, audio_out, audio_out_size, |
957 | a0663ba4 | Fabrice Bellard | (short *)audio_buf);
|
958 | 528271ff | Michael Niedermayer | if (ret < 0) { |
959 | fprintf(stderr, "Audio encoding failed\n");
|
||
960 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
961 | 528271ff | Michael Niedermayer | } |
962 | 1008ceb3 | Michael Niedermayer | audio_size += ret; |
963 | e928649b | Michael Niedermayer | pkt.stream_index= ost->index; |
964 | pkt.data= audio_out; |
||
965 | pkt.size= ret; |
||
966 | e7902f20 | Michael Niedermayer | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
967 | c0df9d75 | Michael Niedermayer | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
968 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
969 | 0b6d358a | Nicolas George | write_frame(s, &pkt, enc, ost->bitstream_filters); |
970 | 115329f1 | Diego Biurrun | |
971 | 986ebcdb | Michael Niedermayer | ost->sync_opts += enc->frame_size; |
972 | 85f07f22 | Fabrice Bellard | } |
973 | } else {
|
||
974 | e928649b | Michael Niedermayer | AVPacket pkt; |
975 | av_init_packet(&pkt); |
||
976 | 986ebcdb | Michael Niedermayer | |
977 | 287ba997 | Peter Ross | ost->sync_opts += size_out / (osize * enc->channels); |
978 | 986ebcdb | Michael Niedermayer | |
979 | a0663ba4 | Fabrice Bellard | /* output a pcm frame */
|
980 | 287ba997 | Peter Ross | /* determine the size of the coded buffer */
|
981 | size_out /= osize; |
||
982 | if (coded_bps)
|
||
983 | 060b8592 | Michael Niedermayer | size_out = size_out*coded_bps/8;
|
984 | 287ba997 | Peter Ross | |
985 | 5ee05a62 | Michael Niedermayer | if(size_out > audio_out_size){
|
986 | fprintf(stderr, "Internal error, buffer size too small\n");
|
||
987 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
988 | 5ee05a62 | Michael Niedermayer | } |
989 | |||
990 | 5bc440e7 | Michael Niedermayer | //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio()
|
991 | 115329f1 | Diego Biurrun | ret = avcodec_encode_audio(enc, audio_out, size_out, |
992 | bb270c08 | Diego Biurrun | (short *)buftmp);
|
993 | 528271ff | Michael Niedermayer | if (ret < 0) { |
994 | fprintf(stderr, "Audio encoding failed\n");
|
||
995 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
996 | 528271ff | Michael Niedermayer | } |
997 | 1008ceb3 | Michael Niedermayer | audio_size += ret; |
998 | e928649b | Michael Niedermayer | pkt.stream_index= ost->index; |
999 | pkt.data= audio_out; |
||
1000 | pkt.size= ret; |
||
1001 | e7902f20 | Michael Niedermayer | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
1002 | c0df9d75 | Michael Niedermayer | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
1003 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
1004 | 0b6d358a | Nicolas George | write_frame(s, &pkt, enc, ost->bitstream_filters); |
1005 | 85f07f22 | Fabrice Bellard | } |
1006 | } |
||
1007 | |||
1008 | 10d104e4 | Philip Gladstone | static void pre_process_video_frame(AVInputStream *ist, AVPicture *picture, void **bufp) |
1009 | { |
||
1010 | AVCodecContext *dec; |
||
1011 | AVPicture *picture2; |
||
1012 | AVPicture picture_tmp; |
||
1013 | 0c1a9eda | Zdenek Kabelac | uint8_t *buf = 0;
|
1014 | 10d104e4 | Philip Gladstone | |
1015 | 01f4895c | Michael Niedermayer | dec = ist->st->codec; |
1016 | 10d104e4 | Philip Gladstone | |
1017 | /* deinterlace : must be done before any resize */
|
||
1018 | fdf11906 | Diego Biurrun | if (do_deinterlace) {
|
1019 | 10d104e4 | Philip Gladstone | int size;
|
1020 | |||
1021 | /* create temporary picture */
|
||
1022 | size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height); |
||
1023 | buf = av_malloc(size); |
||
1024 | if (!buf)
|
||
1025 | return;
|
||
1026 | 115329f1 | Diego Biurrun | |
1027 | 10d104e4 | Philip Gladstone | picture2 = &picture_tmp; |
1028 | avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height); |
||
1029 | |||
1030 | 9e1cc598 | Ramiro Polla | if(avpicture_deinterlace(picture2, picture,
|
1031 | dec->pix_fmt, dec->width, dec->height) < 0) {
|
||
1032 | /* if error, do not deinterlace */
|
||
1033 | fprintf(stderr, "Deinterlacing failed\n");
|
||
1034 | av_free(buf); |
||
1035 | buf = NULL;
|
||
1036 | picture2 = picture; |
||
1037 | } |
||
1038 | 10d104e4 | Philip Gladstone | } else {
|
1039 | picture2 = picture; |
||
1040 | } |
||
1041 | |||
1042 | if (picture != picture2)
|
||
1043 | *picture = *picture2; |
||
1044 | *bufp = buf; |
||
1045 | } |
||
1046 | |||
1047 | ec5517d5 | Fabrice Bellard | /* we begin to correct av delay at this threshold */
|
1048 | #define AV_DELAY_MAX 0.100 |
||
1049 | 85f07f22 | Fabrice Bellard | |
1050 | 115329f1 | Diego Biurrun | static void do_subtitle_out(AVFormatContext *s, |
1051 | AVOutputStream *ost, |
||
1052 | cf7fc795 | Fabrice Bellard | AVInputStream *ist, |
1053 | AVSubtitle *sub, |
||
1054 | int64_t pts) |
||
1055 | { |
||
1056 | static uint8_t *subtitle_out = NULL; |
||
1057 | 7f4fca03 | Reimar Döffinger | int subtitle_out_max_size = 1024 * 1024; |
1058 | cf7fc795 | Fabrice Bellard | int subtitle_out_size, nb, i;
|
1059 | AVCodecContext *enc; |
||
1060 | AVPacket pkt; |
||
1061 | |||
1062 | if (pts == AV_NOPTS_VALUE) {
|
||
1063 | fprintf(stderr, "Subtitle packets must have a pts\n");
|
||
1064 | f2abc559 | Baptiste Coudurier | if (exit_on_error)
|
1065 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1066 | cf7fc795 | Fabrice Bellard | return;
|
1067 | } |
||
1068 | |||
1069 | 01f4895c | Michael Niedermayer | enc = ost->st->codec; |
1070 | cf7fc795 | Fabrice Bellard | |
1071 | if (!subtitle_out) {
|
||
1072 | subtitle_out = av_malloc(subtitle_out_max_size); |
||
1073 | } |
||
1074 | |||
1075 | /* Note: DVB subtitle need one packet to draw them and one other
|
||
1076 | packet to clear them */
|
||
1077 | /* XXX: signal it in the codec context ? */
|
||
1078 | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE)
|
||
1079 | nb = 2;
|
||
1080 | else
|
||
1081 | nb = 1;
|
||
1082 | |||
1083 | for(i = 0; i < nb; i++) { |
||
1084 | 4bbe788a | Reimar Döffinger | sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q); |
1085 | 8b03c014 | Reimar Döffinger | // start_display_time is required to be 0
|
1086 | sub->pts += av_rescale_q(sub->start_display_time, (AVRational){1, 1000}, AV_TIME_BASE_Q); |
||
1087 | sub->end_display_time -= sub->start_display_time; |
||
1088 | sub->start_display_time = 0;
|
||
1089 | 115329f1 | Diego Biurrun | subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, |
1090 | cf7fc795 | Fabrice Bellard | subtitle_out_max_size, sub); |
1091 | 266649a5 | Reimar Döffinger | if (subtitle_out_size < 0) { |
1092 | fprintf(stderr, "Subtitle encoding failed\n");
|
||
1093 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1094 | 266649a5 | Reimar Döffinger | } |
1095 | 115329f1 | Diego Biurrun | |
1096 | cf7fc795 | Fabrice Bellard | av_init_packet(&pkt); |
1097 | pkt.stream_index = ost->index; |
||
1098 | pkt.data = subtitle_out; |
||
1099 | pkt.size = subtitle_out_size; |
||
1100 | 8b03c014 | Reimar Döffinger | pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base); |
1101 | cf7fc795 | Fabrice Bellard | if (enc->codec_id == CODEC_ID_DVB_SUBTITLE) {
|
1102 | /* XXX: the pts correction is handled here. Maybe handling
|
||
1103 | it in the codec would be better */
|
||
1104 | if (i == 0) |
||
1105 | pkt.pts += 90 * sub->start_display_time;
|
||
1106 | else
|
||
1107 | pkt.pts += 90 * sub->end_display_time;
|
||
1108 | } |
||
1109 | 0b6d358a | Nicolas George | write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters); |
1110 | cf7fc795 | Fabrice Bellard | } |
1111 | } |
||
1112 | |||
1113 | 8a6cb114 | Michael Niedermayer | static int bit_buffer_size= 1024*256; |
1114 | 27537106 | Michael Niedermayer | static uint8_t *bit_buffer= NULL; |
1115 | 1ff93ffc | Todd Kirby | |
1116 | 115329f1 | Diego Biurrun | static void do_video_out(AVFormatContext *s, |
1117 | AVOutputStream *ost, |
||
1118 | 85f07f22 | Fabrice Bellard | AVInputStream *ist, |
1119 | 7a0f9d7e | Fabrice Bellard | AVFrame *in_picture, |
1120 | 986ebcdb | Michael Niedermayer | int *frame_size)
|
1121 | 85f07f22 | Fabrice Bellard | { |
1122 | ec5517d5 | Fabrice Bellard | int nb_frames, i, ret;
|
1123 | 07d0cdfc | Luca Abeni | AVFrame *final_picture, *formatted_picture, *resampling_dst, *padding_src; |
1124 | cfcf0ffd | Fabrice Bellard | AVCodecContext *enc, *dec; |
1125 | 47b229db | Alexander Strange | double sync_ipts;
|
1126 | 115329f1 | Diego Biurrun | |
1127 | 01f4895c | Michael Niedermayer | enc = ost->st->codec; |
1128 | dec = ist->st->codec; |
||
1129 | 85f07f22 | Fabrice Bellard | |
1130 | 47b229db | Alexander Strange | sync_ipts = get_sync_ipts(ost) / av_q2d(enc->time_base); |
1131 | |||
1132 | ec5517d5 | Fabrice Bellard | /* by default, we output a single frame */
|
1133 | nb_frames = 1;
|
||
1134 | |||
1135 | 204c0f48 | Philip Gladstone | *frame_size = 0;
|
1136 | |||
1137 | 9ff261a2 | Michael Niedermayer | if(video_sync_method){
|
1138 | d55065a2 | Alexander Strange | double vdelta = sync_ipts - ost->sync_opts;
|
1139 | e928649b | Michael Niedermayer | //FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
|
1140 | if (vdelta < -1.1) |
||
1141 | nb_frames = 0;
|
||
1142 | e6fdc2b1 | Michael Niedermayer | else if (video_sync_method == 2 || (video_sync_method<0 && (s->oformat->flags & AVFMT_VARIABLE_FPS))){ |
1143 | if(vdelta<=-0.6){ |
||
1144 | nb_frames=0;
|
||
1145 | }else if(vdelta>0.6) |
||
1146 | 7f48bfa1 | Baptiste Coudurier | ost->sync_opts= lrintf(sync_ipts); |
1147 | e6fdc2b1 | Michael Niedermayer | }else if (vdelta > 1.1) |
1148 | 70122f29 | Michael Niedermayer | nb_frames = lrintf(vdelta); |
1149 | fc6765d7 | Michael Niedermayer | //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);
|
1150 | 50c3dd32 | Michael Niedermayer | if (nb_frames == 0){ |
1151 | ++nb_frames_drop; |
||
1152 | if (verbose>2) |
||
1153 | fprintf(stderr, "*** drop!\n");
|
||
1154 | 8300609b | Michael Niedermayer | }else if (nb_frames > 1) { |
1155 | ed30e518 | Michael Niedermayer | nb_frames_dup += nb_frames - 1;
|
1156 | 50c3dd32 | Michael Niedermayer | if (verbose>2) |
1157 | 8300609b | Michael Niedermayer | fprintf(stderr, "*** %d dup!\n", nb_frames-1); |
1158 | 50c3dd32 | Michael Niedermayer | } |
1159 | }else
|
||
1160 | 47b229db | Alexander Strange | ost->sync_opts= lrintf(sync_ipts); |
1161 | 445f1b83 | Roman Shaposhnik | |
1162 | 72415b2a | Stefano Sabatini | nb_frames= FFMIN(nb_frames, max_frames[AVMEDIA_TYPE_VIDEO] - ost->frame_number); |
1163 | 115329f1 | Diego Biurrun | if (nb_frames <= 0) |
1164 | 85f07f22 | Fabrice Bellard | return;
|
1165 | ce7c56c2 | Juanjo | |
1166 | 46847a33 | Michael Niedermayer | formatted_picture = in_picture; |
1167 | 07d0cdfc | Luca Abeni | final_picture = formatted_picture; |
1168 | padding_src = formatted_picture; |
||
1169 | resampling_dst = &ost->pict_tmp; |
||
1170 | |||
1171 | 5879ea6d | Stefano Sabatini | if ( ost->resample_height != ist->st->codec->height
|
1172 | || ost->resample_width != ist->st->codec->width |
||
1173 | b83ccbff | Michael Niedermayer | || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) { |
1174 | |||
1175 | 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));
|
||
1176 | if(!ost->video_resample)
|
||
1177 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1178 | b83ccbff | Michael Niedermayer | } |
1179 | |||
1180 | 46847a33 | Michael Niedermayer | #if !CONFIG_AVFILTER
|
1181 | 85f07f22 | Fabrice Bellard | if (ost->video_resample) {
|
1182 | 07d0cdfc | Luca Abeni | padding_src = NULL;
|
1183 | 34b10a57 | Dieter | final_picture = &ost->pict_tmp; |
1184 | 5879ea6d | Stefano Sabatini | if( ost->resample_height != ist->st->codec->height
|
1185 | || ost->resample_width != ist->st->codec->width |
||
1186 | 01a3c821 | Jason Garrett-Glaser | || (ost->resample_pix_fmt!= ist->st->codec->pix_fmt) ) { |
1187 | 352666c1 | Eric Buehl | |
1188 | /* initialize a new scaler context */
|
||
1189 | sws_freeContext(ost->img_resample_ctx); |
||
1190 | sws_flags = av_get_int(sws_opts, "sws_flags", NULL); |
||
1191 | ost->img_resample_ctx = sws_getContext( |
||
1192 | 5879ea6d | Stefano Sabatini | ist->st->codec->width, |
1193 | ist->st->codec->height, |
||
1194 | 352666c1 | Eric Buehl | ist->st->codec->pix_fmt, |
1195 | 0c22311b | Michael Niedermayer | ost->st->codec->width, |
1196 | ost->st->codec->height, |
||
1197 | 352666c1 | Eric Buehl | ost->st->codec->pix_fmt, |
1198 | sws_flags, NULL, NULL, NULL); |
||
1199 | if (ost->img_resample_ctx == NULL) { |
||
1200 | fprintf(stderr, "Cannot get resampling context\n");
|
||
1201 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1202 | 352666c1 | Eric Buehl | } |
1203 | } |
||
1204 | 18a54b04 | Luca Abeni | sws_scale(ost->img_resample_ctx, formatted_picture->data, formatted_picture->linesize, |
1205 | 0, ost->resample_height, resampling_dst->data, resampling_dst->linesize);
|
||
1206 | f122deb4 | Luca Abeni | } |
1207 | 46847a33 | Michael Niedermayer | #endif
|
1208 | 07d0cdfc | Luca Abeni | |
1209 | 85f07f22 | Fabrice Bellard | /* duplicates frame if needed */
|
1210 | ec5517d5 | Fabrice Bellard | for(i=0;i<nb_frames;i++) { |
1211 | e928649b | Michael Niedermayer | AVPacket pkt; |
1212 | av_init_packet(&pkt); |
||
1213 | pkt.stream_index= ost->index; |
||
1214 | |||
1215 | e8750b00 | Fred Rothganger | if (s->oformat->flags & AVFMT_RAWPICTURE) {
|
1216 | /* raw pictures are written as AVPicture structure to
|
||
1217 | avoid any copies. We support temorarily the older
|
||
1218 | method. */
|
||
1219 | 2744ca9a | Roman Shaposhnik | AVFrame* old_frame = enc->coded_frame; |
1220 | bb270c08 | Diego Biurrun | enc->coded_frame = dec->coded_frame; //FIXME/XXX remove this hack
|
1221 | e928649b | Michael Niedermayer | pkt.data= (uint8_t *)final_picture; |
1222 | pkt.size= sizeof(AVPicture);
|
||
1223 | b4dba580 | Michael Niedermayer | pkt.pts= av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base); |
1224 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
1225 | e928649b | Michael Niedermayer | |
1226 | 0b6d358a | Nicolas George | write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters); |
1227 | bb270c08 | Diego Biurrun | enc->coded_frame = old_frame; |
1228 | e8750b00 | Fred Rothganger | } else {
|
1229 | 492cd3a9 | Michael Niedermayer | AVFrame big_picture; |
1230 | a4d36c11 | Michael Niedermayer | |
1231 | big_picture= *final_picture; |
||
1232 | 7a0f9d7e | Fabrice Bellard | /* better than nothing: use input picture interlaced
|
1233 | settings */
|
||
1234 | big_picture.interlaced_frame = in_picture->interlaced_frame; |
||
1235 | 72415b2a | Stefano Sabatini | if(avcodec_opts[AVMEDIA_TYPE_VIDEO]->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)){
|
1236 | bb198e19 | Michael Niedermayer | if(top_field_first == -1) |
1237 | big_picture.top_field_first = in_picture->top_field_first; |
||
1238 | else
|
||
1239 | 2a8edc5d | Michael Niedermayer | big_picture.top_field_first = top_field_first; |
1240 | bb198e19 | Michael Niedermayer | } |
1241 | 7a0f9d7e | Fabrice Bellard | |
1242 | 85f07f22 | Fabrice Bellard | /* handles sameq here. This is not correct because it may
|
1243 | not be a global option */
|
||
1244 | f62c025a | Stefano Sabatini | big_picture.quality = same_quality ? ist->st->quality : ost->st->quality; |
1245 | f4f3223f | Michael Niedermayer | if(!me_threshold)
|
1246 | big_picture.pict_type = 0;
|
||
1247 | 50c3dd32 | Michael Niedermayer | // big_picture.pts = AV_NOPTS_VALUE;
|
1248 | c0df9d75 | Michael Niedermayer | big_picture.pts= ost->sync_opts; |
1249 | // big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den);
|
||
1250 | 949b1a13 | Steve L'Homme | //av_log(NULL, AV_LOG_DEBUG, "%"PRId64" -> encoder\n", ost->sync_opts);
|
1251 | 4ad08021 | Nicolas George | if (ost->forced_kf_index < ost->forced_kf_count &&
|
1252 | big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) { |
||
1253 | big_picture.pict_type = FF_I_TYPE; |
||
1254 | ost->forced_kf_index++; |
||
1255 | } |
||
1256 | 115329f1 | Diego Biurrun | ret = avcodec_encode_video(enc, |
1257 | 8a6cb114 | Michael Niedermayer | bit_buffer, bit_buffer_size, |
1258 | 1e491e29 | Michael Niedermayer | &big_picture); |
1259 | 95af5e1c | Michael Niedermayer | if (ret < 0) { |
1260 | 4156a436 | Panagiotis Issaris | fprintf(stderr, "Video encoding failed\n");
|
1261 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1262 | 4156a436 | Panagiotis Issaris | } |
1263 | 54e28a85 | Baptiste Coudurier | |
1264 | 4bbc6260 | Michael Niedermayer | if(ret>0){ |
1265 | 27537106 | Michael Niedermayer | pkt.data= bit_buffer; |
1266 | e928649b | Michael Niedermayer | pkt.size= ret; |
1267 | e6b4e4ff | Michael Niedermayer | if(enc->coded_frame->pts != AV_NOPTS_VALUE)
|
1268 | c0df9d75 | Michael Niedermayer | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
1269 | 949b1a13 | Steve L'Homme | /*av_log(NULL, AV_LOG_DEBUG, "encoder -> %"PRId64"/%"PRId64"\n",
|
1270 | c0df9d75 | Michael Niedermayer | pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
|
1271 | pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/
|
||
1272 | 50c3dd32 | Michael Niedermayer | |
1273 | e6b4e4ff | Michael Niedermayer | if(enc->coded_frame->key_frame)
|
1274 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
1275 | 0b6d358a | Nicolas George | write_frame(s, &pkt, ost->st->codec, ost->bitstream_filters); |
1276 | e928649b | Michael Niedermayer | *frame_size = ret; |
1277 | 44eb047a | Michael Niedermayer | video_size += ret; |
1278 | 54e28a85 | Baptiste Coudurier | //fprintf(stderr,"\nFrame: %3d size: %5d type: %d",
|
1279 | // enc->frame_number-1, ret, enc->pict_type);
|
||
1280 | e928649b | Michael Niedermayer | /* if two pass, output log */
|
1281 | if (ost->logfile && enc->stats_out) {
|
||
1282 | fprintf(ost->logfile, "%s", enc->stats_out);
|
||
1283 | } |
||
1284 | 5abdb4b1 | Fabrice Bellard | } |
1285 | 85f07f22 | Fabrice Bellard | } |
1286 | 50c3dd32 | Michael Niedermayer | ost->sync_opts++; |
1287 | ec5517d5 | Fabrice Bellard | ost->frame_number++; |
1288 | 85f07f22 | Fabrice Bellard | } |
1289 | } |
||
1290 | |||
1291 | 140cb663 | Michael Niedermayer | static double psnr(double d){ |
1292 | b29f97d1 | Zdenek Kabelac | return -10.0*log(d)/log(10.0); |
1293 | 140cb663 | Michael Niedermayer | } |
1294 | |||
1295 | 115329f1 | Diego Biurrun | static void do_video_stats(AVFormatContext *os, AVOutputStream *ost, |
1296 | ec5517d5 | Fabrice Bellard | int frame_size)
|
1297 | ce7c56c2 | Juanjo | { |
1298 | AVCodecContext *enc; |
||
1299 | int frame_number;
|
||
1300 | double ti1, bitrate, avg_bitrate;
|
||
1301 | 115329f1 | Diego Biurrun | |
1302 | b60d1379 | Stefano Sabatini | /* this is executed just the first time do_video_stats is called */
|
1303 | 032aa7df | Stefano Sabatini | if (!vstats_file) {
|
1304 | vstats_file = fopen(vstats_filename, "w");
|
||
1305 | if (!vstats_file) {
|
||
1306 | 4bd0c2b1 | Benoit Fouet | perror("fopen");
|
1307 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1308 | 4bd0c2b1 | Benoit Fouet | } |
1309 | } |
||
1310 | |||
1311 | 01f4895c | Michael Niedermayer | enc = ost->st->codec; |
1312 | 72415b2a | Stefano Sabatini | if (enc->codec_type == AVMEDIA_TYPE_VIDEO) {
|
1313 | ec5517d5 | Fabrice Bellard | frame_number = ost->frame_number; |
1314 | 032aa7df | Stefano Sabatini | fprintf(vstats_file, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality/(float)FF_QP2LAMBDA); |
1315 | 140cb663 | Michael Niedermayer | if (enc->flags&CODEC_FLAG_PSNR)
|
1316 | 032aa7df | Stefano Sabatini | fprintf(vstats_file, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0))); |
1317 | 115329f1 | Diego Biurrun | |
1318 | 032aa7df | Stefano Sabatini | fprintf(vstats_file,"f_size= %6d ", frame_size);
|
1319 | ec5517d5 | Fabrice Bellard | /* compute pts value */
|
1320 | c0df9d75 | Michael Niedermayer | ti1 = ost->sync_opts * av_q2d(enc->time_base); |
1321 | ce7c56c2 | Juanjo | if (ti1 < 0.01) |
1322 | ti1 = 0.01; |
||
1323 | 115329f1 | Diego Biurrun | |
1324 | c0df9d75 | Michael Niedermayer | bitrate = (frame_size * 8) / av_q2d(enc->time_base) / 1000.0; |
1325 | 1008ceb3 | Michael Niedermayer | avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0; |
1326 | 032aa7df | Stefano Sabatini | fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
|
1327 | 1008ceb3 | Michael Niedermayer | (double)video_size / 1024, ti1, bitrate, avg_bitrate); |
1328 | 032aa7df | Stefano Sabatini | fprintf(vstats_file,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type));
|
1329 | ce7c56c2 | Juanjo | } |
1330 | ec5517d5 | Fabrice Bellard | } |
1331 | |||
1332 | b29f97d1 | Zdenek Kabelac | static void print_report(AVFormatContext **output_files, |
1333 | bb270c08 | Diego Biurrun | AVOutputStream **ost_table, int nb_ostreams,
|
1334 | int is_last_report)
|
||
1335 | ec5517d5 | Fabrice Bellard | { |
1336 | char buf[1024]; |
||
1337 | AVOutputStream *ost; |
||
1338 | b5ee9c23 | Michael Niedermayer | AVFormatContext *oc; |
1339 | 0c1a9eda | Zdenek Kabelac | int64_t total_size; |
1340 | ec5517d5 | Fabrice Bellard | AVCodecContext *enc; |
1341 | int frame_number, vid, i;
|
||
1342 | double bitrate, ti1, pts;
|
||
1343 | 0c1a9eda | Zdenek Kabelac | static int64_t last_time = -1; |
1344 | 0888fd22 | Michael Niedermayer | static int qp_histogram[52]; |
1345 | 115329f1 | Diego Biurrun | |
1346 | ec5517d5 | Fabrice Bellard | if (!is_last_report) {
|
1347 | 0c1a9eda | Zdenek Kabelac | int64_t cur_time; |
1348 | ec5517d5 | Fabrice Bellard | /* display the report every 0.5 seconds */
|
1349 | cur_time = av_gettime(); |
||
1350 | if (last_time == -1) { |
||
1351 | last_time = cur_time; |
||
1352 | return;
|
||
1353 | 115329f1 | Diego Biurrun | } |
1354 | ec5517d5 | Fabrice Bellard | if ((cur_time - last_time) < 500000) |
1355 | return;
|
||
1356 | last_time = cur_time; |
||
1357 | } |
||
1358 | |||
1359 | ce7c56c2 | Juanjo | |
1360 | ec5517d5 | Fabrice Bellard | oc = output_files[0];
|
1361 | |||
1362 | 899681cd | Björn Axelsson | total_size = url_fsize(oc->pb); |
1363 | 859d95ba | Michael Niedermayer | if(total_size<0) // FIXME improve url_fsize() so it works with non seekable output too |
1364 | 899681cd | Björn Axelsson | total_size= url_ftell(oc->pb); |
1365 | 115329f1 | Diego Biurrun | |
1366 | ec5517d5 | Fabrice Bellard | buf[0] = '\0'; |
1367 | ti1 = 1e10;
|
||
1368 | vid = 0;
|
||
1369 | for(i=0;i<nb_ostreams;i++) { |
||
1370 | ost = ost_table[i]; |
||
1371 | 01f4895c | Michael Niedermayer | enc = ost->st->codec; |
1372 | 72415b2a | Stefano Sabatini | if (vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
|
1373 | 0ecca7a4 | Michael Niedermayer | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "q=%2.1f ", |
1374 | e6b4e4ff | Michael Niedermayer | !ost->st->stream_copy ? |
1375 | 99fb79b5 | Baptiste Coudurier | enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1); |
1376 | 10d104e4 | Philip Gladstone | } |
1377 | 72415b2a | Stefano Sabatini | if (!vid && enc->codec_type == AVMEDIA_TYPE_VIDEO) {
|
1378 | 7fc98937 | Limin Wang | float t = (av_gettime()-timer_start) / 1000000.0; |
1379 | |||
1380 | ec5517d5 | Fabrice Bellard | frame_number = ost->frame_number; |
1381 | 7fc98937 | Limin Wang | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "frame=%5d fps=%3d q=%3.1f ", |
1382 | frame_number, (t>1)?(int)(frame_number/t+0.5) : 0, |
||
1383 | e6b4e4ff | Michael Niedermayer | !ost->st->stream_copy ? |
1384 | 99fb79b5 | Baptiste Coudurier | enc->coded_frame->quality/(float)FF_QP2LAMBDA : -1); |
1385 | 890972be | Michael Niedermayer | if(is_last_report)
|
1386 | 0ecca7a4 | Michael Niedermayer | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "L"); |
1387 | e6b4e4ff | Michael Niedermayer | if(qp_hist){
|
1388 | 0888fd22 | Michael Niedermayer | int j;
|
1389 | int qp= lrintf(enc->coded_frame->quality/(float)FF_QP2LAMBDA); |
||
1390 | 37d3e066 | Aurelien Jacobs | if(qp>=0 && qp<FF_ARRAY_ELEMS(qp_histogram)) |
1391 | 0888fd22 | Michael Niedermayer | qp_histogram[qp]++; |
1392 | for(j=0; j<32; j++) |
||
1393 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%X", (int)lrintf(log(qp_histogram[j]+1)/log(2))); |
||
1394 | } |
||
1395 | 890972be | Michael Niedermayer | if (enc->flags&CODEC_FLAG_PSNR){
|
1396 | int j;
|
||
1397 | double error, error_sum=0; |
||
1398 | double scale, scale_sum=0; |
||
1399 | char type[3]= {'Y','U','V'}; |
||
1400 | 0ecca7a4 | Michael Niedermayer | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "PSNR="); |
1401 | 890972be | Michael Niedermayer | for(j=0; j<3; j++){ |
1402 | if(is_last_report){
|
||
1403 | error= enc->error[j]; |
||
1404 | scale= enc->width*enc->height*255.0*255.0*frame_number; |
||
1405 | }else{
|
||
1406 | error= enc->coded_frame->error[j]; |
||
1407 | scale= enc->width*enc->height*255.0*255.0; |
||
1408 | } |
||
1409 | if(j) scale/=4; |
||
1410 | error_sum += error; |
||
1411 | scale_sum += scale; |
||
1412 | 0ecca7a4 | Michael Niedermayer | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], psnr(error/scale)); |
1413 | 890972be | Michael Niedermayer | } |
1414 | 0ecca7a4 | Michael Niedermayer | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum/scale_sum)); |
1415 | 890972be | Michael Niedermayer | } |
1416 | ec5517d5 | Fabrice Bellard | vid = 1;
|
1417 | } |
||
1418 | /* compute min output value */
|
||
1419 | 43924f01 | Alex Beregszaszi | pts = (double)ost->st->pts.val * av_q2d(ost->st->time_base);
|
1420 | 5d9827bc | Kareila | if ((pts < ti1) && (pts > 0)) |
1421 | ec5517d5 | Fabrice Bellard | ti1 = pts; |
1422 | } |
||
1423 | if (ti1 < 0.01) |
||
1424 | ti1 = 0.01; |
||
1425 | 115329f1 | Diego Biurrun | |
1426 | f068206e | Bill Eldridge | if (verbose || is_last_report) {
|
1427 | bitrate = (double)(total_size * 8) / ti1 / 1000.0; |
||
1428 | 115329f1 | Diego Biurrun | |
1429 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
|
||
1430 | 475f4d8d | David Bolt | "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
|
1431 | ec5517d5 | Fabrice Bellard | (double)total_size / 1024, ti1, bitrate); |
1432 | a6a92a9a | Wolfram Gloger | |
1433 | 0f649d66 | Michael Niedermayer | if (nb_frames_dup || nb_frames_drop)
|
1434 | bb270c08 | Diego Biurrun | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d", |
1435 | nb_frames_dup, nb_frames_drop); |
||
1436 | 115329f1 | Diego Biurrun | |
1437 | d8019eb5 | Allen Day | if (verbose >= 0) |
1438 | fprintf(stderr, "%s \r", buf);
|
||
1439 | |||
1440 | ec5517d5 | Fabrice Bellard | fflush(stderr); |
1441 | } |
||
1442 | 115329f1 | Diego Biurrun | |
1443 | 1008ceb3 | Michael Niedermayer | if (is_last_report && verbose >= 0){ |
1444 | int64_t raw= audio_size + video_size + extra_size; |
||
1445 | f068206e | Bill Eldridge | fprintf(stderr, "\n");
|
1446 | 1008ceb3 | Michael Niedermayer | fprintf(stderr, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n",
|
1447 | video_size/1024.0, |
||
1448 | audio_size/1024.0, |
||
1449 | extra_size/1024.0, |
||
1450 | 100.0*(total_size - raw)/raw |
||
1451 | ); |
||
1452 | } |
||
1453 | ce7c56c2 | Juanjo | } |
1454 | |||
1455 | a700a6ae | Fabrice Bellard | /* pkt = NULL means EOF (needed to flush decoder buffers) */
|
1456 | static int output_packet(AVInputStream *ist, int ist_index, |
||
1457 | AVOutputStream **ost_table, int nb_ostreams,
|
||
1458 | 4b85a28f | Wolfram Gloger | const AVPacket *pkt)
|
1459 | a700a6ae | Fabrice Bellard | { |
1460 | AVFormatContext *os; |
||
1461 | AVOutputStream *ost; |
||
1462 | ede0e475 | Thilo Borgmann | int ret, i;
|
1463 | 8157483d | Michael Niedermayer | int got_picture;
|
1464 | a700a6ae | Fabrice Bellard | AVFrame picture; |
1465 | void *buffer_to_free;
|
||
1466 | f038fe8b | Diego Biurrun | static unsigned int samples_size= 0; |
1467 | cf7fc795 | Fabrice Bellard | AVSubtitle subtitle, *subtitle_to_free; |
1468 | 0ff4f0c0 | Alexander Strange | int64_t pkt_pts = AV_NOPTS_VALUE; |
1469 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
1470 | d21f58b5 | Baptiste Coudurier | int frame_available;
|
1471 | 46847a33 | Michael Niedermayer | #endif
|
1472 | |||
1473 | ede0e475 | Thilo Borgmann | AVPacket avpkt; |
1474 | ba7d6e79 | Stefano Sabatini | int bps = av_get_bits_per_sample_fmt(ist->st->codec->sample_fmt)>>3; |
1475 | ede0e475 | Thilo Borgmann | |
1476 | ed923859 | Michael Niedermayer | if(ist->next_pts == AV_NOPTS_VALUE)
|
1477 | ist->next_pts= ist->pts; |
||
1478 | |||
1479 | a700a6ae | Fabrice Bellard | if (pkt == NULL) { |
1480 | /* EOF handling */
|
||
1481 | 031e14ea | Thilo Borgmann | av_init_packet(&avpkt); |
1482 | ede0e475 | Thilo Borgmann | avpkt.data = NULL;
|
1483 | avpkt.size = 0;
|
||
1484 | a700a6ae | Fabrice Bellard | goto handle_eof;
|
1485 | 031e14ea | Thilo Borgmann | } else {
|
1486 | avpkt = *pkt; |
||
1487 | a700a6ae | Fabrice Bellard | } |
1488 | |||
1489 | b1b818fc | Michael Niedermayer | if(pkt->dts != AV_NOPTS_VALUE)
|
1490 | ist->next_pts = ist->pts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); |
||
1491 | 0ff4f0c0 | Alexander Strange | if(pkt->pts != AV_NOPTS_VALUE)
|
1492 | pkt_pts = av_rescale_q(pkt->pts, ist->st->time_base, AV_TIME_BASE_Q); |
||
1493 | b1b818fc | Michael Niedermayer | |
1494 | bd6754aa | Michael Niedermayer | //while we have more to decode or while the decoder did output something on EOF
|
1495 | ede0e475 | Thilo Borgmann | while (avpkt.size > 0 || (!pkt && ist->next_pts != ist->pts)) { |
1496 | 036c1382 | Michael Niedermayer | uint8_t *data_buf, *decoded_data_buf; |
1497 | int data_size, decoded_data_size;
|
||
1498 | a700a6ae | Fabrice Bellard | handle_eof:
|
1499 | b1b818fc | Michael Niedermayer | ist->pts= ist->next_pts; |
1500 | 19d5da50 | Michael Niedermayer | |
1501 | d859bb1d | Sascha Sommer | if(avpkt.size && avpkt.size != pkt->size &&
|
1502 | 6e2fdc3e | Stefano Sabatini | ((!ist->showed_multi_packet_warning && verbose>0) || verbose>1)){ |
1503 | 40cb57a2 | Michael Niedermayer | fprintf(stderr, "Multiple frames in a packet from stream %d\n", pkt->stream_index);
|
1504 | 3ff0daf0 | Michael Niedermayer | ist->showed_multi_packet_warning=1;
|
1505 | } |
||
1506 | 40cb57a2 | Michael Niedermayer | |
1507 | a700a6ae | Fabrice Bellard | /* decode the packet if needed */
|
1508 | 036c1382 | Michael Niedermayer | decoded_data_buf = NULL; /* fail safe */ |
1509 | decoded_data_size= 0;
|
||
1510 | data_buf = avpkt.data; |
||
1511 | data_size = avpkt.size; |
||
1512 | cf7fc795 | Fabrice Bellard | subtitle_to_free = NULL;
|
1513 | a700a6ae | Fabrice Bellard | if (ist->decoding_needed) {
|
1514 | 01f4895c | Michael Niedermayer | switch(ist->st->codec->codec_type) {
|
1515 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:{
|
1516 | 81b060fa | Loren Merritt | if(pkt && samples_size < FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE)) { |
1517 | samples_size = FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE);
|
||
1518 | av_free(samples); |
||
1519 | samples= av_malloc(samples_size); |
||
1520 | } |
||
1521 | 036c1382 | Michael Niedermayer | decoded_data_size= samples_size; |
1522 | a700a6ae | Fabrice Bellard | /* XXX: could avoid copy if PCM 16 bits with same
|
1523 | endianness as CPU */
|
||
1524 | 036c1382 | Michael Niedermayer | ret = avcodec_decode_audio3(ist->st->codec, samples, &decoded_data_size, |
1525 | ede0e475 | Thilo Borgmann | &avpkt); |
1526 | a700a6ae | Fabrice Bellard | if (ret < 0) |
1527 | goto fail_decode;
|
||
1528 | ede0e475 | Thilo Borgmann | avpkt.data += ret; |
1529 | avpkt.size -= ret; |
||
1530 | 036c1382 | Michael Niedermayer | data_size = ret; |
1531 | a700a6ae | Fabrice Bellard | /* Some bug in mpeg audio decoder gives */
|
1532 | 036c1382 | Michael Niedermayer | /* decoded_data_size < 0, it seems they are overflows */
|
1533 | if (decoded_data_size <= 0) { |
||
1534 | a700a6ae | Fabrice Bellard | /* no audio frame */
|
1535 | continue;
|
||
1536 | } |
||
1537 | 036c1382 | Michael Niedermayer | decoded_data_buf = (uint8_t *)samples; |
1538 | ist->next_pts += ((int64_t)AV_TIME_BASE/bps * decoded_data_size) / |
||
1539 | 01f4895c | Michael Niedermayer | (ist->st->codec->sample_rate * ist->st->codec->channels); |
1540 | df84ac2e | Michael Niedermayer | break;}
|
1541 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
1542 | 036c1382 | Michael Niedermayer | decoded_data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2; |
1543 | a700a6ae | Fabrice Bellard | /* XXX: allocate picture correctly */
|
1544 | 9740beff | Michael Niedermayer | avcodec_get_frame_defaults(&picture); |
1545 | fd0ae17a | Alexander Strange | avpkt.pts = pkt_pts; |
1546 | avpkt.dts = ist->pts; |
||
1547 | 0ff4f0c0 | Alexander Strange | pkt_pts = AV_NOPTS_VALUE; |
1548 | 9740beff | Michael Niedermayer | |
1549 | ede0e475 | Thilo Borgmann | ret = avcodec_decode_video2(ist->st->codec, |
1550 | &picture, &got_picture, &avpkt); |
||
1551 | a700a6ae | Fabrice Bellard | ist->st->quality= picture.quality; |
1552 | 115329f1 | Diego Biurrun | if (ret < 0) |
1553 | a700a6ae | Fabrice Bellard | goto fail_decode;
|
1554 | if (!got_picture) {
|
||
1555 | /* no picture yet */
|
||
1556 | goto discard_packet;
|
||
1557 | } |
||
1558 | 76ad67ca | Nicolas George | ist->next_pts = ist->pts = picture.best_effort_timestamp; |
1559 | 01f4895c | Michael Niedermayer | if (ist->st->codec->time_base.num != 0) { |
1560 | 3797c74b | Michael Niedermayer | int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame; |
1561 | 115329f1 | Diego Biurrun | ist->next_pts += ((int64_t)AV_TIME_BASE * |
1562 | 34583e1b | Michael Niedermayer | ist->st->codec->time_base.num * ticks) / |
1563 | 01f4895c | Michael Niedermayer | ist->st->codec->time_base.den; |
1564 | a700a6ae | Fabrice Bellard | } |
1565 | ede0e475 | Thilo Borgmann | avpkt.size = 0;
|
1566 | a700a6ae | Fabrice Bellard | break;
|
1567 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_SUBTITLE:
|
1568 | ede0e475 | Thilo Borgmann | ret = avcodec_decode_subtitle2(ist->st->codec, |
1569 | 28db3215 | Alexander Strange | &subtitle, &got_picture, &avpkt); |
1570 | cf7fc795 | Fabrice Bellard | if (ret < 0) |
1571 | a700a6ae | Fabrice Bellard | goto fail_decode;
|
1572 | 28db3215 | Alexander Strange | if (!got_picture) {
|
1573 | cf7fc795 | Fabrice Bellard | goto discard_packet;
|
1574 | a700a6ae | Fabrice Bellard | } |
1575 | cf7fc795 | Fabrice Bellard | subtitle_to_free = &subtitle; |
1576 | ede0e475 | Thilo Borgmann | avpkt.size = 0;
|
1577 | cf7fc795 | Fabrice Bellard | break;
|
1578 | default:
|
||
1579 | goto fail_decode;
|
||
1580 | } |
||
1581 | } else {
|
||
1582 | bde0705c | Limin Wang | switch(ist->st->codec->codec_type) {
|
1583 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:
|
1584 | bde0705c | Limin Wang | ist->next_pts += ((int64_t)AV_TIME_BASE * ist->st->codec->frame_size) / |
1585 | 1c715415 | Michael Niedermayer | ist->st->codec->sample_rate; |
1586 | bde0705c | Limin Wang | break;
|
1587 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
1588 | bde0705c | Limin Wang | if (ist->st->codec->time_base.num != 0) { |
1589 | 3797c74b | Michael Niedermayer | int ticks= ist->st->parser ? ist->st->parser->repeat_pict+1 : ist->st->codec->ticks_per_frame; |
1590 | bde0705c | Limin Wang | ist->next_pts += ((int64_t)AV_TIME_BASE * |
1591 | 34583e1b | Michael Niedermayer | ist->st->codec->time_base.num * ticks) / |
1592 | bde0705c | Limin Wang | ist->st->codec->time_base.den; |
1593 | 2fef0bdf | Michael Niedermayer | } |
1594 | bde0705c | Limin Wang | break;
|
1595 | a700a6ae | Fabrice Bellard | } |
1596 | ede0e475 | Thilo Borgmann | ret = avpkt.size; |
1597 | avpkt.size = 0;
|
||
1598 | bde0705c | Limin Wang | } |
1599 | a700a6ae | Fabrice Bellard | |
1600 | bde0705c | Limin Wang | buffer_to_free = NULL;
|
1601 | 72415b2a | Stefano Sabatini | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
|
1602 | bde0705c | Limin Wang | pre_process_video_frame(ist, (AVPicture *)&picture, |
1603 | &buffer_to_free); |
||
1604 | } |
||
1605 | a700a6ae | Fabrice Bellard | |
1606 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
1607 | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ist->input_video_filter) {
|
||
1608 | d9c3e5f6 | Michael Niedermayer | AVRational sar; |
1609 | if (ist->st->sample_aspect_ratio.num) sar = ist->st->sample_aspect_ratio;
|
||
1610 | else sar = ist->st->codec->sample_aspect_ratio;
|
||
1611 | 46847a33 | Michael Niedermayer | // add it to be filtered
|
1612 | av_vsrc_buffer_add_frame(ist->input_video_filter, &picture, |
||
1613 | ist->pts, |
||
1614 | d9c3e5f6 | Michael Niedermayer | sar); |
1615 | 46847a33 | Michael Niedermayer | } |
1616 | #endif
|
||
1617 | |||
1618 | bde0705c | Limin Wang | // preprocess audio (volume)
|
1619 | 72415b2a | Stefano Sabatini | if (ist->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
|
1620 | bde0705c | Limin Wang | if (audio_volume != 256) { |
1621 | short *volp;
|
||
1622 | volp = samples; |
||
1623 | 036c1382 | Michael Niedermayer | for(i=0;i<(decoded_data_size / sizeof(short));i++) { |
1624 | bde0705c | Limin Wang | int v = ((*volp) * audio_volume + 128) >> 8; |
1625 | if (v < -32768) v = -32768; |
||
1626 | if (v > 32767) v = 32767; |
||
1627 | *volp++ = v; |
||
1628 | 7e987c33 | Calcium | } |
1629 | } |
||
1630 | bde0705c | Limin Wang | } |
1631 | 7e987c33 | Calcium | |
1632 | bde0705c | Limin Wang | /* frame rate emulation */
|
1633 | 3a25ca18 | Stefano Sabatini | if (rate_emu) {
|
1634 | cb103a19 | Stefano Sabatini | int64_t pts = av_rescale(ist->pts, 1000000, AV_TIME_BASE);
|
1635 | bde0705c | Limin Wang | int64_t now = av_gettime() - ist->start; |
1636 | if (pts > now)
|
||
1637 | usleep(pts - now); |
||
1638 | } |
||
1639 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
1640 | d21f58b5 | Baptiste Coudurier | frame_available = ist->st->codec->codec_type != AVMEDIA_TYPE_VIDEO || |
1641 | dfd57757 | Stefano Sabatini | !ist->output_video_filter || avfilter_poll_frame(ist->output_video_filter->inputs[0]);
|
1642 | 46847a33 | Michael Niedermayer | #endif
|
1643 | bde0705c | Limin Wang | /* if output time reached then transcode raw format,
|
1644 | encode packets and output them */
|
||
1645 | if (start_time == 0 || ist->pts >= start_time) |
||
1646 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
1647 | d21f58b5 | Baptiste Coudurier | while (frame_available) {
|
1648 | ff0652e5 | Stefano Sabatini | AVRational ist_pts_tb; |
1649 | dfd57757 | Stefano Sabatini | if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && ist->output_video_filter)
|
1650 | ff0652e5 | Stefano Sabatini | get_filtered_video_frame(ist->output_video_filter, &picture, &ist->picref, &ist_pts_tb); |
1651 | if (ist->picref)
|
||
1652 | da1b9b88 | Stefano Sabatini | ist->pts = av_rescale_q(ist->picref->pts, ist_pts_tb, AV_TIME_BASE_Q); |
1653 | 46847a33 | Michael Niedermayer | #endif
|
1654 | bde0705c | Limin Wang | for(i=0;i<nb_ostreams;i++) { |
1655 | int frame_size;
|
||
1656 | a700a6ae | Fabrice Bellard | |
1657 | bde0705c | Limin Wang | ost = ost_table[i]; |
1658 | if (ost->source_index == ist_index) {
|
||
1659 | os = output_files[ost->file_index]; |
||
1660 | a700a6ae | Fabrice Bellard | |
1661 | bde0705c | Limin Wang | /* set the input output pts pairs */
|
1662 | //ost->sync_ipts = (double)(ist->pts + input_files_ts_offset[ist->file_index] - start_time)/ AV_TIME_BASE;
|
||
1663 | |||
1664 | if (ost->encoding_needed) {
|
||
1665 | b926b628 | Michael Niedermayer | av_assert0(ist->decoding_needed); |
1666 | bde0705c | Limin Wang | switch(ost->st->codec->codec_type) {
|
1667 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:
|
1668 | 036c1382 | Michael Niedermayer | do_audio_out(os, ost, ist, decoded_data_buf, decoded_data_size); |
1669 | bde0705c | Limin Wang | break;
|
1670 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
1671 | 46847a33 | Michael Niedermayer | #if CONFIG_AVFILTER
|
1672 | cc80caff | S.N. Hemanth Meenakshisundaram | if (ist->picref->video)
|
1673 | ost->st->codec->sample_aspect_ratio = ist->picref->video->pixel_aspect; |
||
1674 | 46847a33 | Michael Niedermayer | #endif
|
1675 | bde0705c | Limin Wang | do_video_out(os, ost, ist, &picture, &frame_size); |
1676 | b60d1379 | Stefano Sabatini | if (vstats_filename && frame_size)
|
1677 | bde0705c | Limin Wang | do_video_stats(os, ost, frame_size); |
1678 | break;
|
||
1679 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_SUBTITLE:
|
1680 | bde0705c | Limin Wang | do_subtitle_out(os, ost, ist, &subtitle, |
1681 | pkt->pts); |
||
1682 | break;
|
||
1683 | default:
|
||
1684 | 0f4e8165 | Ronald S. Bultje | abort(); |
1685 | bde0705c | Limin Wang | } |
1686 | } else {
|
||
1687 | AVFrame avframe; //FIXME/XXX remove this
|
||
1688 | AVPacket opkt; |
||
1689 | cdf38a17 | Michael Niedermayer | int64_t ost_tb_start_time= av_rescale_q(start_time, AV_TIME_BASE_Q, ost->st->time_base); |
1690 | |||
1691 | bde0705c | Limin Wang | av_init_packet(&opkt); |
1692 | |||
1693 | cc947f04 | Jean-Daniel Dupas | if ((!ost->frame_number && !(pkt->flags & AV_PKT_FLAG_KEY)) && !copy_initial_nonkeyframes)
|
1694 | 7cacf1e8 | Michael Niedermayer | continue;
|
1695 | |||
1696 | bde0705c | Limin Wang | /* no reencoding needed : output the packet directly */
|
1697 | /* force the input stream PTS */
|
||
1698 | |||
1699 | avcodec_get_frame_defaults(&avframe); |
||
1700 | ost->st->codec->coded_frame= &avframe; |
||
1701 | cc947f04 | Jean-Daniel Dupas | avframe.key_frame = pkt->flags & AV_PKT_FLAG_KEY; |
1702 | bde0705c | Limin Wang | |
1703 | 72415b2a | Stefano Sabatini | if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
|
1704 | bde0705c | Limin Wang | audio_size += data_size; |
1705 | 72415b2a | Stefano Sabatini | else if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { |
1706 | bde0705c | Limin Wang | video_size += data_size; |
1707 | ost->sync_opts++; |
||
1708 | } |
||
1709 | |||
1710 | opkt.stream_index= ost->index; |
||
1711 | if(pkt->pts != AV_NOPTS_VALUE)
|
||
1712 | cdf38a17 | Michael Niedermayer | opkt.pts= av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time; |
1713 | bde0705c | Limin Wang | else
|
1714 | opkt.pts= AV_NOPTS_VALUE; |
||
1715 | |||
1716 | d2ce2f5e | Baptiste Coudurier | if (pkt->dts == AV_NOPTS_VALUE)
|
1717 | 181782ae | Michael Niedermayer | opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base); |
1718 | d2ce2f5e | Baptiste Coudurier | else
|
1719 | opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base); |
||
1720 | cdf38a17 | Michael Niedermayer | opkt.dts -= ost_tb_start_time; |
1721 | c0dd7b7c | Michael Niedermayer | |
1722 | a03d59b7 | Aurelien Jacobs | opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base); |
1723 | bde0705c | Limin Wang | opkt.flags= pkt->flags; |
1724 | |||
1725 | //FIXME remove the following 2 lines they shall be replaced by the bitstream filters
|
||
1726 | 5bfe91e6 | Michael Niedermayer | if( ost->st->codec->codec_id != CODEC_ID_H264
|
1727 | && ost->st->codec->codec_id != CODEC_ID_MPEG1VIDEO |
||
1728 | && ost->st->codec->codec_id != CODEC_ID_MPEG2VIDEO |
||
1729 | ) { |
||
1730 | cc947f04 | Jean-Daniel Dupas | if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & AV_PKT_FLAG_KEY))
|
1731 | 9f907d85 | Michael Niedermayer | opkt.destruct= av_destruct_packet; |
1732 | d310d56a | Baptiste Coudurier | } else {
|
1733 | opkt.data = data_buf; |
||
1734 | opkt.size = data_size; |
||
1735 | } |
||
1736 | bde0705c | Limin Wang | |
1737 | 0b6d358a | Nicolas George | write_frame(os, &opkt, ost->st->codec, ost->bitstream_filters); |
1738 | bde0705c | Limin Wang | ost->st->codec->frame_number++; |
1739 | ost->frame_number++; |
||
1740 | av_free_packet(&opkt); |
||
1741 | a700a6ae | Fabrice Bellard | } |
1742 | } |
||
1743 | bde0705c | Limin Wang | } |
1744 | 46847a33 | Michael Niedermayer | |
1745 | #if CONFIG_AVFILTER
|
||
1746 | 748db0fc | Michael Niedermayer | frame_available = (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) && |
1747 | dfd57757 | Stefano Sabatini | ist->output_video_filter && avfilter_poll_frame(ist->output_video_filter->inputs[0]);
|
1748 | 46847a33 | Michael Niedermayer | if(ist->picref)
|
1749 | 7fce481a | S.N. Hemanth Meenakshisundaram | avfilter_unref_buffer(ist->picref); |
1750 | 46847a33 | Michael Niedermayer | } |
1751 | #endif
|
||
1752 | bde0705c | Limin Wang | av_free(buffer_to_free); |
1753 | /* XXX: allocate the subtitles in the codec ? */
|
||
1754 | if (subtitle_to_free) {
|
||
1755 | 1d6233d3 | Aurelien Jacobs | avsubtitle_free(subtitle_to_free); |
1756 | bde0705c | Limin Wang | subtitle_to_free = NULL;
|
1757 | a700a6ae | Fabrice Bellard | } |
1758 | bde0705c | Limin Wang | } |
1759 | a700a6ae | Fabrice Bellard | discard_packet:
|
1760 | 6f824977 | Michael Niedermayer | if (pkt == NULL) { |
1761 | /* EOF handling */
|
||
1762 | 115329f1 | Diego Biurrun | |
1763 | 6f824977 | Michael Niedermayer | for(i=0;i<nb_ostreams;i++) { |
1764 | ost = ost_table[i]; |
||
1765 | if (ost->source_index == ist_index) {
|
||
1766 | 01f4895c | Michael Niedermayer | AVCodecContext *enc= ost->st->codec; |
1767 | 6f824977 | Michael Niedermayer | os = output_files[ost->file_index]; |
1768 | 115329f1 | Diego Biurrun | |
1769 | 72415b2a | Stefano Sabatini | if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO && enc->frame_size <=1) |
1770 | 6f824977 | Michael Niedermayer | continue;
|
1771 | 72415b2a | Stefano Sabatini | if(ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE))
|
1772 | 6f824977 | Michael Niedermayer | continue;
|
1773 | |||
1774 | if (ost->encoding_needed) {
|
||
1775 | for(;;) {
|
||
1776 | AVPacket pkt; |
||
1777 | cef7cc72 | Justin Ruggles | int fifo_bytes;
|
1778 | 6f824977 | Michael Niedermayer | av_init_packet(&pkt); |
1779 | pkt.stream_index= ost->index; |
||
1780 | 115329f1 | Diego Biurrun | |
1781 | 01f4895c | Michael Niedermayer | switch(ost->st->codec->codec_type) {
|
1782 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:
|
1783 | 41dd680d | Michael Niedermayer | fifo_bytes = av_fifo_size(ost->fifo); |
1784 | cef7cc72 | Justin Ruggles | ret = 0;
|
1785 | /* encode any samples remaining in fifo */
|
||
1786 | b10d7e4e | Baptiste Coudurier | if (fifo_bytes > 0) { |
1787 | ba7d6e79 | Stefano Sabatini | int osize = av_get_bits_per_sample_fmt(enc->sample_fmt) >> 3; |
1788 | cef7cc72 | Justin Ruggles | int fs_tmp = enc->frame_size;
|
1789 | b10d7e4e | Baptiste Coudurier | |
1790 | 79c85beb | Justin Ruggles | av_fifo_generic_read(ost->fifo, audio_buf, fifo_bytes, NULL);
|
1791 | b10d7e4e | Baptiste Coudurier | if (enc->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) {
|
1792 | enc->frame_size = fifo_bytes / (osize * enc->channels); |
||
1793 | } else { /* pad */ |
||
1794 | int frame_bytes = enc->frame_size*osize*enc->channels;
|
||
1795 | 79c85beb | Justin Ruggles | if (allocated_audio_buf_size < frame_bytes)
|
1796 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1797 | e91376d1 | Justin Ruggles | memset(audio_buf+fifo_bytes, 0, frame_bytes - fifo_bytes);
|
1798 | b10d7e4e | Baptiste Coudurier | } |
1799 | |||
1800 | 79c85beb | Justin Ruggles | ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, (short *)audio_buf);
|
1801 | 7c8689ef | Baptiste Coudurier | pkt.duration = av_rescale((int64_t)enc->frame_size*ost->st->time_base.den, |
1802 | ost->st->time_base.num, enc->sample_rate); |
||
1803 | cef7cc72 | Justin Ruggles | enc->frame_size = fs_tmp; |
1804 | 9e0db7d5 | Michael Niedermayer | } |
1805 | if(ret <= 0) { |
||
1806 | cef7cc72 | Justin Ruggles | ret = avcodec_encode_audio(enc, bit_buffer, bit_buffer_size, NULL);
|
1807 | } |
||
1808 | 528271ff | Michael Niedermayer | if (ret < 0) { |
1809 | fprintf(stderr, "Audio encoding failed\n");
|
||
1810 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1811 | 528271ff | Michael Niedermayer | } |
1812 | 6f824977 | Michael Niedermayer | audio_size += ret; |
1813 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
1814 | 6f824977 | Michael Niedermayer | break;
|
1815 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
1816 | 8a6cb114 | Michael Niedermayer | ret = avcodec_encode_video(enc, bit_buffer, bit_buffer_size, NULL);
|
1817 | 528271ff | Michael Niedermayer | if (ret < 0) { |
1818 | fprintf(stderr, "Video encoding failed\n");
|
||
1819 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
1820 | 528271ff | Michael Niedermayer | } |
1821 | 6f824977 | Michael Niedermayer | video_size += ret; |
1822 | if(enc->coded_frame && enc->coded_frame->key_frame)
|
||
1823 | cc947f04 | Jean-Daniel Dupas | pkt.flags |= AV_PKT_FLAG_KEY; |
1824 | 6f824977 | Michael Niedermayer | if (ost->logfile && enc->stats_out) {
|
1825 | fprintf(ost->logfile, "%s", enc->stats_out);
|
||
1826 | } |
||
1827 | break;
|
||
1828 | default:
|
||
1829 | ret=-1;
|
||
1830 | } |
||
1831 | 115329f1 | Diego Biurrun | |
1832 | 6f824977 | Michael Niedermayer | if(ret<=0) |
1833 | break;
|
||
1834 | 27537106 | Michael Niedermayer | pkt.data= bit_buffer; |
1835 | 6f824977 | Michael Niedermayer | pkt.size= ret; |
1836 | e7902f20 | Michael Niedermayer | if(enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
|
1837 | c0df9d75 | Michael Niedermayer | pkt.pts= av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base); |
1838 | 0b6d358a | Nicolas George | write_frame(os, &pkt, ost->st->codec, ost->bitstream_filters); |
1839 | 6f824977 | Michael Niedermayer | } |
1840 | } |
||
1841 | } |
||
1842 | } |
||
1843 | } |
||
1844 | 115329f1 | Diego Biurrun | |
1845 | a700a6ae | Fabrice Bellard | return 0; |
1846 | fail_decode:
|
||
1847 | return -1; |
||
1848 | } |
||
1849 | |||
1850 | 6d1ba1ac | Luca Abeni | static void print_sdp(AVFormatContext **avc, int n) |
1851 | { |
||
1852 | char sdp[2048]; |
||
1853 | |||
1854 | avf_sdp_create(avc, n, sdp, sizeof(sdp));
|
||
1855 | printf("SDP:\n%s\n", sdp);
|
||
1856 | 536cd1db | Luca Barbato | fflush(stdout); |
1857 | 6d1ba1ac | Luca Abeni | } |
1858 | a700a6ae | Fabrice Bellard | |
1859 | 7a39f142 | Anton Khirnov | static int copy_chapters(int infile, int outfile) |
1860 | { |
||
1861 | AVFormatContext *is = input_files[infile]; |
||
1862 | AVFormatContext *os = output_files[outfile]; |
||
1863 | int i;
|
||
1864 | |||
1865 | for (i = 0; i < is->nb_chapters; i++) { |
||
1866 | AVChapter *in_ch = is->chapters[i], *out_ch; |
||
1867 | int64_t ts_off = av_rescale_q(start_time - input_files_ts_offset[infile], |
||
1868 | AV_TIME_BASE_Q, in_ch->time_base); |
||
1869 | int64_t rt = (recording_time == INT64_MAX) ? INT64_MAX : |
||
1870 | av_rescale_q(recording_time, AV_TIME_BASE_Q, in_ch->time_base); |
||
1871 | |||
1872 | |||
1873 | if (in_ch->end < ts_off)
|
||
1874 | continue;
|
||
1875 | if (rt != INT64_MAX && in_ch->start > rt + ts_off)
|
||
1876 | break;
|
||
1877 | |||
1878 | out_ch = av_mallocz(sizeof(AVChapter));
|
||
1879 | if (!out_ch)
|
||
1880 | return AVERROR(ENOMEM);
|
||
1881 | |||
1882 | out_ch->id = in_ch->id; |
||
1883 | out_ch->time_base = in_ch->time_base; |
||
1884 | out_ch->start = FFMAX(0, in_ch->start - ts_off);
|
||
1885 | out_ch->end = FFMIN(rt, in_ch->end - ts_off); |
||
1886 | |||
1887 | d0abe80a | Anton Khirnov | if (metadata_chapters_autocopy)
|
1888 | 7f88a5bf | Ronald S. Bultje | av_metadata_copy(&out_ch->metadata, in_ch->metadata, 0);
|
1889 | 7a39f142 | Anton Khirnov | |
1890 | os->nb_chapters++; |
||
1891 | os->chapters = av_realloc(os->chapters, sizeof(AVChapter)*os->nb_chapters);
|
||
1892 | if (!os->chapters)
|
||
1893 | return AVERROR(ENOMEM);
|
||
1894 | os->chapters[os->nb_chapters - 1] = out_ch;
|
||
1895 | } |
||
1896 | return 0; |
||
1897 | } |
||
1898 | |||
1899 | 4ad08021 | Nicolas George | static void parse_forced_key_frames(char *kf, AVOutputStream *ost, |
1900 | AVCodecContext *avctx) |
||
1901 | { |
||
1902 | char *p;
|
||
1903 | int n = 1, i; |
||
1904 | int64_t t; |
||
1905 | |||
1906 | for (p = kf; *p; p++)
|
||
1907 | if (*p == ',') |
||
1908 | n++; |
||
1909 | ost->forced_kf_count = n; |
||
1910 | ost->forced_kf_pts = av_malloc(sizeof(*ost->forced_kf_pts) * n);
|
||
1911 | if (!ost->forced_kf_pts) {
|
||
1912 | av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n"); |
||
1913 | ffmpeg_exit(1);
|
||
1914 | } |
||
1915 | for (i = 0; i < n; i++) { |
||
1916 | p = i ? strchr(p, ',') + 1 : kf; |
||
1917 | t = parse_time_or_die("force_key_frames", p, 1); |
||
1918 | ost->forced_kf_pts[i] = av_rescale_q(t, AV_TIME_BASE_Q, avctx->time_base); |
||
1919 | } |
||
1920 | } |
||
1921 | |||
1922 | 85f07f22 | Fabrice Bellard | /*
|
1923 | * The following code is the main loop of the file converter
|
||
1924 | */
|
||
1925 | 3aace1bc | Stefano Sabatini | static int transcode(AVFormatContext **output_files, |
1926 | 065a20cb | Stefano Sabatini | int nb_output_files,
|
1927 | AVFormatContext **input_files, |
||
1928 | int nb_input_files,
|
||
1929 | AVStreamMap *stream_maps, int nb_stream_maps)
|
||
1930 | 85f07f22 | Fabrice Bellard | { |
1931 | 002c95d7 | Baptiste Coudurier | int ret = 0, i, j, k, n, nb_istreams = 0, nb_ostreams = 0; |
1932 | 85f07f22 | Fabrice Bellard | AVFormatContext *is, *os; |
1933 | AVCodecContext *codec, *icodec; |
||
1934 | AVOutputStream *ost, **ost_table = NULL;
|
||
1935 | AVInputStream *ist, **ist_table = NULL;
|
||
1936 | bdc4796f | Fabrice Bellard | AVInputFile *file_table; |
1937 | 002c95d7 | Baptiste Coudurier | char error[1024]; |
1938 | cb09b2ed | Philip Gladstone | int key;
|
1939 | 6d1ba1ac | Luca Abeni | int want_sdp = 1; |
1940 | 545465ec | Michael Niedermayer | uint8_t no_packet[MAX_FILES]={0};
|
1941 | int no_packet_count=0; |
||
1942 | bdc4796f | Fabrice Bellard | |
1943 | 90901860 | Michael Niedermayer | file_table= av_mallocz(nb_input_files * sizeof(AVInputFile));
|
1944 | bdc4796f | Fabrice Bellard | if (!file_table)
|
1945 | goto fail;
|
||
1946 | 115329f1 | Diego Biurrun | |
1947 | 85f07f22 | Fabrice Bellard | /* input stream init */
|
1948 | j = 0;
|
||
1949 | for(i=0;i<nb_input_files;i++) { |
||
1950 | is = input_files[i]; |
||
1951 | file_table[i].ist_index = j; |
||
1952 | 79fdaa4c | Fabrice Bellard | file_table[i].nb_streams = is->nb_streams; |
1953 | 85f07f22 | Fabrice Bellard | j += is->nb_streams; |
1954 | } |
||
1955 | nb_istreams = j; |
||
1956 | |||
1957 | ist_table = av_mallocz(nb_istreams * sizeof(AVInputStream *));
|
||
1958 | if (!ist_table)
|
||
1959 | bdc4796f | Fabrice Bellard | goto fail;
|
1960 | 115329f1 | Diego Biurrun | |
1961 | 85f07f22 | Fabrice Bellard | for(i=0;i<nb_istreams;i++) { |
1962 | ist = av_mallocz(sizeof(AVInputStream));
|
||
1963 | if (!ist)
|
||
1964 | goto fail;
|
||
1965 | ist_table[i] = ist; |
||
1966 | } |
||
1967 | j = 0;
|
||
1968 | for(i=0;i<nb_input_files;i++) { |
||
1969 | is = input_files[i]; |
||
1970 | for(k=0;k<is->nb_streams;k++) { |
||
1971 | ist = ist_table[j++]; |
||
1972 | ist->st = is->streams[k]; |
||
1973 | ist->file_index = i; |
||
1974 | ist->index = k; |
||
1975 | ist->discard = 1; /* the stream is discarded by default |
||
1976 | (changed later) */
|
||
1977 | bdfcbbed | Max Krasnyansky | |
1978 | 3a25ca18 | Stefano Sabatini | if (rate_emu) {
|
1979 | bdfcbbed | Max Krasnyansky | ist->start = av_gettime(); |
1980 | } |
||
1981 | 85f07f22 | Fabrice Bellard | } |
1982 | } |
||
1983 | |||
1984 | /* output stream init */
|
||
1985 | nb_ostreams = 0;
|
||
1986 | for(i=0;i<nb_output_files;i++) { |
||
1987 | os = output_files[i]; |
||
1988 | bb62d5c1 | Anton Khirnov | if (!os->nb_streams && !(os->oformat->flags & AVFMT_NOSTREAMS)) {
|
1989 | fc5d0db5 | Stefano Sabatini | dump_format(output_files[i], i, output_files[i]->filename, 1);
|
1990 | fprintf(stderr, "Output file #%d does not contain any stream\n", i);
|
||
1991 | d62ccec8 | Jai Menon | ret = AVERROR(EINVAL); |
1992 | goto fail;
|
||
1993 | 8a7bde1c | Baptiste Coudurier | } |
1994 | 85f07f22 | Fabrice Bellard | nb_ostreams += os->nb_streams; |
1995 | } |
||
1996 | if (nb_stream_maps > 0 && nb_stream_maps != nb_ostreams) { |
||
1997 | fprintf(stderr, "Number of stream maps must match number of output streams\n");
|
||
1998 | d62ccec8 | Jai Menon | ret = AVERROR(EINVAL); |
1999 | goto fail;
|
||
2000 | 85f07f22 | Fabrice Bellard | } |
2001 | |||
2002 | bd073980 | Brian Foley | /* Sanity check the mapping args -- do the input files & streams exist? */
|
2003 | for(i=0;i<nb_stream_maps;i++) { |
||
2004 | int fi = stream_maps[i].file_index;
|
||
2005 | int si = stream_maps[i].stream_index;
|
||
2006 | 115329f1 | Diego Biurrun | |
2007 | bd073980 | Brian Foley | if (fi < 0 || fi > nb_input_files - 1 || |
2008 | si < 0 || si > file_table[fi].nb_streams - 1) { |
||
2009 | fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si);
|
||
2010 | d62ccec8 | Jai Menon | ret = AVERROR(EINVAL); |
2011 | goto fail;
|
||
2012 | bd073980 | Brian Foley | } |
2013 | b4a3389e | Wolfram Gloger | fi = stream_maps[i].sync_file_index; |
2014 | si = stream_maps[i].sync_stream_index; |
||
2015 | if (fi < 0 || fi > nb_input_files - 1 || |
||
2016 | si < 0 || si > file_table[fi].nb_streams - 1) { |
||
2017 | fprintf(stderr,"Could not find sync stream #%d.%d\n", fi, si);
|
||
2018 | d62ccec8 | Jai Menon | ret = AVERROR(EINVAL); |
2019 | goto fail;
|
||
2020 | b4a3389e | Wolfram Gloger | } |
2021 | bd073980 | Brian Foley | } |
2022 | 115329f1 | Diego Biurrun | |
2023 | 85f07f22 | Fabrice Bellard | ost_table = av_mallocz(sizeof(AVOutputStream *) * nb_ostreams);
|
2024 | if (!ost_table)
|
||
2025 | goto fail;
|
||
2026 | n = 0;
|
||
2027 | for(k=0;k<nb_output_files;k++) { |
||
2028 | os = output_files[k]; |
||
2029 | de427ff4 | Stefano Sabatini | for(i=0;i<os->nb_streams;i++,n++) { |
2030 | 85f07f22 | Fabrice Bellard | int found;
|
2031 | 9fdf4b58 | Nicolas George | ost = ost_table[n] = output_streams_for_file[k][i]; |
2032 | 85f07f22 | Fabrice Bellard | ost->st = os->streams[i]; |
2033 | if (nb_stream_maps > 0) { |
||
2034 | de427ff4 | Stefano Sabatini | ost->source_index = file_table[stream_maps[n].file_index].ist_index + |
2035 | stream_maps[n].stream_index; |
||
2036 | 115329f1 | Diego Biurrun | |
2037 | bd073980 | Brian Foley | /* Sanity check that the stream types match */
|
2038 | 01f4895c | Michael Niedermayer | if (ist_table[ost->source_index]->st->codec->codec_type != ost->st->codec->codec_type) {
|
2039 | 150d5a25 | Stefano Sabatini | int i= ost->file_index;
|
2040 | dump_format(output_files[i], i, output_files[i]->filename, 1);
|
||
2041 | bd073980 | Brian Foley | fprintf(stderr, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n",
|
2042 | de427ff4 | Stefano Sabatini | stream_maps[n].file_index, stream_maps[n].stream_index, |
2043 | bd073980 | Brian Foley | ost->file_index, ost->index); |
2044 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2045 | bd073980 | Brian Foley | } |
2046 | 115329f1 | Diego Biurrun | |
2047 | 85f07f22 | Fabrice Bellard | } else {
|
2048 | 247e3954 | Michael Niedermayer | int best_nb_frames=-1; |
2049 | 3f1710e7 | Ramiro Polla | /* get corresponding input stream index : we select the first one with the right type */
|
2050 | found = 0;
|
||
2051 | for(j=0;j<nb_istreams;j++) { |
||
2052 | int skip=0; |
||
2053 | ist = ist_table[j]; |
||
2054 | if(opt_programid){
|
||
2055 | int pi,si;
|
||
2056 | AVFormatContext *f= input_files[ ist->file_index ]; |
||
2057 | skip=1;
|
||
2058 | for(pi=0; pi<f->nb_programs; pi++){ |
||
2059 | AVProgram *p= f->programs[pi]; |
||
2060 | if(p->id == opt_programid)
|
||
2061 | for(si=0; si<p->nb_stream_indexes; si++){ |
||
2062 | if(f->streams[ p->stream_index[si] ] == ist->st)
|
||
2063 | skip=0;
|
||
2064 | } |
||
2065 | 6d3d3b83 | Michael Niedermayer | } |
2066 | 3f1710e7 | Ramiro Polla | } |
2067 | if (ist->discard && ist->st->discard != AVDISCARD_ALL && !skip &&
|
||
2068 | ist->st->codec->codec_type == ost->st->codec->codec_type) { |
||
2069 | if(best_nb_frames < ist->st->codec_info_nb_frames){
|
||
2070 | best_nb_frames= ist->st->codec_info_nb_frames; |
||
2071 | ost->source_index = j; |
||
2072 | found = 1;
|
||
2073 | 85f07f22 | Fabrice Bellard | } |
2074 | } |
||
2075 | 3f1710e7 | Ramiro Polla | } |
2076 | a15bc651 | Nico Sabbi | |
2077 | if (!found) {
|
||
2078 | if(! opt_programid) {
|
||
2079 | /* try again and reuse existing stream */
|
||
2080 | for(j=0;j<nb_istreams;j++) { |
||
2081 | ist = ist_table[j]; |
||
2082 | 6d3d3b83 | Michael Niedermayer | if ( ist->st->codec->codec_type == ost->st->codec->codec_type
|
2083 | && ist->st->discard != AVDISCARD_ALL) { |
||
2084 | a15bc651 | Nico Sabbi | ost->source_index = j; |
2085 | found = 1;
|
||
2086 | } |
||
2087 | } |
||
2088 | 50e143c4 | Nico Sabbi | } |
2089 | 85f07f22 | Fabrice Bellard | if (!found) {
|
2090 | 462cca10 | Stefano Sabatini | int i= ost->file_index;
|
2091 | dump_format(output_files[i], i, output_files[i]->filename, 1);
|
||
2092 | 85f07f22 | Fabrice Bellard | fprintf(stderr, "Could not find input stream matching output stream #%d.%d\n",
|
2093 | ost->file_index, ost->index); |
||
2094 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2095 | 85f07f22 | Fabrice Bellard | } |
2096 | } |
||
2097 | } |
||
2098 | ist = ist_table[ost->source_index]; |
||
2099 | ist->discard = 0;
|
||
2100 | b4a3389e | Wolfram Gloger | ost->sync_ist = (nb_stream_maps > 0) ?
|
2101 | de427ff4 | Stefano Sabatini | ist_table[file_table[stream_maps[n].sync_file_index].ist_index + |
2102 | stream_maps[n].sync_stream_index] : ist; |
||
2103 | 85f07f22 | Fabrice Bellard | } |
2104 | } |
||
2105 | |||
2106 | /* for each output stream, we compute the right encoding parameters */
|
||
2107 | for(i=0;i<nb_ostreams;i++) { |
||
2108 | ost = ost_table[i]; |
||
2109 | 365515ac | Michael Niedermayer | os = output_files[ost->file_index]; |
2110 | 85f07f22 | Fabrice Bellard | ist = ist_table[ost->source_index]; |
2111 | |||
2112 | 01f4895c | Michael Niedermayer | codec = ost->st->codec; |
2113 | icodec = ist->st->codec; |
||
2114 | 85f07f22 | Fabrice Bellard | |
2115 | d0abe80a | Anton Khirnov | if (metadata_streams_autocopy)
|
2116 | 7f88a5bf | Ronald S. Bultje | av_metadata_copy(&ost->st->metadata, ist->st->metadata, |
2117 | AV_METADATA_DONT_OVERWRITE); |
||
2118 | 8e0d882b | Aurelien Jacobs | |
2119 | 90c2295b | Evgeniy Stepanov | ost->st->disposition = ist->st->disposition; |
2120 | a39b76ea | Michael Niedermayer | codec->bits_per_raw_sample= icodec->bits_per_raw_sample; |
2121 | de961801 | David Conrad | codec->chroma_sample_location = icodec->chroma_sample_location; |
2122 | 90c2295b | Evgeniy Stepanov | |
2123 | 1629626f | Fabrice Bellard | if (ost->st->stream_copy) {
|
2124 | b659c8b4 | Luca Abeni | uint64_t extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE; |
2125 | |||
2126 | if (extra_size > INT_MAX)
|
||
2127 | goto fail;
|
||
2128 | |||
2129 | 1629626f | Fabrice Bellard | /* if stream_copy is selected, no need to decode or encode */
|
2130 | codec->codec_id = icodec->codec_id; |
||
2131 | codec->codec_type = icodec->codec_type; |
||
2132 | 365515ac | Michael Niedermayer | |
2133 | if(!codec->codec_tag){
|
||
2134 | if( !os->oformat->codec_tag
|
||
2135 | 37ce3d6b | Michael Niedermayer | || av_codec_get_id (os->oformat->codec_tag, icodec->codec_tag) == codec->codec_id |
2136 | 365515ac | Michael Niedermayer | || av_codec_get_tag(os->oformat->codec_tag, icodec->codec_id) <= 0)
|
2137 | codec->codec_tag = icodec->codec_tag; |
||
2138 | } |
||
2139 | |||
2140 | 1629626f | Fabrice Bellard | codec->bit_rate = icodec->bit_rate; |
2141 | 2dec2bb8 | Michael Niedermayer | codec->rc_max_rate = icodec->rc_max_rate; |
2142 | codec->rc_buffer_size = icodec->rc_buffer_size; |
||
2143 | b659c8b4 | Luca Abeni | codec->extradata= av_mallocz(extra_size); |
2144 | if (!codec->extradata)
|
||
2145 | goto fail;
|
||
2146 | memcpy(codec->extradata, icodec->extradata, icodec->extradata_size); |
||
2147 | dffbfd06 | Michael Niedermayer | codec->extradata_size= icodec->extradata_size; |
2148 | 59e2118e | Michael Niedermayer | if(!copy_tb && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base) && av_q2d(ist->st->time_base) < 1.0/500){ |
2149 | d29de719 | Michael Niedermayer | codec->time_base = icodec->time_base; |
2150 | 3797c74b | Michael Niedermayer | codec->time_base.num *= icodec->ticks_per_frame; |
2151 | 8abcbf2d | Baptiste Coudurier | av_reduce(&codec->time_base.num, &codec->time_base.den, |
2152 | codec->time_base.num, codec->time_base.den, INT_MAX); |
||
2153 | 3797c74b | Michael Niedermayer | }else
|
2154 | d29de719 | Michael Niedermayer | codec->time_base = ist->st->time_base; |
2155 | 1629626f | Fabrice Bellard | switch(codec->codec_type) {
|
2156 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:
|
2157 | d08e3e91 | Ramiro Polla | if(audio_volume != 256) { |
2158 | fprintf(stderr,"-acodec copy and -vol are incompatible (frames are not decoded)\n");
|
||
2159 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2160 | d08e3e91 | Ramiro Polla | } |
2161 | 13367a46 | Benjamin Larsson | codec->channel_layout = icodec->channel_layout; |
2162 | 1629626f | Fabrice Bellard | codec->sample_rate = icodec->sample_rate; |
2163 | codec->channels = icodec->channels; |
||
2164 | 0a3b0447 | Michael Niedermayer | codec->frame_size = icodec->frame_size; |
2165 | c1344911 | Michael Niedermayer | codec->block_align= icodec->block_align; |
2166 | 4efd6f58 | Michael Niedermayer | if(codec->block_align == 1 && codec->codec_id == CODEC_ID_MP3) |
2167 | codec->block_align= 0;
|
||
2168 | bcbd328e | Michael Niedermayer | if(codec->codec_id == CODEC_ID_AC3)
|
2169 | codec->block_align= 0;
|
||
2170 | 1629626f | Fabrice Bellard | break;
|
2171 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
2172 | 9df3437f | Baptiste Coudurier | codec->pix_fmt = icodec->pix_fmt; |
2173 | 1629626f | Fabrice Bellard | codec->width = icodec->width; |
2174 | codec->height = icodec->height; |
||
2175 | ff8cc24b | Michael Niedermayer | codec->has_b_frames = icodec->has_b_frames; |
2176 | 1629626f | Fabrice Bellard | break;
|
2177 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_SUBTITLE:
|
2178 | d43b26ea | David Conrad | codec->width = icodec->width; |
2179 | codec->height = icodec->height; |
||
2180 | cf7fc795 | Fabrice Bellard | break;
|
2181 | 1629626f | Fabrice Bellard | default:
|
2182 | 0f4e8165 | Ronald S. Bultje | abort(); |
2183 | 1629626f | Fabrice Bellard | } |
2184 | } else {
|
||
2185 | switch(codec->codec_type) {
|
||
2186 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_AUDIO:
|
2187 | 41dd680d | Michael Niedermayer | ost->fifo= av_fifo_alloc(1024);
|
2188 | if(!ost->fifo)
|
||
2189 | 85f07f22 | Fabrice Bellard | goto fail;
|
2190 | 5d6e4c16 | Stefano Sabatini | ost->reformat_pair = MAKE_SFMT_PAIR(AV_SAMPLE_FMT_NONE,AV_SAMPLE_FMT_NONE); |
2191 | 2886f311 | Andreas Öman | ost->audio_resample = codec->sample_rate != icodec->sample_rate || audio_sync_method > 1;
|
2192 | icodec->request_channels = codec->channels; |
||
2193 | 85f07f22 | Fabrice Bellard | ist->decoding_needed = 1;
|
2194 | ost->encoding_needed = 1;
|
||
2195 | 8afab686 | Stefano Sabatini | ost->resample_sample_fmt = icodec->sample_fmt; |
2196 | ost->resample_sample_rate = icodec->sample_rate; |
||
2197 | ost->resample_channels = icodec->channels; |
||
2198 | 1629626f | Fabrice Bellard | break;
|
2199 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_VIDEO:
|
2200 | 761c8c92 | Baptiste Coudurier | if (ost->st->codec->pix_fmt == PIX_FMT_NONE) {
|
2201 | 562f22a6 | Ronald S. Bultje | fprintf(stderr, "Video pixel format is unknown, stream cannot be encoded\n");
|
2202 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2203 | 761c8c92 | Baptiste Coudurier | } |
2204 | 5879ea6d | Stefano Sabatini | ost->video_resample = (codec->width != icodec->width || |
2205 | codec->height != icodec->height || |
||
2206 | 18a54b04 | Luca Abeni | (codec->pix_fmt != icodec->pix_fmt)); |
2207 | c3f11d19 | Luca Abeni | if (ost->video_resample) {
|
2208 | 8a774d3d | Baptiste Coudurier | #if !CONFIG_AVFILTER
|
2209 | 2de28abb | Michael Niedermayer | avcodec_get_frame_defaults(&ost->pict_tmp); |
2210 | 9d58e0a9 | Baptiste Coudurier | if(avpicture_alloc((AVPicture*)&ost->pict_tmp, codec->pix_fmt,
|
2211 | codec->width, codec->height)) { |
||
2212 | eddc482d | Baptiste Coudurier | fprintf(stderr, "Cannot allocate temp picture, check pix fmt\n");
|
2213 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2214 | eddc482d | Baptiste Coudurier | } |
2215 | 9de8e6ac | Ronald S. Bultje | sws_flags = av_get_int(sws_opts, "sws_flags", NULL); |
2216 | 18a54b04 | Luca Abeni | ost->img_resample_ctx = sws_getContext( |
2217 | 5879ea6d | Stefano Sabatini | icodec->width, |
2218 | icodec->height, |
||
2219 | 18a54b04 | Luca Abeni | icodec->pix_fmt, |
2220 | 0c22311b | Michael Niedermayer | codec->width, |
2221 | codec->height, |
||
2222 | 18a54b04 | Luca Abeni | codec->pix_fmt, |
2223 | sws_flags, NULL, NULL, NULL); |
||
2224 | 0b50ac8a | Luca Abeni | if (ost->img_resample_ctx == NULL) { |
2225 | fprintf(stderr, "Cannot get resampling context\n");
|
||
2226 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2227 | 0b50ac8a | Luca Abeni | } |
2228 | 352666c1 | Eric Buehl | |
2229 | ost->original_height = icodec->height; |
||
2230 | ost->original_width = icodec->width; |
||
2231 | 46847a33 | Michael Niedermayer | #endif
|
2232 | a39b76ea | Michael Niedermayer | codec->bits_per_raw_sample= 0;
|
2233 | 85f07f22 | Fabrice Bellard | } |
2234 | 5879ea6d | Stefano Sabatini | ost->resample_height = icodec->height; |
2235 | ost->resample_width = icodec->width; |
||
2236 | b83ccbff | Michael Niedermayer | ost->resample_pix_fmt= icodec->pix_fmt; |
2237 | 85f07f22 | Fabrice Bellard | ost->encoding_needed = 1;
|
2238 | ist->decoding_needed = 1;
|
||
2239 | 46847a33 | Michael Niedermayer | |
2240 | #if CONFIG_AVFILTER
|
||
2241 | if (configure_filters(ist, ost)) {
|
||
2242 | fprintf(stderr, "Error opening filters!\n");
|
||
2243 | exit(1);
|
||
2244 | } |
||
2245 | #endif
|
||
2246 | 1629626f | Fabrice Bellard | break;
|
2247 | 72415b2a | Stefano Sabatini | case AVMEDIA_TYPE_SUBTITLE:
|
2248 | cf7fc795 | Fabrice Bellard | ost->encoding_needed = 1;
|
2249 | ist->decoding_needed = 1;
|
||
2250 | break;
|
||
2251 | 1629626f | Fabrice Bellard | default:
|
2252 | 0f4e8165 | Ronald S. Bultje | abort(); |
2253 | cf7fc795 | Fabrice Bellard | break;
|
2254 | 85f07f22 | Fabrice Bellard | } |
2255 | 1629626f | Fabrice Bellard | /* two pass mode */
|
2256 | 115329f1 | Diego Biurrun | if (ost->encoding_needed &&
|
2257 | 1629626f | Fabrice Bellard | (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) { |
2258 | char logfilename[1024]; |
||
2259 | FILE *f; |
||
2260 | 115329f1 | Diego Biurrun | |
2261 | snprintf(logfilename, sizeof(logfilename), "%s-%d.log", |
||
2262 | 22730e87 | Stefano Sabatini | pass_logfilename_prefix ? pass_logfilename_prefix : DEFAULT_PASS_LOGFILENAME_PREFIX, |
2263 | i); |
||
2264 | 1629626f | Fabrice Bellard | if (codec->flags & CODEC_FLAG_PASS1) {
|
2265 | c56e9e05 | Ramiro Polla | f = fopen(logfilename, "wb");
|
2266 | 1629626f | Fabrice Bellard | if (!f) {
|
2267 | 42d1d06e | Stefano Sabatini | fprintf(stderr, "Cannot write log file '%s' for pass-1 encoding: %s\n", logfilename, strerror(errno));
|
2268 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2269 | 1629626f | Fabrice Bellard | } |
2270 | ost->logfile = f; |
||
2271 | } else {
|
||
2272 | 458b062d | Stefano Sabatini | char *logbuffer;
|
2273 | size_t logbuffer_size; |
||
2274 | if (read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { |
||
2275 | fprintf(stderr, "Error reading log file '%s' for pass-2 encoding\n", logfilename);
|
||
2276 | 639e4ec8 | Stefano Sabatini | ffmpeg_exit(1);
|
2277 | 1629626f | Fabrice Bellard | } |
2278 | codec->stats_in = logbuffer; |
||
2279 | 5abdb4b1 | Fabrice Bellard | } |
2280 | } |
||
2281 | } |
||
2282 | 72415b2a | Stefano Sabatini | if(codec->codec_type == AVMEDIA_TYPE_VIDEO){
|
2283 | 8a6cb114 | Michael Niedermayer | int size= codec->width * codec->height;
|
2284 | c027e91a | Peter Ross | bit_buffer_size= FFMAX(bit_buffer_size, 6*size + 200); |
2285 | 8a6cb114 | Michael Niedermayer | } |
2286 | 85f07f22 | Fabrice Bellard | } |
2287 | |||
2288 | 8a6cb114 | Michael Niedermayer | if (!bit_buffer)
|
2289 | bit_buffer = av_malloc(bit_buffer_size); |
||
2290 | 002c95d7 | Baptiste Coudurier | if (!bit_buffer) {
|
2291 | 50f3fabc | Måns Rullgård | fprintf(stderr, "Cannot allocate %d bytes output buffer\n",
|
2292 | bit_buffer_size); |
||
2293 | 002c95d7 | Baptiste Coudurier | ret = AVERROR(ENOMEM); |
2294 | 8a6cb114 | Michael Niedermayer | goto fail;
|
2295 | 1629626f | Fabrice Bellard | } |
2296 | |||
2297 | 85f07f22 | Fabrice Bellard | /* open each encoder */
|
2298 | for(i=0;i<nb_ostreams;i++) { |
||
2299 | ost = ost_table[i]; |
||
2300 | if (ost->encoding_needed) {
|
||
2301 | 0a6d97b3 | Aurelien Jacobs | AVCodec *codec = i < nb_output_codecs ? output_codecs[i] : NULL;
|
2302 | cb2c971d | Aurelien Jacobs | AVCodecContext *dec = ist_table[ost->source_index]->st->codec; |
2303 | 6488cf9b | Aurelien Jacobs | if (!codec)
|
2304 | fd2b356a | Aurelien Jacobs | codec = avcodec_find_encoder(ost->st->codec->codec_id); |
2305 | 85f07f22 | Fabrice Bellard | if (!codec) {
|
2306 | f356fc57 | Baptiste Coudurier | snprintf(error, sizeof(error), "Encoder (codec id %d) not found for output stream #%d.%d", |
2307 | ost->st->codec->codec_id, ost->file_index, ost->index); |
||
2308 | 002c95d7 | Baptiste Coudurier | ret = AVERROR(EINVAL); |
2309 | goto dump_format;
|
||
2310 | 85f07f22 | Fabrice Bellard | } |
2311 | cb2c971d | Aurelien Jacobs | if (dec->subtitle_header) {
|
2312 | ost->st->codec->subtitle_header = av_malloc(dec->subtitle_header_size); |
||
2313 | if (!ost->st->codec->subtitle_header) {
|
||
2314 | ret = AVERROR(ENOMEM); |
||
2315 | goto dump_format;
|
||
2316 | } |
||
2317 | memcpy(ost->st->codec->subtitle_header, dec->subtitle_header, dec->subtitle_header_size); |
||
2318 | ost->st->codec->subtitle_header_size = dec->subtitle_header_size; |
||
2319 | } |
||
2320 | 01f4895c | Michael Niedermayer | if (avcodec_open(ost->st->codec, codec) < 0) { |
2321 | f356fc57 | Baptiste Coudurier | snprintf(error, sizeof(error), "Error while opening encoder for output stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height", |
2322 | 85f07f22 | Fabrice Bellard | ost->file_index, ost->index); |
2323 | 002c95d7 | Baptiste Coudurier | ret = AVERROR(EINVAL); |
2324 | goto dump_format;
|
||
2325 | 85f07f22 | Fabrice Bellard | } |
2326 | 01f4895c | Michael Niedermayer | extra_size += ost->st->codec->extradata_size; |
2327 | 85f07f22 | Fabrice Bellard | } |
2328 | } |
||
2329 | |||
2330 | /* open each decoder */
|
||
2331 | for(i=0;i<nb_istreams;i++) { |
||
2332 | ist = ist_table[i]; |
||
2333 | if (ist->decoding_needed) {
|
||
2334 | 311e223f | Aurelien Jacobs | AVCodec *codec = i < nb_input_codecs ? input_codecs[i] : NULL;
|
2335 | 6488cf9b | Aurelien Jacobs | if (!codec)
|
2336 | fd2b356a | Aurelien Jacobs | codec = avcodec_find_decoder(ist->st->codec->codec_id); |
2337 | 85f07f22 | Fabrice Bellard | if (!codec) {
|
2338 | f356fc57 | Baptiste Coudurier | snprintf(error, sizeof(error), "Decoder (codec id %d) not found for input stream #%d.%d", |
2339 | 01f4895c | Michael Niedermayer | ist->st->codec->codec_id, ist->file_index, ist->index); |
2340 | 002c95d7 | Baptiste Coudurier | ret = AVERROR(EINVAL); |
2341 | goto dump_format;
|
||
2342 | 85f07f22 | Fabrice Bellard | } |
2343 | 01f4895c | Michael Niedermayer | if (avcodec_open(ist->st->codec, codec) < 0) { |
2344 | f356fc57 | Baptiste Coudurier | snprintf(error, sizeof(error), "Error while opening decoder for input stream #%d.%d", |
2345 | 85f07f22 | Fabrice Bellard | ist->file_index, ist->index); |
2346 | 002c95d7 | Baptiste Coudurier | ret = AVERROR(EINVAL); |
2347 | goto dump_format;
|
||
2348 | 85f07f22 | Fabrice Bellard | } |
2349 | 72415b2a | Stefano Sabatini | //if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
|
2350 | 01f4895c | Michael Niedermayer | // ist->st->codec->flags |= CODEC_FLAG_REPEAT_FIELD;
|
2351 | 85f07f22 | Fabrice Bellard | } |
2352 | } |
||
2353 | |||
2354 | /* init pts */
|
||
2355 | for(i=0;i<nb_istreams;i++) { |
||
2356 | b8c93c48 | Michael Niedermayer | AVStream *st; |
2357 | 85f07f22 | Fabrice Bellard | ist = ist_table[i]; |
2358 | b8c93c48 | Michael Niedermayer | st= ist->st; |
2359 | ist->pts = st->avg_frame_rate.num ? - st->codec->has_b_frames*AV_TIME_BASE / av_q2d(st->avg_frame_rate) : 0;
|
||
2360 | 48291040 | Michael Niedermayer | ist->next_pts = AV_NOPTS_VALUE; |
2361 | ff4905a5 | Michael Niedermayer | ist->is_start = 1;
|
2362 | 85f07f22 | Fabrice Bellard | } |
2363 | c5e1e982 | Justin Johnson | |
2364 | 0a38bafd | Patrice Bensoussan | /* set meta data information from input file if required */
|
2365 | for (i=0;i<nb_meta_data_maps;i++) { |
||
2366 | 1829e195 | Anton Khirnov | AVFormatContext *files[2];
|
2367 | AVMetadata **meta[2];
|
||
2368 | int j;
|
||
2369 | 0a38bafd | Patrice Bensoussan | |
2370 | 1829e195 | Anton Khirnov | #define METADATA_CHECK_INDEX(index, nb_elems, desc)\
|
2371 | if ((index) < 0 || (index) >= (nb_elems)) {\ |
||
2372 | snprintf(error, sizeof(error), "Invalid %s index %d while processing metadata maps\n",\ |
||
2373 | (desc), (index));\ |
||
2374 | ret = AVERROR(EINVAL);\ |
||
2375 | goto dump_format;\
|
||
2376 | 115329f1 | Diego Biurrun | } |
2377 | |||
2378 | 1829e195 | Anton Khirnov | int out_file_index = meta_data_maps[i][0].file; |
2379 | int in_file_index = meta_data_maps[i][1].file; |
||
2380 | 7b393736 | Anton Khirnov | if (in_file_index < 0 || out_file_index < 0) |
2381 | continue;
|
||
2382 | 1829e195 | Anton Khirnov | METADATA_CHECK_INDEX(out_file_index, nb_output_files, "output file")
|
2383 | METADATA_CHECK_INDEX(in_file_index, nb_input_files, "input file")
|
||
2384 | 0a38bafd | Patrice Bensoussan | |
2385 | 1829e195 | Anton Khirnov | files[0] = output_files[out_file_index];
|
2386 | files[1] = input_files[in_file_index];
|
||
2387 | |||
2388 | for (j = 0; j < 2; j++) { |
||
2389 | AVMetaDataMap *map = &meta_data_maps[i][j]; |
||
2390 | |||
2391 | switch (map->type) {
|
||
2392 | case 'g': |
||
2393 | meta[j] = &files[j]->metadata; |
||
2394 | break;
|
||
2395 | case 's': |
||
2396 | METADATA_CHECK_INDEX(map->index, files[j]->nb_streams, "stream")
|
||
2397 | meta[j] = &files[j]->streams[map->index]->metadata; |
||
2398 | break;
|
||
2399 | case 'c': |
||
2400 | METADATA_CHECK_INDEX(map->index, files[j]->nb_chapters, "chapter")
|
||
2401 | meta[j] = &files[j]->chapters[map->index]->metadata; |
||
2402 | break;
|
||
2403 | case 'p': |
||
2404 | METADATA_CHECK_INDEX(map->index, files[j]->nb_programs, "program")
|
||
2405 | meta[j] = &files[j]->programs[map->index]->metadata; |
||
2406 | break;
|
||
2407 | } |
||
2408 | } |
||
2409 | a5926d85 | Aurelien Jacobs | |
2410 | 7f88a5bf | Ronald S. Bultje | av_metadata_copy(meta[0], *meta[1], AV_METADATA_DONT_OVERWRITE); |
2411 | 0a38bafd | Patrice Bensoussan | } |
2412 | 115329f1 | Diego Biurrun | |
2413 | 477b1aea | Anton Khirnov | /* copy global metadata by default */
|
2414 | if (metadata_global_autocopy) {
|
||
2415 | |||
2416 | 8e8a3cc2 | Ronald S. Bultje | for (i = 0; i < nb_output_files; i++) |
2417 | 7f88a5bf | Ronald S. Bultje | av_metadata_copy(&output_files[i]->metadata, input_files[0]->metadata,
|
2418 | AV_METADATA_DONT_OVERWRITE); |
||
2419 | 477b1aea | Anton Khirnov | } |
2420 | |||
2421 | 91e96eba | Anton Khirnov | /* copy chapters according to chapter maps */
|
2422 | for (i = 0; i < nb_chapter_maps; i++) { |
||
2423 | int infile = chapter_maps[i].in_file;
|
||
2424 | int outfile = chapter_maps[i].out_file;
|
||
2425 | |||
2426 | if (infile < 0 || outfile < 0) |
||
2427 | continue;
|
||
2428 | if (infile >= nb_input_files) {
|
||
2429 | snprintf(error, sizeof(error), "Invalid input file index %d in chapter mapping.\n", infile); |
||
2430 | ret = AVERROR(EINVAL); |
||
2431 | goto dump_format;
|
||
2432 | } |
||
2433 | if (outfile >= nb_output_files) {
|
||
2434 | snprintf(error, sizeof(error), "Invalid output file index %d in chapter mapping.\n",outfile); |
||
2435 | ret = AVERROR(EINVAL); |
||
2436 | goto dump_format;
|
||
2437 | } |
||
2438 | copy_chapters(infile, outfile); |
||
2439 | } |
||
2440 | |||
2441 | 7a39f142 | Anton Khirnov | /* copy chapters from the first input file that has them*/
|
2442 | 91e96eba | Anton Khirnov | if (!nb_chapter_maps)
|
2443 | a9c2bf9d | Anton Khirnov | for (i = 0; i < nb_input_files; i++) { |
2444 | if (!input_files[i]->nb_chapters)
|
||
2445 | continue;
|
||
2446 | 7a39f142 | Anton Khirnov | |
2447 | a9c2bf9d | Anton Khirnov | for (j = 0; j < nb_output_files; j++) |
2448 | if ((ret = copy_chapters(i, j)) < 0) |
||
2449 | goto dump_format;
|
||
2450 | 09f47fa4 | Anton Khirnov | break;
|
2451 | a9c2bf9d | Anton Khirnov | } |
2452 | 7a39f142 | Anton Khirnov | |
2453 | 85f07f22 | Fabrice Bellard | /* open files and write file headers */
|
2454 | for(i=0;i<nb_output_files;i++) { |
||
2455 | os = output_files[i]; |
||
2456 | 79fdaa4c | Fabrice Bellard | if (av_write_header(os) < 0) { |
2457 | 002c95d7 | Baptiste Coudurier | snprintf(error, sizeof(error), "Could not write header for output file #%d (incorrect codec parameters ?)", i); |
2458 | 8fa36ae0 | François Revol | ret = AVERROR(EINVAL); |
2459 | 002c95d7 | Baptiste Coudurier | goto dump_format;
|
2460 | a38469e1 | Fabrice Bellard | } |
2461 | 6d1ba1ac | Luca Abeni | if (strcmp(output_files[i]->oformat->name, "rtp")) { |
2462 | want_sdp = 0;
|
||
2463 | } |
||
2464 | } |
||
2465 | 002c95d7 | Baptiste Coudurier | |
2466 | dump_format:
|
||
2467 | /* dump the file output parameters - cannot be done before in case
|
||
2468 | of stream copy */
|
||
2469 | for(i=0;i<nb_output_files;i++) { |
||
2470 | dump_format(output_files[i], i, output_files[i]->filename, 1);
|
||
2471 | } |
||
2472 | |||
2473 | /* dump the stream mapping */
|
||
2474 | if (verbose >= 0) { |
||
2475 | fprintf(stderr, "Stream mapping:\n");
|
||
2476 | for(i=0;i<nb_ostreams;i++) { |
||
2477 | ost = ost_table[i]; |
||
2478 | fprintf(stderr, " Stream #%d.%d -> #%d.%d",
|
||
2479 | ist_table[ost->source_index]->file_index, |
||
2480 | ist_table[ost->source_index]->index, |
||
2481 | ost->file_index, |
||
2482 | ost->index); |
||
2483 | if (ost->sync_ist != ist_table[ost->source_index])
|
||
2484 | fprintf(stderr, " [sync #%d.%d]",
|
||
2485 | ost->sync_ist->file_index, |
||
2486 | ost->sync_ist->index); |
||
2487 | fprintf(stderr, "\n");
|
||
2488 | } |
||
2489 | } |
||
2490 | |||
2491 | if (ret) {
|
||
2492 | fprintf(stderr, "%s\n", error);
|
||
2493 | goto fail;
|
||
2494 | } |
||
2495 | |||
2496 | 6d1ba1ac | Luca Abeni | if (want_sdp) {
|
2497 | print_sdp(output_files, nb_output_files); |
||
2498 | 85f07f22 | Fabrice Bellard | } |
2499 | |||
2500 | 9d58e0a9 | Baptiste Coudurier | if (!using_stdin && verbose >= 0) { |
2501 | d9a916e2 | Charles Yates | fprintf(stderr, "Press [q] to stop encoding\n");
|
2502 | b51469a0 | Leon van Stuivenberg | url_set_interrupt_cb(decode_interrupt_cb); |
2503 | } |
||
2504 | a38469e1 | Fabrice Bellard | term_init(); |
2505 | |||
2506 | 7fc98937 | Limin Wang | timer_start = av_gettime(); |
2507 | 51bd4565 | Philip Gladstone | |
2508 | d9a916e2 | Charles Yates | for(; received_sigterm == 0;) { |
2509 | 85f07f22 | Fabrice Bellard | int file_index, ist_index;
|
2510 | AVPacket pkt; |
||
2511 | a9aeda81 | Patrice Bensoussan | double ipts_min;
|
2512 | double opts_min;
|
||
2513 | 23ffe323 | Michael Niedermayer | |
2514 | 85f07f22 | Fabrice Bellard | redo:
|
2515 | a9aeda81 | Patrice Bensoussan | ipts_min= 1e100;
|
2516 | opts_min= 1e100;
|
||
2517 | a38469e1 | Fabrice Bellard | /* if 'q' pressed, exits */
|
2518 | d9a916e2 | Charles Yates | if (!using_stdin) {
|
2519 | b51469a0 | Leon van Stuivenberg | if (q_pressed)
|
2520 | break;
|
||
2521 | cb09b2ed | Philip Gladstone | /* read_key() returns 0 on EOF */
|
2522 | key = read_key(); |
||
2523 | if (key == 'q') |
||
2524 | break;
|
||
2525 | } |
||
2526 | a38469e1 | Fabrice Bellard | |
2527 | ec5517d5 | Fabrice Bellard | /* select the stream that we must read now by looking at the
|
2528 | smallest output pts */
|
||
2529 | 85f07f22 | Fabrice Bellard | file_index = -1;
|
2530 | ec5517d5 | Fabrice Bellard | for(i=0;i<nb_ostreams;i++) { |
2531 | 23ffe323 | Michael Niedermayer | double ipts, opts;
|
2532 |