Commit | Line | Data |
---|---|---|
d4f5d74a | 1 | /* |
7fbde343 | 2 | * FLV muxer |
2912e87a | 3 | * Copyright (c) 2003 The Libav Project |
d4f5d74a | 4 | * |
2912e87a | 5 | * This file is part of Libav. |
b78e7197 | 6 | * |
2912e87a | 7 | * Libav is free software; you can redistribute it and/or |
d4f5d74a GM |
8 | * modify it under the terms of the GNU Lesser General Public |
9 | * License as published by the Free Software Foundation; either | |
b78e7197 | 10 | * version 2.1 of the License, or (at your option) any later version. |
d4f5d74a | 11 | * |
2912e87a | 12 | * Libav is distributed in the hope that it will be useful, |
d4f5d74a GM |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | * Lesser General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU Lesser General Public | |
2912e87a | 18 | * License along with Libav; if not, write to the Free Software |
5509bffa | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
d4f5d74a | 20 | */ |
ee8aecd2 | 21 | |
1cb34ea4 | 22 | #include "libavutil/dict.h" |
3383a53e | 23 | #include "libavutil/intfloat.h" |
1cb34ea4 | 24 | #include "avc.h" |
d4f5d74a | 25 | #include "avformat.h" |
6cac3a3b | 26 | #include "flv.h" |
80b39e1c | 27 | #include "internal.h" |
16f82508 | 28 | #include "metadata.h" |
d4f5d74a | 29 | |
068f2a22 MN |
30 | #undef NDEBUG |
31 | #include <assert.h> | |
32 | ||
7caf0cc6 | 33 | static const AVCodecTag flv_video_codec_ids[] = { |
36ef5369 AK |
34 | { AV_CODEC_ID_FLV1, FLV_CODECID_H263 }, |
35 | { AV_CODEC_ID_FLASHSV, FLV_CODECID_SCREEN }, | |
36 | { AV_CODEC_ID_FLASHSV2, FLV_CODECID_SCREEN2 }, | |
37 | { AV_CODEC_ID_VP6F, FLV_CODECID_VP6 }, | |
be1e1373 | 38 | { AV_CODEC_ID_VP6A, FLV_CODECID_VP6A }, |
36ef5369 AK |
39 | { AV_CODEC_ID_H264, FLV_CODECID_H264 }, |
40 | { AV_CODEC_ID_NONE, 0 } | |
148c9bdb AH |
41 | }; |
42 | ||
7caf0cc6 | 43 | static const AVCodecTag flv_audio_codec_ids[] = { |
36ef5369 AK |
44 | { AV_CODEC_ID_MP3, FLV_CODECID_MP3 >> FLV_AUDIO_CODECID_OFFSET }, |
45 | { AV_CODEC_ID_PCM_U8, FLV_CODECID_PCM >> FLV_AUDIO_CODECID_OFFSET }, | |
46 | { AV_CODEC_ID_PCM_S16BE, FLV_CODECID_PCM >> FLV_AUDIO_CODECID_OFFSET }, | |
47 | { AV_CODEC_ID_PCM_S16LE, FLV_CODECID_PCM_LE >> FLV_AUDIO_CODECID_OFFSET }, | |
48 | { AV_CODEC_ID_ADPCM_SWF, FLV_CODECID_ADPCM >> FLV_AUDIO_CODECID_OFFSET }, | |
49 | { AV_CODEC_ID_AAC, FLV_CODECID_AAC >> FLV_AUDIO_CODECID_OFFSET }, | |
50 | { AV_CODEC_ID_NELLYMOSER, FLV_CODECID_NELLYMOSER >> FLV_AUDIO_CODECID_OFFSET }, | |
51 | { AV_CODEC_ID_PCM_MULAW, FLV_CODECID_PCM_MULAW >> FLV_AUDIO_CODECID_OFFSET }, | |
52 | { AV_CODEC_ID_PCM_ALAW, FLV_CODECID_PCM_ALAW >> FLV_AUDIO_CODECID_OFFSET }, | |
53 | { AV_CODEC_ID_SPEEX, FLV_CODECID_SPEEX >> FLV_AUDIO_CODECID_OFFSET }, | |
54 | { AV_CODEC_ID_NONE, 0 } | |
148c9bdb AH |
55 | }; |
56 | ||
d4f5d74a | 57 | typedef struct FLVContext { |
1cb34ea4 | 58 | int reserved; |
bc5c918e DB |
59 | int64_t duration_offset; |
60 | int64_t filesize_offset; | |
634b8cfa | 61 | int64_t duration; |
905de119 | 62 | int64_t delay; ///< first dts delay (needed for AVC & Speex) |
d4f5d74a GM |
63 | } FLVContext; |
64 | ||
ef74e397 | 65 | typedef struct FLVStreamContext { |
ef74e397 JR |
66 | int64_t last_ts; ///< last timestamp for each stream |
67 | } FLVStreamContext; | |
68 | ||
0a3ad7ff AK |
69 | static int get_audio_flags(AVFormatContext *s, AVCodecContext *enc) |
70 | { | |
1cb34ea4 LB |
71 | int flags = (enc->bits_per_coded_sample == 16) ? FLV_SAMPLESSIZE_16BIT |
72 | : FLV_SAMPLESSIZE_8BIT; | |
37cdf93d | 73 | |
36ef5369 | 74 | if (enc->codec_id == AV_CODEC_ID_AAC) // specs force these parameters |
1cb34ea4 LB |
75 | return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ | |
76 | FLV_SAMPLESSIZE_16BIT | FLV_STEREO; | |
36ef5369 | 77 | else if (enc->codec_id == AV_CODEC_ID_SPEEX) { |
046c4001 | 78 | if (enc->sample_rate != 16000) { |
1cb34ea4 LB |
79 | av_log(s, AV_LOG_ERROR, |
80 | "flv only supports wideband (16kHz) Speex audio\n"); | |
046c4001 JR |
81 | return -1; |
82 | } | |
83 | if (enc->channels != 1) { | |
0a3ad7ff | 84 | av_log(s, AV_LOG_ERROR, "flv only supports mono Speex audio\n"); |
046c4001 JR |
85 | return -1; |
86 | } | |
046c4001 JR |
87 | return FLV_CODECID_SPEEX | FLV_SAMPLERATE_11025HZ | FLV_SAMPLESSIZE_16BIT; |
88 | } else { | |
1cb34ea4 LB |
89 | switch (enc->sample_rate) { |
90 | case 44100: | |
6cac3a3b | 91 | flags |= FLV_SAMPLERATE_44100HZ; |
37cdf93d | 92 | break; |
1cb34ea4 | 93 | case 22050: |
6cac3a3b | 94 | flags |= FLV_SAMPLERATE_22050HZ; |
37cdf93d | 95 | break; |
1cb34ea4 | 96 | case 11025: |
6cac3a3b | 97 | flags |= FLV_SAMPLERATE_11025HZ; |
37cdf93d | 98 | break; |
1cb34ea4 LB |
99 | case 16000: // nellymoser only |
100 | case 8000: // nellymoser only | |
101 | case 5512: // not MP3 | |
36ef5369 | 102 | if (enc->codec_id != AV_CODEC_ID_MP3) { |
ec627278 MN |
103 | flags |= FLV_SAMPLERATE_SPECIAL; |
104 | break; | |
4838727e | 105 | } |
37cdf93d | 106 | default: |
1cb34ea4 LB |
107 | av_log(s, AV_LOG_ERROR, |
108 | "flv does not support that sample rate, " | |
109 | "choose from (44100, 22050, 11025).\n"); | |
37cdf93d | 110 | return -1; |
1cb34ea4 | 111 | } |
f23496b5 | 112 | } |
37cdf93d | 113 | |
1cb34ea4 | 114 | if (enc->channels > 1) |
6cac3a3b | 115 | flags |= FLV_STEREO; |
115329f1 | 116 | |
1cb34ea4 | 117 | switch (enc->codec_id) { |
36ef5369 | 118 | case AV_CODEC_ID_MP3: |
6cac3a3b | 119 | flags |= FLV_CODECID_MP3 | FLV_SAMPLESSIZE_16BIT; |
37cdf93d | 120 | break; |
36ef5369 | 121 | case AV_CODEC_ID_PCM_U8: |
44de39f9 | 122 | flags |= FLV_CODECID_PCM | FLV_SAMPLESSIZE_8BIT; |
bb270c08 | 123 | break; |
36ef5369 | 124 | case AV_CODEC_ID_PCM_S16BE: |
44de39f9 | 125 | flags |= FLV_CODECID_PCM | FLV_SAMPLESSIZE_16BIT; |
bb270c08 | 126 | break; |
36ef5369 | 127 | case AV_CODEC_ID_PCM_S16LE: |
6cac3a3b | 128 | flags |= FLV_CODECID_PCM_LE | FLV_SAMPLESSIZE_16BIT; |
bb270c08 | 129 | break; |
36ef5369 | 130 | case AV_CODEC_ID_ADPCM_SWF: |
1cb34ea4 | 131 | flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT; |
bb270c08 | 132 | break; |
36ef5369 | 133 | case AV_CODEC_ID_NELLYMOSER: |
1cb34ea4 LB |
134 | if (enc->sample_rate == 8000) |
135 | flags |= FLV_CODECID_NELLYMOSER_8KHZ_MONO | FLV_SAMPLESSIZE_16BIT; | |
136 | else if (enc->sample_rate == 16000) | |
bd2ff1a8 | 137 | flags |= FLV_CODECID_NELLYMOSER_16KHZ_MONO | FLV_SAMPLESSIZE_16BIT; |
1cb34ea4 LB |
138 | else |
139 | flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT; | |
b7d1cd02 | 140 | break; |
36ef5369 | 141 | case AV_CODEC_ID_PCM_MULAW: |
b92c7ee6 DF |
142 | flags = FLV_CODECID_PCM_MULAW | FLV_SAMPLERATE_SPECIAL | FLV_SAMPLESSIZE_16BIT; |
143 | break; | |
36ef5369 | 144 | case AV_CODEC_ID_PCM_ALAW: |
b92c7ee6 DF |
145 | flags = FLV_CODECID_PCM_ALAW | FLV_SAMPLERATE_SPECIAL | FLV_SAMPLESSIZE_16BIT; |
146 | break; | |
37cdf93d | 147 | case 0: |
1cb34ea4 | 148 | flags |= enc->codec_tag << 4; |
37cdf93d MN |
149 | break; |
150 | default: | |
0a3ad7ff | 151 | av_log(s, AV_LOG_ERROR, "codec not compatible with flv\n"); |
37cdf93d MN |
152 | return -1; |
153 | } | |
115329f1 | 154 | |
37cdf93d MN |
155 | return flags; |
156 | } | |
157 | ||
ae628ec1 | 158 | static void put_amf_string(AVIOContext *pb, const char *str) |
fd0fb306 MN |
159 | { |
160 | size_t len = strlen(str); | |
77eb5504 AK |
161 | avio_wb16(pb, len); |
162 | avio_write(pb, str, len); | |
fd0fb306 MN |
163 | } |
164 | ||
1cb34ea4 LB |
165 | static void put_avc_eos_tag(AVIOContext *pb, unsigned ts) |
166 | { | |
77eb5504 | 167 | avio_w8(pb, FLV_TAG_TYPE_VIDEO); |
1cb34ea4 LB |
168 | avio_wb24(pb, 5); /* Tag Data Size */ |
169 | avio_wb24(pb, ts); /* lower 24 bits of timestamp in ms */ | |
170 | avio_w8(pb, (ts >> 24) & 0x7F); /* MSB of ts in ms */ | |
171 | avio_wb24(pb, 0); /* StreamId = 0 */ | |
172 | avio_w8(pb, 23); /* ub[4] FrameType = 1, ub[4] CodecId = 7 */ | |
173 | avio_w8(pb, 2); /* AVC end of sequence */ | |
174 | avio_wb24(pb, 0); /* Always 0 for AVC EOS. */ | |
175 | avio_wb32(pb, 16); /* Size of FLV tag */ | |
df4f1d51 TF |
176 | } |
177 | ||
ae628ec1 | 178 | static void put_amf_double(AVIOContext *pb, double d) |
fd0fb306 | 179 | { |
77eb5504 | 180 | avio_w8(pb, AMF_DATA_TYPE_NUMBER); |
3383a53e | 181 | avio_wb64(pb, av_double2int(d)); |
fd0fb306 MN |
182 | } |
183 | ||
1cb34ea4 LB |
184 | static void put_amf_bool(AVIOContext *pb, int b) |
185 | { | |
77eb5504 AK |
186 | avio_w8(pb, AMF_DATA_TYPE_BOOL); |
187 | avio_w8(pb, !!b); | |
148c9bdb AH |
188 | } |
189 | ||
d4f5d74a GM |
190 | static int flv_write_header(AVFormatContext *s) |
191 | { | |
ae628ec1 | 192 | AVIOContext *pb = s->pb; |
d4f5d74a | 193 | FLVContext *flv = s->priv_data; |
21e2dc9f | 194 | AVCodecContext *audio_enc = NULL, *video_enc = NULL, *data_enc = NULL; |
cad0c375 | 195 | int i, metadata_count = 0; |
fd0fb306 | 196 | double framerate = 0.0; |
cad0c375 | 197 | int64_t metadata_size_pos, data_size, metadata_count_pos; |
d2d67e42 | 198 | AVDictionaryEntry *tag = NULL; |
d4f5d74a | 199 | |
1cb34ea4 | 200 | for (i = 0; i < s->nb_streams; i++) { |
01f4895c | 201 | AVCodecContext *enc = s->streams[i]->codec; |
ef74e397 | 202 | FLVStreamContext *sc; |
21e2dc9f LB |
203 | switch (enc->codec_type) { |
204 | case AVMEDIA_TYPE_VIDEO: | |
aba232cf AK |
205 | if (s->streams[i]->avg_frame_rate.den && |
206 | s->streams[i]->avg_frame_rate.num) { | |
207 | framerate = av_q2d(s->streams[i]->avg_frame_rate); | |
fd0fb306 | 208 | } |
5b27c307 RC |
209 | if (video_enc) { |
210 | av_log(s, AV_LOG_ERROR, | |
211 | "at most one video stream is supported in flv\n"); | |
212 | return AVERROR(EINVAL); | |
213 | } | |
5366f15d | 214 | video_enc = enc; |
1cb34ea4 | 215 | if (enc->codec_tag == 0) { |
0a3ad7ff | 216 | av_log(s, AV_LOG_ERROR, "video codec not compatible with flv\n"); |
148c9bdb AH |
217 | return -1; |
218 | } | |
21e2dc9f LB |
219 | break; |
220 | case AVMEDIA_TYPE_AUDIO: | |
5b27c307 RC |
221 | if (audio_enc) { |
222 | av_log(s, AV_LOG_ERROR, | |
223 | "at most one audio stream is supported in flv\n"); | |
224 | return AVERROR(EINVAL); | |
225 | } | |
5366f15d | 226 | audio_enc = enc; |
0a3ad7ff | 227 | if (get_audio_flags(s, enc) < 0) |
21e2dc9f LB |
228 | return AVERROR_INVALIDDATA; |
229 | break; | |
230 | case AVMEDIA_TYPE_DATA: | |
36ef5369 | 231 | if (enc->codec_id != AV_CODEC_ID_TEXT) { |
21e2dc9f LB |
232 | av_log(s, AV_LOG_ERROR, "codec not compatible with flv\n"); |
233 | return AVERROR_INVALIDDATA; | |
234 | } | |
235 | data_enc = enc; | |
236 | break; | |
237 | default: | |
238 | av_log(s, AV_LOG_ERROR, "codec not compatible with flv\n"); | |
239 | return -1; | |
fd0fb306 | 240 | } |
c3f9ebf7 | 241 | avpriv_set_pts_info(s->streams[i], 32, 1, 1000); /* 32 bit pts in ms */ |
ef74e397 JR |
242 | |
243 | sc = av_mallocz(sizeof(FLVStreamContext)); | |
244 | if (!sc) | |
245 | return AVERROR(ENOMEM); | |
246 | s->streams[i]->priv_data = sc; | |
247 | sc->last_ts = -1; | |
c45388b1 | 248 | } |
1cb34ea4 | 249 | |
905de119 JR |
250 | flv->delay = AV_NOPTS_VALUE; |
251 | ||
bbc413f9 | 252 | avio_write(pb, "FLV", 3); |
1cb34ea4 LB |
253 | avio_w8(pb, 1); |
254 | avio_w8(pb, FLV_HEADER_FLAG_HASAUDIO * !!audio_enc + | |
255 | FLV_HEADER_FLAG_HASVIDEO * !!video_enc); | |
256 | avio_wb32(pb, 9); | |
257 | avio_wb32(pb, 0); | |
258 | ||
259 | for (i = 0; i < s->nb_streams; i++) | |
260 | if (s->streams[i]->codec->codec_tag == 5) { | |
261 | avio_w8(pb, 8); // message type | |
262 | avio_wb24(pb, 0); // include flags | |
263 | avio_wb24(pb, 0); // time stamp | |
264 | avio_wb32(pb, 0); // reserved | |
265 | avio_wb32(pb, 11); // size | |
266 | flv->reserved = 5; | |
11a8e425 | 267 | } |
d4f5d74a | 268 | |
fd0fb306 | 269 | /* write meta_tag */ |
1cb34ea4 LB |
270 | avio_w8(pb, 18); // tag type META |
271 | metadata_size_pos = avio_tell(pb); | |
272 | avio_wb24(pb, 0); // size of data part (sum of all parts below) | |
273 | avio_wb24(pb, 0); // timestamp | |
274 | avio_wb32(pb, 0); // reserved | |
fd0fb306 MN |
275 | |
276 | /* now data of data_size size */ | |
277 | ||
278 | /* first event name as a string */ | |
77eb5504 | 279 | avio_w8(pb, AMF_DATA_TYPE_STRING); |
fd0fb306 MN |
280 | put_amf_string(pb, "onMetaData"); // 12 bytes |
281 | ||
282 | /* mixed array (hash) with size and string/type/data tuples */ | |
77eb5504 | 283 | avio_w8(pb, AMF_DATA_TYPE_MIXEDARRAY); |
cad0c375 | 284 | metadata_count_pos = avio_tell(pb); |
74bc9458 | 285 | metadata_count = 4 * !!video_enc + |
21e2dc9f | 286 | 5 * !!audio_enc + |
1cb34ea4 | 287 | 1 * !!data_enc + |
21e2dc9f LB |
288 | 2; // +2 for duration and file size |
289 | ||
cad0c375 | 290 | avio_wb32(pb, metadata_count); |
fd0fb306 | 291 | |
634b8cfa | 292 | put_amf_string(pb, "duration"); |
a2704c97 | 293 | flv->duration_offset= avio_tell(pb); |
fd0fb306 | 294 | |
1cb34ea4 LB |
295 | // fill in the guessed duration, it'll be corrected later if incorrect |
296 | put_amf_double(pb, s->duration / AV_TIME_BASE); | |
297 | ||
298 | if (video_enc) { | |
fd0fb306 | 299 | put_amf_string(pb, "width"); |
5366f15d | 300 | put_amf_double(pb, video_enc->width); |
fd0fb306 MN |
301 | |
302 | put_amf_string(pb, "height"); | |
5366f15d | 303 | put_amf_double(pb, video_enc->height); |
fd0fb306 MN |
304 | |
305 | put_amf_string(pb, "videodatarate"); | |
426a6f34 | 306 | put_amf_double(pb, video_enc->bit_rate / 1024.0); |
fd0fb306 | 307 | |
43e7f079 AK |
308 | if (framerate != 0.0) { |
309 | put_amf_string(pb, "framerate"); | |
310 | put_amf_double(pb, framerate); | |
74bc9458 | 311 | metadata_count++; |
43e7f079 | 312 | } |
148c9bdb AH |
313 | |
314 | put_amf_string(pb, "videocodecid"); | |
5366f15d | 315 | put_amf_double(pb, video_enc->codec_tag); |
fd0fb306 MN |
316 | } |
317 | ||
1cb34ea4 | 318 | if (audio_enc) { |
426a6f34 SK |
319 | put_amf_string(pb, "audiodatarate"); |
320 | put_amf_double(pb, audio_enc->bit_rate / 1024.0); | |
321 | ||
fd0fb306 | 322 | put_amf_string(pb, "audiosamplerate"); |
5366f15d | 323 | put_amf_double(pb, audio_enc->sample_rate); |
148c9bdb AH |
324 | |
325 | put_amf_string(pb, "audiosamplesize"); | |
36ef5369 | 326 | put_amf_double(pb, audio_enc->codec_id == AV_CODEC_ID_PCM_U8 ? 8 : 16); |
148c9bdb AH |
327 | |
328 | put_amf_string(pb, "stereo"); | |
5366f15d | 329 | put_amf_bool(pb, audio_enc->channels == 2); |
148c9bdb AH |
330 | |
331 | put_amf_string(pb, "audiocodecid"); | |
5366f15d | 332 | put_amf_double(pb, audio_enc->codec_tag); |
fd0fb306 MN |
333 | } |
334 | ||
21e2dc9f LB |
335 | if (data_enc) { |
336 | put_amf_string(pb, "datastream"); | |
337 | put_amf_double(pb, 0.0); | |
338 | } | |
339 | ||
d2d67e42 | 340 | while ((tag = av_dict_get(s->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) { |
16f82508 | 341 | put_amf_string(pb, tag->key); |
77eb5504 | 342 | avio_w8(pb, AMF_DATA_TYPE_STRING); |
16f82508 | 343 | put_amf_string(pb, tag->value); |
cad0c375 | 344 | metadata_count++; |
16f82508 TT |
345 | } |
346 | ||
634b8cfa | 347 | put_amf_string(pb, "filesize"); |
1cb34ea4 | 348 | flv->filesize_offset = avio_tell(pb); |
634b8cfa | 349 | put_amf_double(pb, 0); // delayed write |
fd0fb306 MN |
350 | |
351 | put_amf_string(pb, ""); | |
77eb5504 | 352 | avio_w8(pb, AMF_END_OF_OBJECT); |
fd0fb306 MN |
353 | |
354 | /* write total size of tag */ | |
1cb34ea4 | 355 | data_size = avio_tell(pb) - metadata_size_pos - 10; |
cad0c375 MS |
356 | |
357 | avio_seek(pb, metadata_count_pos, SEEK_SET); | |
358 | avio_wb32(pb, metadata_count); | |
359 | ||
6b4aa5da | 360 | avio_seek(pb, metadata_size_pos, SEEK_SET); |
77eb5504 | 361 | avio_wb24(pb, data_size); |
45a8a02a | 362 | avio_skip(pb, data_size + 10 - 3); |
77eb5504 | 363 | avio_wb32(pb, data_size + 11); |
fd0fb306 | 364 | |
f23496b5 BC |
365 | for (i = 0; i < s->nb_streams; i++) { |
366 | AVCodecContext *enc = s->streams[i]->codec; | |
36ef5369 | 367 | if (enc->codec_id == AV_CODEC_ID_AAC || enc->codec_id == AV_CODEC_ID_H264) { |
bc5c918e | 368 | int64_t pos; |
77eb5504 | 369 | avio_w8(pb, enc->codec_type == AVMEDIA_TYPE_VIDEO ? |
1cb34ea4 | 370 | FLV_TAG_TYPE_VIDEO : FLV_TAG_TYPE_AUDIO); |
77eb5504 AK |
371 | avio_wb24(pb, 0); // size patched later |
372 | avio_wb24(pb, 0); // ts | |
1cb34ea4 | 373 | avio_w8(pb, 0); // ts ext |
77eb5504 | 374 | avio_wb24(pb, 0); // streamid |
a2704c97 | 375 | pos = avio_tell(pb); |
36ef5369 | 376 | if (enc->codec_id == AV_CODEC_ID_AAC) { |
0a3ad7ff | 377 | avio_w8(pb, get_audio_flags(s, enc)); |
77eb5504 AK |
378 | avio_w8(pb, 0); // AAC sequence header |
379 | avio_write(pb, enc->extradata, enc->extradata_size); | |
f23496b5 | 380 | } else { |
77eb5504 AK |
381 | avio_w8(pb, enc->codec_tag | FLV_FRAME_KEY); // flags |
382 | avio_w8(pb, 0); // AVC sequence header | |
383 | avio_wb24(pb, 0); // composition time | |
f23496b5 BC |
384 | ff_isom_write_avcc(pb, enc->extradata, enc->extradata_size); |
385 | } | |
a2704c97 | 386 | data_size = avio_tell(pb) - pos; |
6b4aa5da | 387 | avio_seek(pb, -data_size - 10, SEEK_CUR); |
77eb5504 | 388 | avio_wb24(pb, data_size); |
45a8a02a | 389 | avio_skip(pb, data_size + 10 - 3); |
77eb5504 | 390 | avio_wb32(pb, data_size + 11); // previous tag size |
f23496b5 BC |
391 | } |
392 | } | |
393 | ||
d4f5d74a GM |
394 | return 0; |
395 | } | |
396 | ||
d4f5d74a GM |
397 | static int flv_write_trailer(AVFormatContext *s) |
398 | { | |
14b32253 | 399 | int64_t file_size; |
14b32253 | 400 | |
ae628ec1 | 401 | AVIOContext *pb = s->pb; |
d4f5d74a | 402 | FLVContext *flv = s->priv_data; |
df4f1d51 TF |
403 | int i; |
404 | ||
405 | /* Add EOS tag */ | |
406 | for (i = 0; i < s->nb_streams; i++) { | |
407 | AVCodecContext *enc = s->streams[i]->codec; | |
ef74e397 | 408 | FLVStreamContext *sc = s->streams[i]->priv_data; |
b9f9e59a | 409 | if (enc->codec_type == AVMEDIA_TYPE_VIDEO && |
36ef5369 | 410 | enc->codec_id == AV_CODEC_ID_H264) |
ef74e397 | 411 | put_avc_eos_tag(pb, sc->last_ts); |
df4f1d51 | 412 | } |
d4f5d74a | 413 | |
a2704c97 | 414 | file_size = avio_tell(pb); |
634b8cfa | 415 | |
da9cea77 | 416 | /* update information */ |
1eaff98c BA |
417 | if (avio_seek(pb, flv->duration_offset, SEEK_SET) < 0) |
418 | av_log(s, AV_LOG_WARNING, "Failed to update header with correct duration.\n"); | |
419 | else | |
420 | put_amf_double(pb, flv->duration / (double)1000); | |
421 | if (avio_seek(pb, flv->filesize_offset, SEEK_SET) < 0) | |
422 | av_log(s, AV_LOG_WARNING, "Failed to update header with correct filesize.\n"); | |
423 | else | |
424 | put_amf_double(pb, file_size); | |
634b8cfa | 425 | |
6b4aa5da | 426 | avio_seek(pb, file_size, SEEK_SET); |
d4f5d74a GM |
427 | return 0; |
428 | } | |
429 | ||
e928649b | 430 | static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) |
d4f5d74a | 431 | { |
1cb34ea4 LB |
432 | AVIOContext *pb = s->pb; |
433 | AVCodecContext *enc = s->streams[pkt->stream_index]->codec; | |
434 | FLVContext *flv = s->priv_data; | |
ef74e397 | 435 | FLVStreamContext *sc = s->streams[pkt->stream_index]->priv_data; |
f23496b5 | 436 | unsigned ts; |
1cb34ea4 LB |
437 | int size = pkt->size; |
438 | uint8_t *data = NULL; | |
6a08955c | 439 | int flags = 0, flags_size; |
d4f5d74a | 440 | |
be1e1373 | 441 | if (enc->codec_id == AV_CODEC_ID_VP6F || enc->codec_id == AV_CODEC_ID_VP6A || |
36ef5369 | 442 | enc->codec_id == AV_CODEC_ID_AAC) |
1cb34ea4 | 443 | flags_size = 2; |
36ef5369 | 444 | else if (enc->codec_id == AV_CODEC_ID_H264) |
1cb34ea4 | 445 | flags_size = 5; |
f683dbdc | 446 | else |
1cb34ea4 | 447 | flags_size = 1; |
f683dbdc | 448 | |
21e2dc9f LB |
449 | switch (enc->codec_type) { |
450 | case AVMEDIA_TYPE_VIDEO: | |
77eb5504 | 451 | avio_w8(pb, FLV_TAG_TYPE_VIDEO); |
09d8c0ae | 452 | |
bb85077f | 453 | flags = enc->codec_tag; |
1cb34ea4 LB |
454 | if (flags == 0) { |
455 | av_log(s, AV_LOG_ERROR, | |
456 | "video codec %X not compatible with flv\n", | |
457 | enc->codec_id); | |
09d8c0ae BL |
458 | return -1; |
459 | } | |
460 | ||
cc947f04 | 461 | flags |= pkt->flags & AV_PKT_FLAG_KEY ? FLV_FRAME_KEY : FLV_FRAME_INTER; |
21e2dc9f LB |
462 | break; |
463 | case AVMEDIA_TYPE_AUDIO: | |
0a3ad7ff | 464 | flags = get_audio_flags(s, enc); |
115329f1 | 465 | |
068f2a22 | 466 | assert(size); |
068f2a22 | 467 | |
77eb5504 | 468 | avio_w8(pb, FLV_TAG_TYPE_AUDIO); |
21e2dc9f | 469 | break; |
21e2dc9f LB |
470 | case AVMEDIA_TYPE_DATA: |
471 | avio_w8(pb, FLV_TAG_TYPE_META); | |
472 | break; | |
473 | default: | |
474 | return AVERROR(EINVAL); | |
475 | } | |
1cb34ea4 | 476 | |
36ef5369 | 477 | if (enc->codec_id == AV_CODEC_ID_H264) |
da9cea77 | 478 | /* check if extradata looks like MP4 */ |
1cb34ea4 | 479 | if (enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) |
71e685b0 BC |
480 | if (ff_avc_parse_nal_units_buf(pkt->data, &data, &size) < 0) |
481 | return -1; | |
1cb34ea4 | 482 | |
905de119 JR |
483 | if (flv->delay == AV_NOPTS_VALUE) |
484 | flv->delay = -pkt->dts; | |
1cb34ea4 | 485 | |
905de119 | 486 | if (pkt->dts < -flv->delay) { |
1cb34ea4 LB |
487 | av_log(s, AV_LOG_WARNING, |
488 | "Packets are not in the proper order with respect to DTS\n"); | |
905de119 JR |
489 | return AVERROR(EINVAL); |
490 | } | |
f23496b5 | 491 | |
905de119 | 492 | ts = pkt->dts + flv->delay; // add delay to force positive dts |
4ee247a2 JR |
493 | |
494 | /* check Speex packet duration */ | |
36ef5369 | 495 | if (enc->codec_id == AV_CODEC_ID_SPEEX && ts - sc->last_ts > 160) |
4ee247a2 JR |
496 | av_log(s, AV_LOG_WARNING, "Warning: Speex stream has more than " |
497 | "8 frames per packet. Adobe Flash " | |
498 | "Player cannot handle this!\n"); | |
4ee247a2 | 499 | |
ef74e397 JR |
500 | if (sc->last_ts < ts) |
501 | sc->last_ts = ts; | |
4ee247a2 | 502 | |
1cb34ea4 LB |
503 | avio_wb24(pb, size + flags_size); |
504 | avio_wb24(pb, ts); | |
505 | avio_w8(pb, (ts >> 24) & 0x7F); // timestamps are 32 bits _signed_ | |
506 | avio_wb24(pb, flv->reserved); | |
21e2dc9f LB |
507 | |
508 | if (enc->codec_type == AVMEDIA_TYPE_DATA) { | |
509 | int data_size; | |
f412b2c9 | 510 | int64_t metadata_size_pos = avio_tell(pb); |
21e2dc9f LB |
511 | avio_w8(pb, AMF_DATA_TYPE_STRING); |
512 | put_amf_string(pb, "onTextData"); | |
513 | avio_w8(pb, AMF_DATA_TYPE_MIXEDARRAY); | |
514 | avio_wb32(pb, 2); | |
515 | put_amf_string(pb, "type"); | |
516 | avio_w8(pb, AMF_DATA_TYPE_STRING); | |
517 | put_amf_string(pb, "Text"); | |
518 | put_amf_string(pb, "text"); | |
519 | avio_w8(pb, AMF_DATA_TYPE_STRING); | |
520 | put_amf_string(pb, pkt->data); | |
521 | put_amf_string(pb, ""); | |
522 | avio_w8(pb, AMF_END_OF_OBJECT); | |
523 | /* write total size of tag */ | |
524 | data_size = avio_tell(pb) - metadata_size_pos; | |
525 | avio_seek(pb, metadata_size_pos - 10, SEEK_SET); | |
526 | avio_wb24(pb, data_size); | |
527 | avio_seek(pb, data_size + 10 - 3, SEEK_CUR); | |
528 | avio_wb32(pb, data_size + 11); | |
529 | } else { | |
1cb34ea4 | 530 | avio_w8(pb,flags); |
e6ed8668 MS |
531 | if (enc->codec_id == AV_CODEC_ID_VP6F || enc->codec_id == AV_CODEC_ID_VP6A) { |
532 | if (enc->extradata_size) | |
533 | avio_w8(pb, enc->extradata[0]); | |
534 | else | |
535 | avio_w8(pb, ((FFALIGN(enc->width, 16) - enc->width) << 4) | | |
536 | (FFALIGN(enc->height, 16) - enc->height)); | |
537 | } else if (enc->codec_id == AV_CODEC_ID_AAC) | |
1cb34ea4 | 538 | avio_w8(pb, 1); // AAC raw |
36ef5369 | 539 | else if (enc->codec_id == AV_CODEC_ID_H264) { |
1cb34ea4 LB |
540 | avio_w8(pb, 1); // AVC NALU |
541 | avio_wb24(pb, pkt->pts - pkt->dts); | |
542 | } | |
71e685b0 | 543 | |
1cb34ea4 | 544 | avio_write(pb, data ? data : pkt->data, size); |
71e685b0 | 545 | |
1cb34ea4 LB |
546 | avio_wb32(pb, size + flags_size + 11); // previous tag size |
547 | flv->duration = FFMAX(flv->duration, | |
548 | pkt->pts + flv->delay + pkt->duration); | |
21e2dc9f | 549 | } |
71e685b0 BC |
550 | |
551 | av_free(data); | |
552 | ||
0e28e9ca | 553 | return pb->error; |
d4f5d74a GM |
554 | } |
555 | ||
c6610a21 | 556 | AVOutputFormat ff_flv_muxer = { |
dfc2c4d9 | 557 | .name = "flv", |
0177b7d2 | 558 | .long_name = NULL_IF_CONFIG_SMALL("FLV (Flash Video)"), |
dfc2c4d9 AK |
559 | .mime_type = "video/x-flv", |
560 | .extensions = "flv", | |
561 | .priv_data_size = sizeof(FLVContext), | |
36ef5369 AK |
562 | .audio_codec = CONFIG_LIBMP3LAME ? AV_CODEC_ID_MP3 : AV_CODEC_ID_ADPCM_SWF, |
563 | .video_codec = AV_CODEC_ID_FLV1, | |
dfc2c4d9 AK |
564 | .write_header = flv_write_header, |
565 | .write_packet = flv_write_packet, | |
566 | .write_trailer = flv_write_trailer, | |
1cb34ea4 LB |
567 | .codec_tag = (const AVCodecTag* const []) { |
568 | flv_video_codec_ids, flv_audio_codec_ids, 0 | |
569 | }, | |
e9cef897 JZ |
570 | .flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS | |
571 | AVFMT_TS_NONSTRICT, | |
d4f5d74a | 572 | }; |