]> git.sesse.net Git - ffmpeg/blob - libavformat/flvenc.c
check if extradata comes from mp4 and assume bitsteam is already formated, should...
[ffmpeg] / libavformat / flvenc.c
1 /*
2  * FLV muxer
3  * Copyright (c) 2003 The FFmpeg Project.
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
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
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 #include "avformat.h"
22 #include "flv.h"
23 #include "riff.h"
24 #include "avc.h"
25
26 #undef NDEBUG
27 #include <assert.h>
28
29 static const AVCodecTag flv_video_codec_ids[] = {
30     {CODEC_ID_FLV1,    FLV_CODECID_H263  },
31     {CODEC_ID_FLASHSV, FLV_CODECID_SCREEN},
32     {CODEC_ID_VP6F,    FLV_CODECID_VP6   },
33     {CODEC_ID_VP6,     FLV_CODECID_VP6   },
34     {CODEC_ID_H264,    FLV_CODECID_H264  },
35     {CODEC_ID_NONE,    0}
36 };
37
38 static const AVCodecTag flv_audio_codec_ids[] = {
39     {CODEC_ID_MP3,       FLV_CODECID_MP3    >> FLV_AUDIO_CODECID_OFFSET},
40     {CODEC_ID_PCM_S8,    FLV_CODECID_PCM    >> FLV_AUDIO_CODECID_OFFSET},
41     {CODEC_ID_PCM_S16BE, FLV_CODECID_PCM    >> FLV_AUDIO_CODECID_OFFSET},
42     {CODEC_ID_PCM_S16LE, FLV_CODECID_PCM_LE >> FLV_AUDIO_CODECID_OFFSET},
43     {CODEC_ID_ADPCM_SWF, FLV_CODECID_ADPCM  >> FLV_AUDIO_CODECID_OFFSET},
44     {CODEC_ID_AAC,       FLV_CODECID_AAC    >> FLV_AUDIO_CODECID_OFFSET},
45     {CODEC_ID_NELLYMOSER, FLV_CODECID_NELLYMOSER >> FLV_AUDIO_CODECID_OFFSET},
46     {CODEC_ID_NONE,      0}
47 };
48
49 typedef struct FLVContext {
50     int reserved;
51     offset_t duration_offset;
52     offset_t filesize_offset;
53     int64_t duration;
54     int delay; ///< first dts delay for AVC
55 } FLVContext;
56
57 static int get_audio_flags(AVCodecContext *enc){
58     int flags = (enc->bits_per_sample == 16) ? FLV_SAMPLESSIZE_16BIT : FLV_SAMPLESSIZE_8BIT;
59
60     if (enc->codec_id == CODEC_ID_AAC) // specs force these parameters
61         return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ | FLV_SAMPLESSIZE_16BIT | FLV_STEREO;
62     else {
63     switch (enc->sample_rate) {
64         case    44100:
65             flags |= FLV_SAMPLERATE_44100HZ;
66             break;
67         case    22050:
68             flags |= FLV_SAMPLERATE_22050HZ;
69             break;
70         case    11025:
71             flags |= FLV_SAMPLERATE_11025HZ;
72             break;
73         case     8000: //nellymoser only
74         case     5512: //not mp3
75             if(enc->codec_id != CODEC_ID_MP3){
76                 flags |= FLV_SAMPLERATE_SPECIAL;
77                 break;
78             }
79         default:
80             av_log(enc, AV_LOG_ERROR, "flv does not support that sample rate, choose from (44100, 22050, 11025).\n");
81             return -1;
82     }
83     }
84
85     if (enc->channels > 1) {
86         flags |= FLV_STEREO;
87     }
88
89     switch(enc->codec_id){
90     case CODEC_ID_MP3:
91         flags |= FLV_CODECID_MP3    | FLV_SAMPLESSIZE_16BIT;
92         break;
93     case CODEC_ID_PCM_S8:
94         flags |= FLV_CODECID_PCM    | FLV_SAMPLESSIZE_8BIT;
95         break;
96     case CODEC_ID_PCM_S16BE:
97         flags |= FLV_CODECID_PCM    | FLV_SAMPLESSIZE_16BIT;
98         break;
99     case CODEC_ID_PCM_S16LE:
100         flags |= FLV_CODECID_PCM_LE | FLV_SAMPLESSIZE_16BIT;
101         break;
102     case CODEC_ID_ADPCM_SWF:
103         flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT;
104         break;
105     case CODEC_ID_NELLYMOSER:
106         flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT;
107         break;
108     case 0:
109         flags |= enc->codec_tag<<4;
110         break;
111     default:
112         av_log(enc, AV_LOG_ERROR, "codec not compatible with flv\n");
113         return -1;
114     }
115
116     return flags;
117 }
118
119 static void put_amf_string(ByteIOContext *pb, const char *str)
120 {
121     size_t len = strlen(str);
122     put_be16(pb, len);
123     put_buffer(pb, str, len);
124 }
125
126 static void put_amf_double(ByteIOContext *pb, double d)
127 {
128     put_byte(pb, AMF_DATA_TYPE_NUMBER);
129     put_be64(pb, av_dbl2int(d));
130 }
131
132 static void put_amf_bool(ByteIOContext *pb, int b) {
133     put_byte(pb, AMF_DATA_TYPE_BOOL);
134     put_byte(pb, !!b);
135 }
136
137 static int flv_write_header(AVFormatContext *s)
138 {
139     ByteIOContext *pb = s->pb;
140     FLVContext *flv = s->priv_data;
141     AVCodecContext *audio_enc = NULL, *video_enc = NULL;
142     int i;
143     double framerate = 0.0;
144     int metadata_size_pos, data_size;
145
146     for(i=0; i<s->nb_streams; i++){
147         AVCodecContext *enc = s->streams[i]->codec;
148         if (enc->codec_type == CODEC_TYPE_VIDEO) {
149             if (s->streams[i]->r_frame_rate.den && s->streams[i]->r_frame_rate.num) {
150                 framerate = av_q2d(s->streams[i]->r_frame_rate);
151             } else {
152                 framerate = 1/av_q2d(s->streams[i]->codec->time_base);
153             }
154             video_enc = enc;
155             if(enc->codec_tag == 0) {
156                 av_log(enc, AV_LOG_ERROR, "video codec not compatible with flv\n");
157                 return -1;
158             }
159         } else {
160             audio_enc = enc;
161             if(get_audio_flags(enc)<0)
162                 return -1;
163         }
164         av_set_pts_info(s->streams[i], 32, 1, 1000); /* 32 bit pts in ms */
165     }
166     put_tag(pb,"FLV");
167     put_byte(pb,1);
168     put_byte(pb,   FLV_HEADER_FLAG_HASAUDIO * !!audio_enc
169                  + FLV_HEADER_FLAG_HASVIDEO * !!video_enc);
170     put_be32(pb,9);
171     put_be32(pb,0);
172
173     for(i=0; i<s->nb_streams; i++){
174         if(s->streams[i]->codec->codec_tag == 5){
175             put_byte(pb,8); // message type
176             put_be24(pb,0); // include flags
177             put_be24(pb,0); // time stamp
178             put_be32(pb,0); // reserved
179             put_be32(pb,11); // size
180             flv->reserved=5;
181         }
182     }
183
184     /* write meta_tag */
185     put_byte(pb, 18);         // tag type META
186     metadata_size_pos= url_ftell(pb);
187     put_be24(pb, 0);          // size of data part (sum of all parts below)
188     put_be24(pb, 0);          // time stamp
189     put_be32(pb, 0);          // reserved
190
191     /* now data of data_size size */
192
193     /* first event name as a string */
194     put_byte(pb, AMF_DATA_TYPE_STRING);
195     put_amf_string(pb, "onMetaData"); // 12 bytes
196
197     /* mixed array (hash) with size and string/type/data tuples */
198     put_byte(pb, AMF_DATA_TYPE_MIXEDARRAY);
199     put_be32(pb, 5*!!video_enc + 4*!!audio_enc + 2); // +2 for duration and file size
200
201     put_amf_string(pb, "duration");
202     flv->duration_offset= url_ftell(pb);
203     put_amf_double(pb, 0); // delayed write
204
205     if(video_enc){
206         put_amf_string(pb, "width");
207         put_amf_double(pb, video_enc->width);
208
209         put_amf_string(pb, "height");
210         put_amf_double(pb, video_enc->height);
211
212         put_amf_string(pb, "videodatarate");
213         put_amf_double(pb, s->bit_rate / 1024.0);
214
215         put_amf_string(pb, "framerate");
216         put_amf_double(pb, framerate);
217
218         put_amf_string(pb, "videocodecid");
219         put_amf_double(pb, video_enc->codec_tag);
220     }
221
222     if(audio_enc){
223         put_amf_string(pb, "audiosamplerate");
224         put_amf_double(pb, audio_enc->sample_rate);
225
226         put_amf_string(pb, "audiosamplesize");
227         put_amf_double(pb, audio_enc->codec_id == CODEC_ID_PCM_S8 ? 8 : 16);
228
229         put_amf_string(pb, "stereo");
230         put_amf_bool(pb, audio_enc->channels == 2);
231
232         put_amf_string(pb, "audiocodecid");
233         put_amf_double(pb, audio_enc->codec_tag);
234     }
235
236     put_amf_string(pb, "filesize");
237     flv->filesize_offset= url_ftell(pb);
238     put_amf_double(pb, 0); // delayed write
239
240     put_amf_string(pb, "");
241     put_byte(pb, AMF_END_OF_OBJECT);
242
243     /* write total size of tag */
244     data_size= url_ftell(pb) - metadata_size_pos - 10;
245     url_fseek(pb, metadata_size_pos, SEEK_SET);
246     put_be24(pb, data_size);
247     url_fseek(pb, data_size + 10 - 3, SEEK_CUR);
248     put_be32(pb, data_size + 11);
249
250     for (i = 0; i < s->nb_streams; i++) {
251         AVCodecContext *enc = s->streams[i]->codec;
252         if (enc->codec_id == CODEC_ID_AAC || enc->codec_id == CODEC_ID_H264) {
253             offset_t pos;
254             put_byte(pb, enc->codec_type == CODEC_TYPE_VIDEO ?
255                      FLV_TAG_TYPE_VIDEO : FLV_TAG_TYPE_AUDIO);
256             put_be24(pb, 0); // size patched later
257             put_be24(pb, 0); // ts
258             put_byte(pb, 0); // ts ext
259             put_be24(pb, 0); // streamid
260             pos = url_ftell(pb);
261             if (enc->codec_id == CODEC_ID_AAC) {
262                 put_byte(pb, get_audio_flags(enc));
263                 put_byte(pb, 0); // AAC sequence header
264                 put_buffer(pb, enc->extradata, enc->extradata_size);
265             } else {
266                 put_byte(pb, enc->codec_tag | FLV_FRAME_KEY); // flags
267                 put_byte(pb, 0); // AVC sequence header
268                 put_be24(pb, 0); // composition time
269                 ff_isom_write_avcc(pb, enc->extradata, enc->extradata_size);
270             }
271             data_size = url_ftell(pb) - pos;
272             url_fseek(pb, -data_size - 10, SEEK_CUR);
273             put_be24(pb, data_size);
274             url_fseek(pb, data_size + 10 - 3, SEEK_CUR);
275             put_be32(pb, data_size + 11); // previous tag size
276         }
277     }
278
279     return 0;
280 }
281
282 static int flv_write_trailer(AVFormatContext *s)
283 {
284     int64_t file_size;
285
286     ByteIOContext *pb = s->pb;
287     FLVContext *flv = s->priv_data;
288
289     file_size = url_ftell(pb);
290
291     /* update informations */
292     url_fseek(pb, flv->duration_offset, SEEK_SET);
293     put_amf_double(pb, flv->duration / (double)1000);
294     url_fseek(pb, flv->filesize_offset, SEEK_SET);
295     put_amf_double(pb, file_size);
296
297     url_fseek(pb, file_size, SEEK_SET);
298     return 0;
299 }
300
301 static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
302 {
303     ByteIOContext *pb = s->pb;
304     AVCodecContext *enc = s->streams[pkt->stream_index]->codec;
305     FLVContext *flv = s->priv_data;
306     unsigned ts;
307     int size= pkt->size;
308     int flags, flags_size;
309
310 //    av_log(s, AV_LOG_DEBUG, "type:%d pts: %"PRId64" size:%d\n", enc->codec_type, timestamp, size);
311
312     if(enc->codec_id == CODEC_ID_VP6 || enc->codec_id == CODEC_ID_VP6F ||
313        enc->codec_id == CODEC_ID_AAC)
314         flags_size= 2;
315     else if(enc->codec_id == CODEC_ID_H264)
316         flags_size= 5;
317     else
318         flags_size= 1;
319
320     if (enc->codec_type == CODEC_TYPE_VIDEO) {
321         put_byte(pb, FLV_TAG_TYPE_VIDEO);
322
323         flags = enc->codec_tag;
324         if(flags == 0) {
325             av_log(enc, AV_LOG_ERROR, "video codec %X not compatible with flv\n",enc->codec_id);
326             return -1;
327         }
328
329         flags |= pkt->flags & PKT_FLAG_KEY ? FLV_FRAME_KEY : FLV_FRAME_INTER;
330     } else {
331         assert(enc->codec_type == CODEC_TYPE_AUDIO);
332         flags = get_audio_flags(enc);
333
334         assert(size);
335
336         put_byte(pb, FLV_TAG_TYPE_AUDIO);
337     }
338
339     if (enc->codec_id == CODEC_ID_H264 &&
340         /* check if extradata looks like mp4 formated */
341         enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) {
342         if (ff_avc_parse_nal_units(pkt->data, &pkt->data, &pkt->size) < 0)
343             return -1;
344         assert(pkt->size);
345         size = pkt->size;
346         /* cast needed to get negative value */
347         if (!flv->delay && (int32_t)pkt->dts < 0)
348             flv->delay = -(int32_t)pkt->dts;
349     }
350
351     ts = pkt->dts + flv->delay; // add delay to force positive dts
352     put_be24(pb,size + flags_size);
353     put_be24(pb,ts);
354     put_byte(pb,ts >> 24);
355     put_be24(pb,flv->reserved);
356     put_byte(pb,flags);
357     if (enc->codec_id == CODEC_ID_VP6)
358         put_byte(pb,0);
359     if (enc->codec_id == CODEC_ID_VP6F)
360         put_byte(pb, enc->extradata_size ? enc->extradata[0] : 0);
361     else if (enc->codec_id == CODEC_ID_AAC)
362         put_byte(pb,1); // AAC raw
363     else if (enc->codec_id == CODEC_ID_H264) {
364         put_byte(pb,1); // AVC NALU
365         put_be24(pb,pkt->pts - (int32_t)pkt->dts);
366     }
367     put_buffer(pb, pkt->data, size);
368     put_be32(pb,size+flags_size+11); // previous tag size
369     flv->duration = FFMAX(flv->duration, pkt->pts + flv->delay + pkt->duration);
370
371     put_flush_packet(pb);
372     return 0;
373 }
374
375 AVOutputFormat flv_muxer = {
376     "flv",
377     "flv format",
378     "video/x-flv",
379     "flv",
380     sizeof(FLVContext),
381 #ifdef CONFIG_LIBMP3LAME
382     CODEC_ID_MP3,
383 #else // CONFIG_LIBMP3LAME
384     CODEC_ID_ADPCM_SWF,
385 #endif // CONFIG_LIBMP3LAME
386     CODEC_ID_FLV1,
387     flv_write_header,
388     flv_write_packet,
389     flv_write_trailer,
390     .codec_tag= (const AVCodecTag*[]){flv_video_codec_ids, flv_audio_codec_ids, 0},
391     .flags= AVFMT_GLOBALHEADER,
392 };