flvenc.c 9.88 KB
Newer Older
1
/*
2
 * FLV muxer
3 4
 * Copyright (c) 2003 The FFmpeg Project.
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * 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
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

Michael Niedermayer's avatar
Michael Niedermayer committed
25 26 27
#undef NDEBUG
#include <assert.h>

28
static const AVCodecTag flv_video_codec_ids[] = {
29 30 31
    {CODEC_ID_FLV1,    FLV_CODECID_H263  },
    {CODEC_ID_FLASHSV, FLV_CODECID_SCREEN},
    {CODEC_ID_VP6F,    FLV_CODECID_VP6   },
32
    {CODEC_ID_VP6,     FLV_CODECID_VP6   },
33 34 35
    {CODEC_ID_NONE,    0}
};

36
static const AVCodecTag flv_audio_codec_ids[] = {
37 38 39 40 41 42 43 44
    {CODEC_ID_MP3,       FLV_CODECID_MP3    >> FLV_AUDIO_CODECID_OFFSET},
    {CODEC_ID_PCM_S8,    FLV_CODECID_PCM_BE >> FLV_AUDIO_CODECID_OFFSET},
    {CODEC_ID_PCM_S16BE, FLV_CODECID_PCM_BE >> FLV_AUDIO_CODECID_OFFSET},
    {CODEC_ID_PCM_S16LE, FLV_CODECID_PCM_LE >> FLV_AUDIO_CODECID_OFFSET},
    {CODEC_ID_ADPCM_SWF, FLV_CODECID_ADPCM  >> FLV_AUDIO_CODECID_OFFSET},
    {CODEC_ID_NONE,      0}
};

45 46 47
typedef struct FLVContext {
    int hasAudio;
    int hasVideo;
Michael Niedermayer's avatar
Michael Niedermayer committed
48
    int reserved;
49 50 51
    offset_t duration_offset;
    offset_t filesize_offset;
    int64_t duration;
52 53
} FLVContext;

54
static int get_audio_flags(AVCodecContext *enc){
55
    int flags = (enc->bits_per_sample == 16) ? FLV_SAMPLESSIZE_16BIT : FLV_SAMPLESSIZE_8BIT;
56 57 58

    switch (enc->sample_rate) {
        case    44100:
59
            flags |= FLV_SAMPLERATE_44100HZ;
60 61
            break;
        case    22050:
62
            flags |= FLV_SAMPLERATE_22050HZ;
63 64
            break;
        case    11025:
65
            flags |= FLV_SAMPLERATE_11025HZ;
66 67 68
            break;
        case     8000: //nellymoser only
        case     5512: //not mp3
69
            flags |= FLV_SAMPLERATE_SPECIAL;
70 71
            break;
        default:
72
            av_log(enc, AV_LOG_ERROR, "flv doesnt support that sample rate, choose from (44100, 22050, 11025)\n");
73 74 75 76
            return -1;
    }

    if (enc->channels > 1) {
77
        flags |= FLV_STEREO;
78
    }
79

80 81
    switch(enc->codec_id){
    case CODEC_ID_MP3:
82
        flags |= FLV_CODECID_MP3    | FLV_SAMPLESSIZE_16BIT;
83
        break;
84
    case CODEC_ID_PCM_S8:
85
        flags |= FLV_CODECID_PCM_BE | FLV_SAMPLESSIZE_8BIT;
86
        break;
87
    case CODEC_ID_PCM_S16BE:
88
        flags |= FLV_CODECID_PCM_BE | FLV_SAMPLESSIZE_16BIT;
89
        break;
90
    case CODEC_ID_PCM_S16LE:
91
        flags |= FLV_CODECID_PCM_LE | FLV_SAMPLESSIZE_16BIT;
92
        break;
93
    case CODEC_ID_ADPCM_SWF:
94
        flags |= FLV_CODECID_ADPCM | FLV_SAMPLESSIZE_16BIT;
95
        break;
96 97 98 99
    case 0:
        flags |= enc->codec_tag<<4;
        break;
    default:
100
        av_log(enc, AV_LOG_ERROR, "codec not compatible with flv\n");
101 102
        return -1;
    }
103

104 105 106
    return flags;
}

107 108 109 110 111 112 113 114 115
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)
{
116
    put_byte(pb, AMF_DATA_TYPE_NUMBER);
117 118 119
    put_be64(pb, av_dbl2int(d));
}

120 121 122 123 124
static void put_amf_bool(ByteIOContext *pb, int b) {
    put_byte(pb, AMF_DATA_TYPE_BOOL);
    put_byte(pb, !!b);
}

125 126 127 128
static int flv_write_header(AVFormatContext *s)
{
    ByteIOContext *pb = &s->pb;
    FLVContext *flv = s->priv_data;
129
    int i, width, height, samplerate, samplesize, channels, audiocodecid, videocodecid;
130 131
    double framerate = 0.0;
    int metadata_size_pos, data_size;
132 133 134 135

    flv->hasAudio = 0;
    flv->hasVideo = 0;

Michael Niedermayer's avatar
Michael Niedermayer committed
136
    for(i=0; i<s->nb_streams; i++){
137
        AVCodecContext *enc = s->streams[i]->codec;
138 139 140 141 142 143 144 145 146
        if (enc->codec_type == CODEC_TYPE_VIDEO) {
            width = enc->width;
            height = enc->height;
            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);
            }
            flv->hasVideo=1;
147

148
            videocodecid = enc->codec_tag;
149 150 151 152
            if(videocodecid == 0) {
                av_log(enc, AV_LOG_ERROR, "video codec not compatible with flv\n");
                return -1;
            }
153 154 155
        } else {
            flv->hasAudio=1;
            samplerate = enc->sample_rate;
156 157
            channels = enc->channels;

158
            audiocodecid = enc->codec_tag;
159 160
            samplesize = (enc->codec_id == CODEC_ID_PCM_S8) ? 8 : 16;

161 162
            if(get_audio_flags(enc)<0)
                return -1;
163
        }
164
        av_set_pts_info(s->streams[i], 24, 1, 1000); /* 24 bit pts in ms */
