2003-07-09 23:10:59 +00:00
|
|
|
/*
|
2006-10-23 08:57:54 +00:00
|
|
|
* FLV muxer
|
2003-07-09 23:10:59 +00:00
|
|
|
* Copyright (c) 2003 The FFmpeg Project.
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-07-09 23:10:59 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-07-09 23:10:59 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-07-09 23:10:59 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-07-09 23:10:59 +00:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
2006-12-06 00:23:04 +00:00
|
|
|
#include "flv.h"
|
2006-12-28 12:35:22 +00:00
|
|
|
#include "riff.h"
|
2008-05-26 22:00:35 +00:00
|
|
|
#include "avc.h"
|
2003-07-09 23:10:59 +00:00
|
|
|
|
2004-04-17 12:04:59 +00:00
|
|
|
#undef NDEBUG
|
|
|
|
#include <assert.h>
|
|
|
|
|
2007-01-21 01:39:17 +00:00
|
|
|
static const AVCodecTag flv_video_codec_ids[] = {
|
2006-12-28 12:35:22 +00:00
|
|
|
{CODEC_ID_FLV1, FLV_CODECID_H263 },
|
|
|
|
{CODEC_ID_FLASHSV, FLV_CODECID_SCREEN},
|
|
|
|
{CODEC_ID_VP6F, FLV_CODECID_VP6 },
|
2007-01-01 22:52:22 +00:00
|
|
|
{CODEC_ID_VP6, FLV_CODECID_VP6 },
|
2008-05-26 22:00:35 +00:00
|
|
|
{CODEC_ID_H264, FLV_CODECID_H264 },
|
2006-12-28 12:35:22 +00:00
|
|
|
{CODEC_ID_NONE, 0}
|
|
|
|
};
|
|
|
|
|
2007-01-21 01:39:17 +00:00
|
|
|
static const AVCodecTag flv_audio_codec_ids[] = {
|
2006-12-28 12:35:22 +00:00
|
|
|
{CODEC_ID_MP3, FLV_CODECID_MP3 >> FLV_AUDIO_CODECID_OFFSET},
|
2008-02-24 00:57:15 +00:00
|
|
|
{CODEC_ID_PCM_S8, FLV_CODECID_PCM >> FLV_AUDIO_CODECID_OFFSET},
|
|
|
|
{CODEC_ID_PCM_S16BE, FLV_CODECID_PCM >> FLV_AUDIO_CODECID_OFFSET},
|
2006-12-28 12:35:22 +00:00
|
|
|
{CODEC_ID_PCM_S16LE, FLV_CODECID_PCM_LE >> FLV_AUDIO_CODECID_OFFSET},
|
|
|
|
{CODEC_ID_ADPCM_SWF, FLV_CODECID_ADPCM >> FLV_AUDIO_CODECID_OFFSET},
|
2008-05-26 22:00:35 +00:00
|
|
|
{CODEC_ID_AAC, FLV_CODECID_AAC >> FLV_AUDIO_CODECID_OFFSET},
|
2008-05-02 19:35:31 +00:00
|
|
|
{CODEC_ID_NELLYMOSER, FLV_CODECID_NELLYMOSER >> FLV_AUDIO_CODECID_OFFSET},
|
2006-12-28 12:35:22 +00:00
|
|
|
{CODEC_ID_NONE, 0}
|
|
|
|
};
|
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
typedef struct FLVContext {
|
2004-04-18 15:26:57 +00:00
|
|
|
int reserved;
|
2006-08-06 15:29:50 +00:00
|
|
|
offset_t duration_offset;
|
|
|
|
offset_t filesize_offset;
|
|
|
|
int64_t duration;
|
2008-05-26 22:00:35 +00:00
|
|
|
int delay; ///< first dts delay for AVC
|
2003-07-09 23:10:59 +00:00
|
|
|
} FLVContext;
|
|
|
|
|
2004-07-02 19:26:51 +00:00
|
|
|
static int get_audio_flags(AVCodecContext *enc){
|
2006-12-06 00:23:04 +00:00
|
|
|
int flags = (enc->bits_per_sample == 16) ? FLV_SAMPLESSIZE_16BIT : FLV_SAMPLESSIZE_8BIT;
|
2004-07-02 19:26:51 +00:00
|
|
|
|
2008-05-26 22:00:35 +00:00
|
|
|
if (enc->codec_id == CODEC_ID_AAC) // specs force these parameters
|
|
|
|
return FLV_CODECID_AAC | FLV_SAMPLERATE_44100HZ | FLV_SAMPLESSIZE_16BIT | FLV_STEREO;
|
|
|
|
else {
|
2004-07-02 19:26:51 +00:00
|
|
|
switch (enc->sample_rate) {
|
|
|
|
case 44100:
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_SAMPLERATE_44100HZ;
|
2004-07-02 19:26:51 +00:00
|
|
|
break;
|
|
|
|
case 22050:
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_SAMPLERATE_22050HZ;
|
2004-07-02 19:26:51 +00:00
|
|
|
break;
|
|
|
|
case 11025:
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_SAMPLERATE_11025HZ;
|
2004-07-02 19:26:51 +00:00
|
|
|
break;
|
|
|
|
case 8000: //nellymoser only
|
|
|
|
case 5512: //not mp3
|
2007-10-09 01:01:07 +00:00
|
|
|
if(enc->codec_id != CODEC_ID_MP3){
|
2007-10-09 01:12:27 +00:00
|
|
|
flags |= FLV_SAMPLERATE_SPECIAL;
|
|
|
|
break;
|
2007-10-09 01:01:07 +00:00
|
|
|
}
|
2004-07-02 19:26:51 +00:00
|
|
|
default:
|
2007-06-12 09:29:25 +00:00
|
|
|
av_log(enc, AV_LOG_ERROR, "flv does not support that sample rate, choose from (44100, 22050, 11025).\n");
|
2004-07-02 19:26:51 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2008-05-26 22:00:35 +00:00
|
|
|
}
|
2004-07-02 19:26:51 +00:00
|
|
|
|
|
|
|
if (enc->channels > 1) {
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_STEREO;
|
2004-07-02 19:26:51 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-07-02 19:26:51 +00:00
|
|
|
switch(enc->codec_id){
|
|
|
|
case CODEC_ID_MP3:
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_CODECID_MP3 | FLV_SAMPLESSIZE_16BIT;
|
2004-07-02 19:26:51 +00:00
|
|
|
break;
|
2005-02-21 18:05:21 +00:00
|
|
|
case CODEC_ID_PCM_S8:
|
2008-02-24 00:57:15 +00:00
|
|
|
flags |= FLV_CODECID_PCM | FLV_SAMPLESSIZE_8BIT;
|
2005-12-22 01:10:11 +00:00
|
|
|
break;
|
2005-02-21 18:05:21 +00:00
|
|
|
case CODEC_ID_PCM_S16BE:
|
2008-02-24 00:57:15 +00:00
|
|
|
flags |= FLV_CODECID_PCM | FLV_SAMPLESSIZE_16BIT;
|
2005-12-22 01:10:11 +00:00
|
|
|
break;
|
2005-02-21 18:05:21 +00:00
|
|
|
case CODEC_ID_PCM_S16LE:
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= FLV_CODECID_PCM_LE | FLV_SAMPLESSIZE_16BIT;
|
2005-12-22 01:10:11 +00:00
|
|
|
break;
|
2005-11-12 20:01:23 +00:00
|
|
|
case CODEC_ID_ADPCM_SWF:
|
2007-03-03 09:16:38 +00:00
|
|
|
flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT;
|
2005-12-22 01:10:11 +00:00
|
|
|
break;
|
2008-05-02 19:35:31 +00:00
|
|
|
case CODEC_ID_NELLYMOSER:
|
|
|
|
flags |= FLV_CODECID_NELLYMOSER | FLV_SAMPLESSIZE_16BIT;
|
|
|
|
break;
|
2004-07-02 19:26:51 +00:00
|
|
|
case 0:
|
|
|
|
flags |= enc->codec_tag<<4;
|
|
|
|
break;
|
|
|
|
default:
|
2005-07-19 14:41:08 +00:00
|
|
|
av_log(enc, AV_LOG_ERROR, "codec not compatible with flv\n");
|
2004-07-02 19:26:51 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-07-02 19:26:51 +00:00
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2006-07-17 21:51:21 +00:00
|
|
|
static void put_amf_string(ByteIOContext *pb, const char *str)
|
|
|
|
{
|
|
|
|
size_t len = strlen(str);
|
|
|
|
put_be16(pb, len);
|
|
|
|
put_buffer(pb, str, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_amf_double(ByteIOContext *pb, double d)
|
|
|
|
{
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, AMF_DATA_TYPE_NUMBER);
|
2006-07-17 21:51:21 +00:00
|
|
|
put_be64(pb, av_dbl2int(d));
|
|
|
|
}
|
|
|
|
|
2006-12-28 12:35:22 +00:00
|
|
|
static void put_amf_bool(ByteIOContext *pb, int b) {
|
|
|
|
put_byte(pb, AMF_DATA_TYPE_BOOL);
|
|
|
|
put_byte(pb, !!b);
|
|
|
|
}
|
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
static int flv_write_header(AVFormatContext *s)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2003-07-09 23:10:59 +00:00
|
|
|
FLVContext *flv = s->priv_data;
|
2008-05-24 00:03:00 +00:00
|
|
|
AVCodecContext *audio_enc = NULL, *video_enc = NULL;
|
|
|
|
int i;
|
2006-07-17 21:51:21 +00:00
|
|
|
double framerate = 0.0;
|
|
|
|
int metadata_size_pos, data_size;
|
2003-07-09 23:10:59 +00:00
|
|
|
|
2004-04-18 15:26:57 +00:00
|
|
|
for(i=0; i<s->nb_streams; i++){
|
2005-07-17 22:24:36 +00:00
|
|
|
AVCodecContext *enc = s->streams[i]->codec;
|
2006-07-17 21:51:21 +00:00
|
|
|
if (enc->codec_type == CODEC_TYPE_VIDEO) {
|
|
|
|
if (s->streams[i]->r_frame_rate.den && s->streams[i]->r_frame_rate.num) {
|
|
|
|
framerate = av_q2d(s->streams[i]->r_frame_rate);
|
|
|
|
} else {
|
|
|
|
framerate = 1/av_q2d(s->streams[i]->codec->time_base);
|
|
|
|
}
|
2008-05-24 00:03:00 +00:00
|
|
|
video_enc = enc;
|
|
|
|
if(enc->codec_tag == 0) {
|
2006-12-28 12:35:22 +00:00
|
|
|
av_log(enc, AV_LOG_ERROR, "video codec not compatible with flv\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-07-17 21:51:21 +00:00
|
|
|
} else {
|
2008-05-24 00:03:00 +00:00
|
|
|
audio_enc = enc;
|
2006-12-10 17:12:45 +00:00
|
|
|
if(get_audio_flags(enc)<0)
|
|
|
|
return -1;
|
2006-07-17 21:51:21 +00:00
|
|
|
}
|
2008-04-25 09:04:38 +00:00
|
|
|
av_set_pts_info(s->streams[i], 32, 1, 1000); /* 32 bit pts in ms */
|
2006-12-10 17:12:45 +00:00
|
|
|
}
|
|
|
|
put_tag(pb,"FLV");
|
|
|
|
put_byte(pb,1);
|
2008-05-24 00:03:00 +00:00
|
|
|
put_byte(pb, FLV_HEADER_FLAG_HASAUDIO * !!audio_enc
|
|
|
|
+ FLV_HEADER_FLAG_HASVIDEO * !!video_enc);
|
2006-12-10 17:12:45 +00:00
|
|
|
put_be32(pb,9);
|
|
|
|
put_be32(pb,0);
|
|
|
|
|
|
|
|
for(i=0; i<s->nb_streams; i++){
|
|
|
|
if(s->streams[i]->codec->codec_tag == 5){
|
2004-04-18 15:26:57 +00:00
|
|
|
put_byte(pb,8); // message type
|
|
|
|
put_be24(pb,0); // include flags
|
|
|
|
put_be24(pb,0); // time stamp
|
|
|
|
put_be32(pb,0); // reserved
|
|
|
|
put_be32(pb,11); // size
|
|
|
|
flv->reserved=5;
|
|
|
|
}
|
|
|
|
}
|
2003-07-09 23:10:59 +00:00
|
|
|
|
2006-07-17 21:51:21 +00:00
|
|
|
/* write meta_tag */
|
|
|
|
put_byte(pb, 18); // tag type META
|
|
|
|
metadata_size_pos= url_ftell(pb);
|
|
|
|
put_be24(pb, 0); // size of data part (sum of all parts below)
|
|
|
|
put_be24(pb, 0); // time stamp
|
|
|
|
put_be32(pb, 0); // reserved
|
|
|
|
|
|
|
|
/* now data of data_size size */
|
|
|
|
|
|
|
|
/* first event name as a string */
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, AMF_DATA_TYPE_STRING);
|
2006-07-17 21:51:21 +00:00
|
|
|
put_amf_string(pb, "onMetaData"); // 12 bytes
|
|
|
|
|
|
|
|
/* mixed array (hash) with size and string/type/data tuples */
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, AMF_DATA_TYPE_MIXEDARRAY);
|
2008-05-24 00:03:00 +00:00
|
|
|
put_be32(pb, 5*!!video_enc + 4*!!audio_enc + 2); // +2 for duration and file size
|
2006-07-17 21:51:21 +00:00
|
|
|
|
2006-08-06 15:29:50 +00:00
|
|
|
put_amf_string(pb, "duration");
|
|
|
|
flv->duration_offset= url_ftell(pb);
|
|
|
|
put_amf_double(pb, 0); // delayed write
|
2006-07-17 21:51:21 +00:00
|
|
|
|
2008-05-24 00:03:00 +00:00
|
|
|
if(video_enc){
|
2006-07-17 21:51:21 +00:00
|
|
|
put_amf_string(pb, "width");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, video_enc->width);
|
2006-07-17 21:51:21 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "height");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, video_enc->height);
|
2006-07-17 21:51:21 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "videodatarate");
|
|
|
|
put_amf_double(pb, s->bit_rate / 1024.0);
|
|
|
|
|
|
|
|
put_amf_string(pb, "framerate");
|
|
|
|
put_amf_double(pb, framerate);
|
2006-12-28 12:35:22 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "videocodecid");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, video_enc->codec_tag);
|
2006-07-17 21:51:21 +00:00
|
|
|
}
|
|
|
|
|
2008-05-24 00:03:00 +00:00
|
|
|
if(audio_enc){
|
2006-07-17 21:51:21 +00:00
|
|
|
put_amf_string(pb, "audiosamplerate");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, audio_enc->sample_rate);
|
2006-12-28 12:35:22 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "audiosamplesize");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, audio_enc->codec_id == CODEC_ID_PCM_S8 ? 8 : 16);
|
2006-12-28 12:35:22 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "stereo");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_bool(pb, audio_enc->channels == 2);
|
2006-12-28 12:35:22 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "audiocodecid");
|
2008-05-24 00:03:00 +00:00
|
|
|
put_amf_double(pb, audio_enc->codec_tag);
|
2006-07-17 21:51:21 +00:00
|
|
|
}
|
|
|
|
|
2006-08-06 15:29:50 +00:00
|
|
|
put_amf_string(pb, "filesize");
|
|
|
|
flv->filesize_offset= url_ftell(pb);
|
|
|
|
put_amf_double(pb, 0); // delayed write
|
2006-07-17 21:51:21 +00:00
|
|
|
|
|
|
|
put_amf_string(pb, "");
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, AMF_END_OF_OBJECT);
|
2006-07-17 21:51:21 +00:00
|
|
|
|
|
|
|
/* write total size of tag */
|
|
|
|
data_size= url_ftell(pb) - metadata_size_pos - 10;
|
|
|
|
url_fseek(pb, metadata_size_pos, SEEK_SET);
|
|
|
|
put_be24(pb, data_size);
|
|
|
|
url_fseek(pb, data_size + 10 - 3, SEEK_CUR);
|
|
|
|
put_be32(pb, data_size + 11);
|
|
|
|
|
2008-05-26 22:00:35 +00:00
|
|
|
for (i = 0; i < s->nb_streams; i++) {
|
|
|
|
AVCodecContext *enc = s->streams[i]->codec;
|
|
|
|
if (enc->codec_id == CODEC_ID_AAC || enc->codec_id == CODEC_ID_H264) {
|
|
|
|
offset_t pos;
|
|
|
|
put_byte(pb, enc->codec_type == CODEC_TYPE_VIDEO ?
|
|
|
|
FLV_TAG_TYPE_VIDEO : FLV_TAG_TYPE_AUDIO);
|
|
|
|
put_be24(pb, 0); // size patched later
|
|
|
|
put_be24(pb, 0); // ts
|
|
|
|
put_byte(pb, 0); // ts ext
|
|
|
|
put_be24(pb, 0); // streamid
|
|
|
|
pos = url_ftell(pb);
|
|
|
|
if (enc->codec_id == CODEC_ID_AAC) {
|
|
|
|
put_byte(pb, get_audio_flags(enc));
|
|
|
|
put_byte(pb, 0); // AAC sequence header
|
|
|
|
put_buffer(pb, enc->extradata, enc->extradata_size);
|
|
|
|
} else {
|
|
|
|
put_byte(pb, enc->codec_tag | FLV_FRAME_KEY); // flags
|
|
|
|
put_byte(pb, 0); // AVC sequence header
|
|
|
|
put_be24(pb, 0); // composition time
|
|
|
|
ff_isom_write_avcc(pb, enc->extradata, enc->extradata_size);
|
|
|
|
}
|
|
|
|
data_size = url_ftell(pb) - pos;
|
|
|
|
url_fseek(pb, -data_size - 10, SEEK_CUR);
|
|
|
|
put_be24(pb, data_size);
|
|
|
|
url_fseek(pb, data_size + 10 - 3, SEEK_CUR);
|
|
|
|
put_be32(pb, data_size + 11); // previous tag size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int flv_write_trailer(AVFormatContext *s)
|
|
|
|
{
|
2003-07-10 23:18:09 +00:00
|
|
|
int64_t file_size;
|
|
|
|
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2003-07-09 23:10:59 +00:00
|
|
|
FLVContext *flv = s->priv_data;
|
|
|
|
|
2003-07-10 23:18:09 +00:00
|
|
|
file_size = url_ftell(pb);
|
2006-08-06 15:29:50 +00:00
|
|
|
|
|
|
|
/* update informations */
|
|
|
|
url_fseek(pb, flv->duration_offset, SEEK_SET);
|
|
|
|
put_amf_double(pb, flv->duration / (double)1000);
|
|
|
|
url_fseek(pb, flv->filesize_offset, SEEK_SET);
|
|
|
|
put_amf_double(pb, file_size);
|
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
url_fseek(pb, file_size, SEEK_SET);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 02:06:32 +00:00
|
|
|
static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
|
2003-07-09 23:10:59 +00:00
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2005-07-17 22:24:36 +00:00
|
|
|
AVCodecContext *enc = s->streams[pkt->stream_index]->codec;
|
2003-07-09 23:10:59 +00:00
|
|
|
FLVContext *flv = s->priv_data;
|
2008-05-26 22:00:35 +00:00
|
|
|
unsigned ts;
|
2004-05-29 02:06:32 +00:00
|
|
|
int size= pkt->size;
|
2007-08-04 23:03:17 +00:00
|
|
|
int flags, flags_size;
|
2003-07-09 23:10:59 +00:00
|
|
|
|
2006-11-01 22:39:58 +00:00
|
|
|
// av_log(s, AV_LOG_DEBUG, "type:%d pts: %"PRId64" size:%d\n", enc->codec_type, timestamp, size);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2008-05-26 22:00:35 +00:00
|
|
|
if(enc->codec_id == CODEC_ID_VP6 || enc->codec_id == CODEC_ID_VP6F ||
|
|
|
|
enc->codec_id == CODEC_ID_AAC)
|
2007-08-04 23:03:17 +00:00
|
|
|
flags_size= 2;
|
2008-05-26 22:00:35 +00:00
|
|
|
else if(enc->codec_id == CODEC_ID_H264)
|
|
|
|
flags_size= 5;
|
2007-08-04 23:03:17 +00:00
|
|
|
else
|
|
|
|
flags_size= 1;
|
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
if (enc->codec_type == CODEC_TYPE_VIDEO) {
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, FLV_TAG_TYPE_VIDEO);
|
2007-01-01 22:52:22 +00:00
|
|
|
|
2007-01-21 12:44:58 +00:00
|
|
|
flags = enc->codec_tag;
|
2007-01-01 22:52:22 +00:00
|
|
|
if(flags == 0) {
|
|
|
|
av_log(enc, AV_LOG_ERROR, "video codec %X not compatible with flv\n",enc->codec_id);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-12-06 00:23:04 +00:00
|
|
|
flags |= pkt->flags & PKT_FLAG_KEY ? FLV_FRAME_KEY : FLV_FRAME_INTER;
|
2004-06-25 20:03:51 +00:00
|
|
|
} else {
|
|
|
|
assert(enc->codec_type == CODEC_TYPE_AUDIO);
|
2004-07-02 19:26:51 +00:00
|
|
|
flags = get_audio_flags(enc);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-04-17 12:04:59 +00:00
|
|
|
assert(size);
|
|
|
|
|
2006-12-06 00:23:04 +00:00
|
|
|
put_byte(pb, FLV_TAG_TYPE_AUDIO);
|
2004-06-25 20:03:51 +00:00
|
|
|
}
|
|
|
|
|
2008-05-29 00:35:23 +00:00
|
|
|
if (enc->codec_id == CODEC_ID_H264 &&
|
|
|
|
/* check if extradata looks like mp4 formated */
|
|
|
|
enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) {
|
2008-05-26 22:00:35 +00:00
|
|
|
if (ff_avc_parse_nal_units(pkt->data, &pkt->data, &pkt->size) < 0)
|
|
|
|
return -1;
|
|
|
|
assert(pkt->size);
|
|
|
|
size = pkt->size;
|
|
|
|
/* cast needed to get negative value */
|
|
|
|
if (!flv->delay && (int32_t)pkt->dts < 0)
|
|
|
|
flv->delay = -(int32_t)pkt->dts;
|
|
|
|
}
|
|
|
|
|
|
|
|
ts = pkt->dts + flv->delay; // add delay to force positive dts
|
2007-08-04 23:03:17 +00:00
|
|
|
put_be24(pb,size + flags_size);
|
2008-05-26 22:00:35 +00:00
|
|
|
put_be24(pb,ts);
|
|
|
|
put_byte(pb,ts >> 24);
|
2007-11-16 00:09:34 +00:00
|
|
|
put_be24(pb,flv->reserved);
|
2004-06-25 20:03:51 +00:00
|
|
|
put_byte(pb,flags);
|
2007-01-01 22:52:22 +00:00
|
|
|
if (enc->codec_id == CODEC_ID_VP6)
|
|
|
|
put_byte(pb,0);
|
|
|
|
if (enc->codec_id == CODEC_ID_VP6F)
|
|
|
|
put_byte(pb, enc->extradata_size ? enc->extradata[0] : 0);
|
2008-05-26 22:00:35 +00:00
|
|
|
else if (enc->codec_id == CODEC_ID_AAC)
|
|
|
|
put_byte(pb,1); // AAC raw
|
|
|
|
else if (enc->codec_id == CODEC_ID_H264) {
|
|
|
|
put_byte(pb,1); // AVC NALU
|
|
|
|
put_be24(pb,pkt->pts - (int32_t)pkt->dts);
|
|
|
|
}
|
2004-06-25 20:03:51 +00:00
|
|
|
put_buffer(pb, pkt->data, size);
|
2007-08-04 23:03:17 +00:00
|
|
|
put_be32(pb,size+flags_size+11); // previous tag size
|
2008-05-26 22:00:35 +00:00
|
|
|
flv->duration = FFMAX(flv->duration, pkt->pts + flv->delay + pkt->duration);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-07-09 23:10:59 +00:00
|
|
|
put_flush_packet(pb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
AVOutputFormat flv_muxer = {
|
2003-07-09 23:10:59 +00:00
|
|
|
"flv",
|
2008-06-03 16:20:54 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("FLV format"),
|
2005-05-13 12:09:45 +00:00
|
|
|
"video/x-flv",
|
2003-07-09 23:10:59 +00:00
|
|
|
"flv",
|
|
|
|
sizeof(FLVContext),
|
2007-01-07 00:02:15 +00:00
|
|
|
#ifdef CONFIG_LIBMP3LAME
|
2003-09-08 22:04:29 +00:00
|
|
|
CODEC_ID_MP3,
|
2007-01-07 00:02:15 +00:00
|
|
|
#else // CONFIG_LIBMP3LAME
|
2007-11-15 23:53:19 +00:00
|
|
|
CODEC_ID_ADPCM_SWF,
|
2007-01-07 00:02:15 +00:00
|
|
|
#endif // CONFIG_LIBMP3LAME
|
2003-07-09 23:10:59 +00:00
|
|
|
CODEC_ID_FLV1,
|
|
|
|
flv_write_header,
|
|
|
|
flv_write_packet,
|
|
|
|
flv_write_trailer,
|
2007-01-21 12:08:31 +00:00
|
|
|
.codec_tag= (const AVCodecTag*[]){flv_video_codec_ids, flv_audio_codec_ids, 0},
|
2008-05-26 22:00:35 +00:00
|
|
|
.flags= AVFMT_GLOBALHEADER,
|
2003-07-09 23:10:59 +00:00
|
|
|
};
|