165 166 167 168 169 170 171 172 173 174
    }
    put_tag(pb,"FLV");
    put_byte(pb,1);
    put_byte(pb,   FLV_HEADER_FLAG_HASAUDIO * flv->hasAudio
                 + FLV_HEADER_FLAG_HASVIDEO * flv->hasVideo);
    put_be32(pb,9);
    put_be32(pb,0);

    for(i=0; i<s->nb_streams; i++){
        if(s->streams[i]->codec->codec_tag == 5){
Michael Niedermayer's avatar
Michael Niedermayer committed
175 176 177 178 179 180 181 182
            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;
        }
    }
183

184 185 186 187 188 189 190 191 192 193
    /* 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 */
194
    put_byte(pb, AMF_DATA_TYPE_STRING);
195 196 197
    put_amf_string(pb, "onMetaData"); // 12 bytes

    /* mixed array (hash) with size and string/type/data tuples */
198
    put_byte(pb, AMF_DATA_TYPE_MIXEDARRAY);
199
    put_be32(pb, 5*flv->hasVideo + 4*flv->hasAudio + 2); // +2 for duration and file size
200

201 202 203
    put_amf_string(pb, "duration");
    flv->duration_offset= url_ftell(pb);
    put_amf_double(pb, 0); // delayed write
204 205 206 207 208 209 210 211 212 213 214 215 216

    if(flv->hasVideo){
        put_amf_string(pb, "width");
        put_amf_double(pb, width);

        put_amf_string(pb, "height");
        put_amf_double(pb, height);

        put_amf_string(pb, "videodatarate");
        put_amf_double(pb, s->bit_rate / 1024.0);

        put_amf_string(pb, "framerate");
        put_amf_double(pb, framerate);
217 218 219

        put_amf_string(pb, "videocodecid");
        put_amf_double(pb, videocodecid);
220 221 222 223 224
    }

    if(flv->hasAudio){
        put_amf_string(pb, "audiosamplerate");
        put_amf_double(pb, samplerate);
225 226 227 228 229 230 231 232 233

        put_amf_string(pb, "audiosamplesize");
        put_amf_double(pb, samplesize);

        put_amf_string(pb, "stereo");
        put_amf_bool(pb, (channels == 2));

        put_amf_string(pb, "audiocodecid");
        put_amf_double(pb, audiocodecid);
234 235
    }

236 237 238
    put_amf_string(pb, "filesize");
    flv->filesize_offset= url_ftell(pb);
    put_amf_double(pb, 0); // delayed write
239 240

    put_amf_string(pb, "");
241
    put_byte(pb, AMF_END_OF_OBJECT);
242 243 244 245 246 247 248 249

    /* 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);

250 251 252 253 254
    return 0;
}

static int flv_write_trailer(AVFormatContext *s)
{
255 256
    int64_t file_size;

257 258 259
    ByteIOContext *pb = &s->pb;
    FLVContext *flv = s->priv_data;

260
    file_size = url_ftell(pb);
261 262 263 264 265 266 267

    /* 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);

268 269 270 271
    url_fseek(pb, file_size, SEEK_SET);
    return 0;
}

272
static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
273 274
{
    ByteIOContext *pb = &s->pb;
275
    AVCodecContext *enc = s->streams[pkt->stream_index]->codec;
276
    FLVContext *flv = s->priv_data;
277
    int size= pkt->size;
Michael Niedermayer's avatar
Michael Niedermayer committed
278
    int flags;
279

280
//    av_log(s, AV_LOG_DEBUG, "type:%d pts: %"PRId64" size:%d\n", enc->codec_type, timestamp, size);
281

282
    if (enc->codec_type == CODEC_TYPE_VIDEO) {
283
        put_byte(pb, FLV_TAG_TYPE_VIDEO);
284

285
        flags = enc->codec_tag;
286 287 288 289 290
        if(flags == 0) {
            av_log(enc, AV_LOG_ERROR, "video codec %X not compatible with flv\n",enc->codec_id);
            return -1;
        }

291
        flags |= pkt->flags & PKT_FLAG_KEY ? FLV_FRAME_KEY : FLV_FRAME_INTER;
Michael Niedermayer's avatar
Michael Niedermayer committed
292 293
    } else {
        assert(enc->codec_type == CODEC_TYPE_AUDIO);
294
        flags = get_audio_flags(enc);
295

Michael Niedermayer's avatar
Michael Niedermayer committed
296 297
        assert(size);

298
        put_byte(pb, FLV_TAG_TYPE_AUDIO);
Michael Niedermayer's avatar
Michael Niedermayer committed
299 300
    }

301 302 303 304
    if ((enc->codec_id == CODEC_ID_VP6) || (enc->codec_id == CODEC_ID_VP6F))
        put_be24(pb,size+2); // include the extra byte needed for VP6 in flv and flags
    else
        put_be24(pb,size+1); // include flags
Michael Niedermayer's avatar
Michael Niedermayer committed
305 306 307
    put_be24(pb,pkt->pts);
    put_be32(pb,flv->reserved);
    put_byte(pb,flags);
308 309 310 311
    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);
Michael Niedermayer's avatar
Michael Niedermayer committed
312
    put_buffer(pb, pkt->data, size);
313
    put_be32(pb,size+1+11); // previous tag size
314
    flv->duration = pkt->pts + pkt->duration;
315

316 317 318 319
    put_flush_packet(pb);
    return 0;
}

320
AVOutputFormat flv_muxer = {
321 322
    "flv",
    "flv format",
Michael Niedermayer's avatar
Michael Niedermayer committed
323
    "video/x-flv",
324 325
    "flv",
    sizeof(FLVContext),
326
#ifdef CONFIG_LIBMP3LAME
327
    CODEC_ID_MP3,
328
#else // CONFIG_LIBMP3LAME
329
    CODEC_ID_NONE,
330
#endif // CONFIG_LIBMP3LAME
331 332 333 334
    CODEC_ID_FLV1,
    flv_write_header,
    flv_write_packet,
    flv_write_trailer,
335
    .codec_tag= (const AVCodecTag*[]){flv_video_codec_ids, flv_audio_codec_ids, 0},
336
};