swf.c 27.1 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1 2
/*
 * Flash Compatible Streaming Format
3
 * Copyright (c) 2000 Fabrice Bellard.
4
 * Copyright (c) 2003 Tinic Uro.
Fabrice Bellard's avatar
Fabrice Bellard committed
5
 *
6 7 8 9
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
10
 *
11
 * This library is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
15
 *
16 17 18
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Fabrice Bellard's avatar
Fabrice Bellard committed
19 20
 */
#include "avformat.h"
21
#include "bitstream.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
22 23 24 25 26 27 28 29 30 31 32

/* should have a generic way to indicate probable size */
#define DUMMY_FILE_SIZE   (100 * 1024 * 1024)
#define DUMMY_DURATION    600 /* in seconds */

#define TAG_END           0
#define TAG_SHOWFRAME     1
#define TAG_DEFINESHAPE   2
#define TAG_FREECHARACTER 3
#define TAG_PLACEOBJECT   4
#define TAG_REMOVEOBJECT  5
Alex Beregszaszi's avatar
Alex Beregszaszi committed
33
#define TAG_STREAMHEAD    18
Fabrice Bellard's avatar
Fabrice Bellard committed
34 35
#define TAG_STREAMBLOCK   19
#define TAG_JPEG2         21
36 37 38 39
#define TAG_PLACEOBJECT2  26
#define TAG_STREAMHEAD2   45
#define TAG_VIDEOSTREAM	  60
#define TAG_VIDEOFRAME    61
Fabrice Bellard's avatar
Fabrice Bellard committed
40 41 42 43 44 45 46 47

#define TAG_LONG         0x100

/* flags for shape definition */
#define FLAG_MOVETO      0x01
#define FLAG_SETFILL0    0x02
#define FLAG_SETFILL1    0x04

48 49 50 51
#define SWF_VIDEO_CODEC_FLV1	0x02

#define AUDIO_FIFO_SIZE 65536

Fabrice Bellard's avatar
Fabrice Bellard committed
52 53
/* character id used */
#define BITMAP_ID 0
54
#define VIDEO_ID 0
Fabrice Bellard's avatar
Fabrice Bellard committed
55 56
#define SHAPE_ID  1

Michael Niedermayer's avatar
Michael Niedermayer committed
57 58
#undef NDEBUG
#include <assert.h>
59

Fabrice Bellard's avatar
Fabrice Bellard committed
60
typedef struct {
61

Fabrice Bellard's avatar
Fabrice Bellard committed
62 63
    offset_t duration_pos;
    offset_t tag_pos;
64 65 66 67 68 69 70 71
    
    int samples_per_frame;
    int sound_samples;
    int video_samples;
    int swf_frame_number;
    int video_frame_number;
    int ms_per_frame;
    int ch_id;
Fabrice Bellard's avatar
Fabrice Bellard committed
72
    int tag;
73 74 75 76 77 78 79 80

    uint8_t *audio_fifo;
    int audio_in_pos;
    int audio_out_pos;
    int audio_size;

    int video_type;
    int audio_type;
Fabrice Bellard's avatar
Fabrice Bellard committed
81 82
} SWFContext;

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
static const int sSampleRates[3][4] = {
    {44100, 48000, 32000, 0},
    {22050, 24000, 16000, 0},
    {11025, 12000,  8000, 0},
};

static const int sBitRates[2][3][15] = {
    {   {  0, 32, 64, 96,128,160,192,224,256,288,320,352,384,416,448},
        {  0, 32, 48, 56, 64, 80, 96,112,128,160,192,224,256,320,384},
        {  0, 32, 40, 48, 56, 64, 80, 96,112,128,160,192,224,256,320}
    },
    {   {  0, 32, 48, 56, 64, 80, 96,112,128,144,160,176,192,224,256},
        {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160},
        {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}
    },
};

static const int sSamplesPerFrame[3][3] =
{
    {  384,     1152,    1152 },
    {  384,     1152,     576 },
    {  384,     1152,     576 }
};

static const int sBitsPerSlot[3] = {
    32,
    8,
    8
};

static int swf_mp3_info(void *data, int *byteSize, int *samplesPerFrame, int *sampleRate, int *isMono )
{
    uint8_t *dataTmp = (uint8_t *)data;
    uint32_t header = ( (uint32_t)dataTmp[0] << 24 ) | ( (uint32_t)dataTmp[1] << 16 ) | ( (uint32_t)dataTmp[2] << 8 ) | (uint32_t)dataTmp[3];
    int layerID = 3 - ((header >> 17) & 0x03);
    int bitRateID = ((header >> 12) & 0x0f);
    int sampleRateID = ((header >> 10) & 0x03);
    int bitRate = 0;
    int bitsPerSlot = sBitsPerSlot[layerID];
    int isPadded = ((header >> 9) & 0x01);
    
    if ( (( header >> 21 ) & 0x7ff) != 0x7ff ) {
        return 0;
    }

    *isMono = ((header >>  6) & 0x03) == 0x03;

    if ( (header >> 19 ) & 0x01 ) {
        *sampleRate = sSampleRates[0][sampleRateID];
        bitRate = sBitRates[0][layerID][bitRateID] * 1000;
        *samplesPerFrame = sSamplesPerFrame[0][layerID];
    } else {
        if ( (header >> 20) & 0x01 ) {
            *sampleRate = sSampleRates[1][sampleRateID];
            bitRate = sBitRates[1][layerID][bitRateID] * 1000;
            *samplesPerFrame = sSamplesPerFrame[1][layerID];
        } else {
            *sampleRate = sSampleRates[2][sampleRateID];
            bitRate = sBitRates[1][layerID][bitRateID] * 1000;
            *samplesPerFrame = sSamplesPerFrame[2][layerID];
        }
    }

    *byteSize = ( ( ( ( *samplesPerFrame * (bitRate / bitsPerSlot) ) / *sampleRate ) + isPadded ) );

    return 1;
}

151
#ifdef CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static void put_swf_tag(AVFormatContext *s, int tag)
{
    SWFContext *swf = s->priv_data;
    ByteIOContext *pb = &s->pb;

    swf->tag_pos = url_ftell(pb);
    swf->tag = tag;
    /* reserve some room for the tag */
    if (tag & TAG_LONG) {
        put_le16(pb, 0);
        put_le32(pb, 0);
    } else {
        put_le16(pb, 0);
    }
}

static void put_swf_end_tag(AVFormatContext *s)
{
    SWFContext *swf = s->priv_data;
    ByteIOContext *pb = &s->pb;
Fabrice Bellard's avatar
Fabrice Bellard committed
172
    offset_t pos;
Fabrice Bellard's avatar
Fabrice Bellard committed
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    int tag_len, tag;

    pos = url_ftell(pb);
    tag_len = pos - swf->tag_pos - 2;
    tag = swf->tag;
    url_fseek(pb, swf->tag_pos, SEEK_SET);
    if (tag & TAG_LONG) {
        tag &= ~TAG_LONG;
        put_le16(pb, (tag << 6) | 0x3f);
        put_le32(pb, tag_len - 4);
    } else {
        assert(tag_len < 0x3f);
        put_le16(pb, (tag << 6) | tag_len);
    }
    url_fseek(pb, pos, SEEK_SET);
}

static inline void max_nbits(int *nbits_ptr, int val)
{
    int n;

    if (val == 0)
        return;
    val = abs(val);
    n = 1;
    while (val != 0) {
        n++;
        val >>= 1;
    }
    if (n > *nbits_ptr)
        *nbits_ptr = n;
}

static void put_swf_rect(ByteIOContext *pb, 
                         int xmin, int xmax, int ymin, int ymax)
{
    PutBitContext p;
210
    uint8_t buf[256];
Fabrice Bellard's avatar
Fabrice Bellard committed
211 212
    int nbits, mask;

Alex Beregszaszi's avatar
Alex Beregszaszi committed
213
    init_put_bits(&p, buf, sizeof(buf));
Fabrice Bellard's avatar
Fabrice Bellard committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
    
    nbits = 0;
    max_nbits(&nbits, xmin);
    max_nbits(&nbits, xmax);
    max_nbits(&nbits, ymin);
    max_nbits(&nbits, ymax);
    mask = (1 << nbits) - 1;

    /* rectangle info */
    put_bits(&p, 5, nbits);
    put_bits(&p, nbits, xmin & mask);
    put_bits(&p, nbits, xmax & mask);
    put_bits(&p, nbits, ymin & mask);
    put_bits(&p, nbits, ymax & mask);
    
    flush_put_bits(&p);
230
    put_buffer(pb, buf, pbBufPtr(&p) - p.buf);
Fabrice Bellard's avatar
Fabrice Bellard committed
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
}

static void put_swf_line_edge(PutBitContext *pb, int dx, int dy)
{
    int nbits, mask;

    put_bits(pb, 1, 1); /* edge */
    put_bits(pb, 1, 1); /* line select */
    nbits = 2;
    max_nbits(&nbits, dx);
    max_nbits(&nbits, dy);

    mask = (1 << nbits) - 1;
    put_bits(pb, 4, nbits - 2); /* 16 bits precision */
    if (dx == 0) {
      put_bits(pb, 1, 0); 
      put_bits(pb, 1, 1); 
      put_bits(pb, nbits, dy & mask);
    } else if (dy == 0) {
      put_bits(pb, 1, 0); 
      put_bits(pb, 1, 0); 
      put_bits(pb, nbits, dx & mask);
    } else {
      put_bits(pb, 1, 1); 
      put_bits(pb, nbits, dx & mask);
      put_bits(pb, nbits, dy & mask);
    }
}

#define FRAC_BITS 16

262
/* put matrix */
Fabrice Bellard's avatar
Fabrice Bellard committed
263 264 265 266
static void put_swf_matrix(ByteIOContext *pb,
                           int a, int b, int c, int d, int tx, int ty)
{
    PutBitContext p;
267
    uint8_t buf[256];
268
    int nbits;
Fabrice Bellard's avatar
Fabrice Bellard committed
269

Alex Beregszaszi's avatar
Alex Beregszaszi committed
270
    init_put_bits(&p, buf, sizeof(buf));
Fabrice Bellard's avatar
Fabrice Bellard committed
271 272
    
    put_bits(&p, 1, 1); /* a, d present */
273 274 275 276 277 278
    nbits = 1;
    max_nbits(&nbits, a);
    max_nbits(&nbits, d);
    put_bits(&p, 5, nbits); /* nb bits */
    put_bits(&p, nbits, a);
    put_bits(&p, nbits, d);
Fabrice Bellard's avatar
Fabrice Bellard committed
279 280
    
    put_bits(&p, 1, 1); /* b, c present */
281 282 283 284 285 286 287 288 289 290 291 292 293
    nbits = 1;
    max_nbits(&nbits, c);
    max_nbits(&nbits, b);
    put_bits(&p, 5, nbits); /* nb bits */
    put_bits(&p, nbits, c);
    put_bits(&p, nbits, b);

    nbits = 1;
    max_nbits(&nbits, tx);
    max_nbits(&nbits, ty);
    put_bits(&p, 5, nbits); /* nb bits */
    put_bits(&p, nbits, tx);
    put_bits(&p, nbits, ty);
Fabrice Bellard's avatar
Fabrice Bellard committed
294 295

    flush_put_bits(&p);
296
    put_buffer(pb, buf, pbBufPtr(&p) - p.buf);
Fabrice Bellard's avatar
Fabrice Bellard committed
297 298
}

299
/* */
Fabrice Bellard's avatar
Fabrice Bellard committed
300 301 302 303 304 305
static int swf_write_header(AVFormatContext *s)
{
    SWFContext *swf;
    ByteIOContext *pb = &s->pb;
    AVCodecContext *enc, *audio_enc, *video_enc;
    PutBitContext p;
306
    uint8_t buf1[256];
307
    int i, width, height, rate, rate_base;
Fabrice Bellard's avatar
Fabrice Bellard committed
308

309
    swf = av_malloc(sizeof(SWFContext));
Fabrice Bellard's avatar
Fabrice Bellard committed
310 311 312 313
    if (!swf)
        return -1;
    s->priv_data = swf;

314 315 316 317 318 319 320 321 322 323
    swf->ch_id = -1;
    swf->audio_in_pos = 0;
    swf->audio_out_pos = 0;
    swf->audio_size = 0;
    swf->audio_fifo = av_malloc(AUDIO_FIFO_SIZE);
    swf->sound_samples = 0;
    swf->video_samples = 0;
    swf->swf_frame_number = 0;
    swf->video_frame_number = 0;

Fabrice Bellard's avatar
Fabrice Bellard committed
324 325 326
    video_enc = NULL;
    audio_enc = NULL;
    for(i=0;i<s->nb_streams;i++) {
327
        enc = s->streams[i]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
328 329
        if (enc->codec_type == CODEC_TYPE_AUDIO)
            audio_enc = enc;
330 331 332 333
        else {
            if ( enc->codec_id == CODEC_ID_FLV1 || enc->codec_id == CODEC_ID_MJPEG ) {
                video_enc = enc;
            } else {
334
                av_log(enc, AV_LOG_ERROR, "SWF only supports FLV1 and MJPEG\n");
335 336 337
                return -1;
            }
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
338 339 340 341
    }

    if (!video_enc) {
        /* currenty, cannot work correctly if audio only */
342
        swf->video_type = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
343 344
        width = 320;
        height = 200;
345 346
        rate = 10;
        rate_base= 1;
Fabrice Bellard's avatar
Fabrice Bellard committed
347
    } else {
348
        swf->video_type = video_enc->codec_id;
Fabrice Bellard's avatar
Fabrice Bellard committed
349 350
        width = video_enc->width;
        height = video_enc->height;
351 352
        rate = video_enc->time_base.den;
        rate_base = video_enc->time_base.num;
Fabrice Bellard's avatar
Fabrice Bellard committed
353 354
    }

355 356 357 358 359 360 361 362
    if (!audio_enc ) {
        swf->audio_type = 0;
        swf->samples_per_frame = ( 44100. * rate_base ) / rate;
    } else {
        swf->audio_type = audio_enc->codec_id;
        swf->samples_per_frame = ( ( audio_enc->sample_rate ) * rate_base ) / rate;
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
363
    put_tag(pb, "FWS");
364 365 366 367 368
    if ( video_enc && video_enc->codec_id == CODEC_ID_FLV1 ) {
        put_byte(pb, 6); /* version (version 6 and above support FLV1 codec) */
    } else {
        put_byte(pb, 4); /* version (should use 4 for mpeg audio support) */
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
369 370 371
    put_le32(pb, DUMMY_FILE_SIZE); /* dummy size 
                                      (will be patched if not streamed) */ 

372
    put_swf_rect(pb, 0, width * 20, 0, height * 20);
373
    put_le16(pb, (rate * 256) / rate_base); /* frame rate */
Fabrice Bellard's avatar
Fabrice Bellard committed
374
    swf->duration_pos = url_ftell(pb);
375
    put_le16(pb, (uint16_t)(DUMMY_DURATION * (int64_t)rate / rate_base)); /* frame count */
Fabrice Bellard's avatar
Fabrice Bellard committed
376 377
    
    /* define a shape with the jpeg inside */
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
    if ( video_enc && video_enc->codec_id == CODEC_ID_FLV1 ) {
    } else if ( video_enc && video_enc->codec_id == CODEC_ID_MJPEG ) {
        put_swf_tag(s, TAG_DEFINESHAPE);

        put_le16(pb, SHAPE_ID); /* ID of shape */
        /* bounding rectangle */
        put_swf_rect(pb, 0, width, 0, height);
        /* style info */
        put_byte(pb, 1); /* one fill style */
        put_byte(pb, 0x41); /* clipped bitmap fill */
        put_le16(pb, BITMAP_ID); /* bitmap ID */
        /* position of the bitmap */
        put_swf_matrix(pb, (int)(1.0 * (1 << FRAC_BITS)), 0, 
                        0, (int)(1.0 * (1 << FRAC_BITS)), 0, 0);
        put_byte(pb, 0); /* no line style */
Fabrice Bellard's avatar
Fabrice Bellard committed
393
    
394 395 396 397 398 399 400 401 402 403 404
        /* shape drawing */
        init_put_bits(&p, buf1, sizeof(buf1));
        put_bits(&p, 4, 1); /* one fill bit */
        put_bits(&p, 4, 0); /* zero line bit */
     
        put_bits(&p, 1, 0); /* not an edge */
        put_bits(&p, 5, FLAG_MOVETO | FLAG_SETFILL0);
        put_bits(&p, 5, 1); /* nbits */
        put_bits(&p, 1, 0); /* X */
        put_bits(&p, 1, 0); /* Y */
        put_bits(&p, 1, 1); /* set fill style 1 */
Fabrice Bellard's avatar
Fabrice Bellard committed
405
    
406 407 408 409 410
        /* draw the rectangle ! */
        put_swf_line_edge(&p, width, 0);
        put_swf_line_edge(&p, 0, height);
        put_swf_line_edge(&p, -width, 0);
        put_swf_line_edge(&p, 0, -height);
Fabrice Bellard's avatar
Fabrice Bellard committed
411
    
412 413 414
        /* end of shape */
        put_bits(&p, 1, 0); /* not an edge */
        put_bits(&p, 5, 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
415

416 417
        flush_put_bits(&p);
        put_buffer(pb, buf1, pbBufPtr(&p) - p.buf);
Fabrice Bellard's avatar
Fabrice Bellard committed
418

419 420
        put_swf_end_tag(s);
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
421
    
422
    if (audio_enc && audio_enc->codec_id == CODEC_ID_MP3 ) {
Fabrice Bellard's avatar
Fabrice Bellard committed
423 424 425
        int v;

        /* start sound */
426
        put_swf_tag(s, TAG_STREAMHEAD2);
Fabrice Bellard's avatar
Fabrice Bellard committed
427 428 429 430 431 432 433 434 435 436 437 438 439 440

        v = 0;
        switch(audio_enc->sample_rate) {
        case 11025:
            v |= 1 << 2;
            break;
        case 22050:
            v |= 2 << 2;
            break;
        case 44100:
            v |= 3 << 2;
            break;
        default:
            /* not supported */
441
            av_free(swf->audio_fifo);
442
            av_free(swf);
Fabrice Bellard's avatar
Fabrice Bellard committed
443 444
            return -1;
        }
445
        v |= 0x02; /* 16 bit playback */
Fabrice Bellard's avatar
Fabrice Bellard committed
446
        if (audio_enc->channels == 2)
447 448
            v |= 0x01; /* stereo playback */
        put_byte(&s->pb, v);
Fabrice Bellard's avatar
Fabrice Bellard committed
449 450
        v |= 0x20; /* mp3 compressed */
        put_byte(&s->pb, v);
451 452
        put_le16(&s->pb, swf->samples_per_frame);  /* avg samples per frame */
        put_le16(&s->pb, 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
453 454 455 456 457 458 459 460 461
        
        put_swf_end_tag(s);
    }

    put_flush_packet(&s->pb);
    return 0;
}

static int swf_write_video(AVFormatContext *s, 
462
                           AVCodecContext *enc, const uint8_t *buf, int size)
Fabrice Bellard's avatar
Fabrice Bellard committed
463
{
464
    SWFContext *swf = s->priv_data;
Fabrice Bellard's avatar
Fabrice Bellard committed
465
    ByteIOContext *pb = &s->pb;
466 467 468 469 470
    int c = 0;
    int outSize = 0;
    int outSamples = 0;
    
    /* Flash Player limit */
471
    if ( swf->swf_frame_number == 16000 ) {
472
        av_log(enc, AV_LOG_INFO, "warning: Flash Player limit of 16000 frames reached\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
473 474
    }

475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
    if ( swf->audio_type ) {
        /* Prescan audio data for this swf frame */
retry_swf_audio_packet:
        if ( ( swf->audio_size-outSize ) >= 4 ) {
            int mp3FrameSize = 0;
            int mp3SampleRate = 0;
            int mp3IsMono = 0;
            int mp3SamplesPerFrame = 0;
            
            /* copy out mp3 header from ring buffer */
            uint8_t header[4];
            for (c=0; c<4; c++) {
                header[c] = swf->audio_fifo[(swf->audio_in_pos+outSize+c) % AUDIO_FIFO_SIZE];
            }
            
            if ( swf_mp3_info(header,&mp3FrameSize,&mp3SamplesPerFrame,&mp3SampleRate,&mp3IsMono) ) {
                if ( ( swf->audio_size-outSize ) >= mp3FrameSize ) {
                    outSize += mp3FrameSize;
                    outSamples += mp3SamplesPerFrame;
                    if ( ( swf->sound_samples + outSamples + swf->samples_per_frame ) < swf->video_samples ) {
                        goto retry_swf_audio_packet;
                    }
                }
            } else {
                /* invalid mp3 data, skip forward
                we need to do this since the Flash Player 
                does not like custom headers */
                swf->audio_in_pos ++;
                swf->audio_size --;
                swf->audio_in_pos %= AUDIO_FIFO_SIZE;
                goto retry_swf_audio_packet;
            }
        }
        
        /* audio stream is behind video stream, bail */
        if ( ( swf->sound_samples + outSamples + swf->samples_per_frame ) < swf->video_samples ) {
            return 0;
        }
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
514

515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
            if ( swf->video_type == CODEC_ID_FLV1 ) {
                if ( swf->video_frame_number == 0 ) {
                    /* create a new video object */
                    put_swf_tag(s, TAG_VIDEOSTREAM);
                    put_le16(pb, VIDEO_ID);
                    put_le16(pb, 15000 ); /* hard flash player limit */
                    put_le16(pb, enc->width);
                    put_le16(pb, enc->height);
                    put_byte(pb, 0);
                    put_byte(pb, SWF_VIDEO_CODEC_FLV1);
                    put_swf_end_tag(s);
                    
                    /* place the video object for the first time */
                    put_swf_tag(s, TAG_PLACEOBJECT2);
                    put_byte(pb, 0x36);
                    put_le16(pb, 1);
                    put_le16(pb, VIDEO_ID);
                    put_swf_matrix(pb, 1 << FRAC_BITS, 0, 0, 1 << FRAC_BITS, 0, 0);
                    put_le16(pb, swf->video_frame_number );
                    put_byte(pb, 'v');
                    put_byte(pb, 'i');
                    put_byte(pb, 'd');
                    put_byte(pb, 'e');
                    put_byte(pb, 'o');
                    put_byte(pb, 0x00);
                    put_swf_end_tag(s);
                } else {
                    /* mark the character for update */
                    put_swf_tag(s, TAG_PLACEOBJECT2);
                    put_byte(pb, 0x11);
                    put_le16(pb, 1);
                    put_le16(pb, swf->video_frame_number );
                    put_swf_end_tag(s);
                }
    
                    /* set video frame data */
                    put_swf_tag(s, TAG_VIDEOFRAME | TAG_LONG);
                    put_le16(pb, VIDEO_ID); 
                    put_le16(pb, swf->video_frame_number++ );
Michael Niedermayer's avatar
Michael Niedermayer committed
554
                    put_buffer(pb, buf, size);
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
                    put_swf_end_tag(s);
            } else if ( swf->video_type == CODEC_ID_MJPEG ) {
                if (swf->swf_frame_number > 0) {
                    /* remove the shape */
                    put_swf_tag(s, TAG_REMOVEOBJECT);
                    put_le16(pb, SHAPE_ID); /* shape ID */
                    put_le16(pb, 1); /* depth */
                    put_swf_end_tag(s);
                
                    /* free the bitmap */
                    put_swf_tag(s, TAG_FREECHARACTER);
                    put_le16(pb, BITMAP_ID);
                    put_swf_end_tag(s);
                }
        
                put_swf_tag(s, TAG_JPEG2 | TAG_LONG);
        
                put_le16(pb, BITMAP_ID); /* ID of the image */
        
                /* a dummy jpeg header seems to be required */
                put_byte(pb, 0xff); 
                put_byte(pb, 0xd8);
                put_byte(pb, 0xff);
                put_byte(pb, 0xd9);
                /* write the jpeg image */
Michael Niedermayer's avatar
Michael Niedermayer committed
580
                put_buffer(pb, buf, size);
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
        
                put_swf_end_tag(s);
        
                /* draw the shape */
        
                put_swf_tag(s, TAG_PLACEOBJECT);
                put_le16(pb, SHAPE_ID); /* shape ID */
                put_le16(pb, 1); /* depth */
                put_swf_matrix(pb, 20 << FRAC_BITS, 0, 0, 20 << FRAC_BITS, 0, 0);
                put_swf_end_tag(s);
            } else {
                /* invalid codec */
            }
    
            swf->swf_frame_number ++;
Fabrice Bellard's avatar
Fabrice Bellard committed
596

597
    swf->video_samples += swf->samples_per_frame;
Fabrice Bellard's avatar
Fabrice Bellard committed
598

599 600 601 602 603 604 605 606 607
    /* streaming sound always should be placed just before showframe tags */
    if ( outSize > 0 ) {
        put_swf_tag(s, TAG_STREAMBLOCK | TAG_LONG);
        put_le16(pb, outSamples);
        put_le16(pb, 0);
        for (c=0; c<outSize; c++) {
            put_byte(pb,swf->audio_fifo[(swf->audio_in_pos+c) % AUDIO_FIFO_SIZE]);
        }
        put_swf_end_tag(s);
Fabrice Bellard's avatar
Fabrice Bellard committed
608
    
609 610 611 612 613 614 615
        /* update FIFO */
        swf->sound_samples += outSamples;
        swf->audio_in_pos += outSize;
        swf->audio_size -= outSize;
        swf->audio_in_pos %= AUDIO_FIFO_SIZE;
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
616 617 618 619 620
    /* output the frame */
    put_swf_tag(s, TAG_SHOWFRAME);
    put_swf_end_tag(s);
    
    put_flush_packet(&s->pb);
621
    
Fabrice Bellard's avatar
Fabrice Bellard committed
622 623 624
    return 0;
}

625 626
static int swf_write_audio(AVFormatContext *s, 
                           AVCodecContext *enc, const uint8_t *buf, int size)
Fabrice Bellard's avatar
Fabrice Bellard committed
627
{
628 629
    SWFContext *swf = s->priv_data;
    int c = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
630

631
    /* Flash Player limit */
632
    if ( swf->swf_frame_number == 16000 ) {
633
        av_log(enc, AV_LOG_INFO, "warning: Flash Player limit of 16000 frames reached\n");
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
    }

    if (enc->codec_id == CODEC_ID_MP3 ) {
        for (c=0; c<size; c++) {
            swf->audio_fifo[(swf->audio_out_pos+c)%AUDIO_FIFO_SIZE] = buf[c];
        }
        swf->audio_size += size;
        swf->audio_out_pos += size;
        swf->audio_out_pos %= AUDIO_FIFO_SIZE;
    }

    /* if audio only stream make sure we add swf frames */
    if ( swf->video_type == 0 ) {
        swf_write_video(s, enc, 0, 0);
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
649 650 651 652

    return 0;
}

653
static int swf_write_packet(AVFormatContext *s, AVPacket *pkt)
Fabrice Bellard's avatar
Fabrice Bellard committed
654
{
655
    AVCodecContext *codec = s->streams[pkt->stream_index]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
656
    if (codec->codec_type == CODEC_TYPE_AUDIO)
657
        return swf_write_audio(s, codec, pkt->data, pkt->size);
Fabrice Bellard's avatar
Fabrice Bellard committed
658
    else
659
        return swf_write_video(s, codec, pkt->data, pkt->size);
Fabrice Bellard's avatar
Fabrice Bellard committed
660 661 662 663 664 665 666 667 668 669 670
}

static int swf_write_trailer(AVFormatContext *s)
{
    SWFContext *swf = s->priv_data;
    ByteIOContext *pb = &s->pb;
    AVCodecContext *enc, *video_enc;
    int file_size, i;

    video_enc = NULL;
    for(i=0;i<s->nb_streams;i++) {
671
        enc = s->streams[i]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
        if (enc->codec_type == CODEC_TYPE_VIDEO)
            video_enc = enc;
    }

    put_swf_tag(s, TAG_END);
    put_swf_end_tag(s);
    
    put_flush_packet(&s->pb);

    /* patch file size and number of frames if not streamed */
    if (!url_is_streamed(&s->pb) && video_enc) {
        file_size = url_ftell(pb);
        url_fseek(pb, 4, SEEK_SET);
        put_le32(pb, file_size);
        url_fseek(pb, swf->duration_pos, SEEK_SET);
        put_le16(pb, video_enc->frame_number);
    }
689 690 691
    
    av_free(swf->audio_fifo);

Fabrice Bellard's avatar
Fabrice Bellard committed
692 693
    return 0;
}
694
#endif //CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
695

696 697 698 699 700 701
/*********************************************/
/* Extract FLV encoded frame and MP3 from swf
   Note that the detection of the real frame
   is inaccurate at this point as it can be
   quite tricky to determine, you almost certainly 
   will get a bad audio/video sync */
Fabrice Bellard's avatar
Fabrice Bellard committed
702 703 704 705 706 707 708 709 710 711 712 713 714 715

static int get_swf_tag(ByteIOContext *pb, int *len_ptr)
{
    int tag, len;
    
    if (url_feof(pb))
        return -1;

    tag = get_le16(pb);
    len = tag & 0x3f;
    tag = tag >> 6;
    if (len == 0x3f) {
        len = get_le32(pb);
    }
716
//    av_log(NULL, AV_LOG_DEBUG, "Tag: %d - Len: %d\n", tag, len);
Fabrice Bellard's avatar
Fabrice Bellard committed
717 718 719 720
    *len_ptr = len;
    return tag;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
721 722 723 724 725 726

static int swf_probe(AVProbeData *p)
{
    /* check file header */
    if (p->buf_size <= 16)
        return 0;
727
    if ((p->buf[0] == 'F' || p->buf[0] == 'C') && p->buf[1] == 'W' &&
728
        p->buf[2] == 'S')
Fabrice Bellard's avatar
Fabrice Bellard committed
729 730 731 732 733
        return AVPROBE_SCORE_MAX;
    else
        return 0;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
734 735
static int swf_read_header(AVFormatContext *s, AVFormatParameters *ap)
{
736
    SWFContext *swf = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
737 738
    ByteIOContext *pb = &s->pb;
    int nbits, len, frame_rate, tag, v;
739 740 741 742 743 744 745 746
    offset_t firstTagOff;
    AVStream *ast = 0;
    AVStream *vst = 0;

    swf = av_malloc(sizeof(SWFContext));
    if (!swf)
        return -1;
    s->priv_data = swf;
Fabrice Bellard's avatar
Fabrice Bellard committed
747

748 749 750 751 752 753 754 755
    tag = get_be32(pb) & 0xffffff00;

    if (tag == MKBETAG('C', 'W', 'S', 0))
    {
	av_log(s, AV_LOG_ERROR, "Compressed SWF format not supported\n");
        return AVERROR_IO;
    }
    if (tag != MKBETAG('F', 'W', 'S', 0))
756
        return AVERROR_IO;
Fabrice Bellard's avatar
Fabrice Bellard committed
757 758 759 760 761 762 763
    get_le32(pb);
    /* skip rectangle size */
    nbits = get_byte(pb) >> 3;
    len = (4 * nbits - 3 + 7) / 8;
    url_fskip(pb, len);
    frame_rate = get_le16(pb);
    get_le16(pb); /* frame count */
764 765 766 767 768 769 770 771 772
    
    /* The Flash Player converts 8.8 frame rates 
       to milliseconds internally. Do the same to get 
       a correct framerate */
    swf->ms_per_frame = ( 1000 * 256 ) / frame_rate;
    swf->samples_per_frame = 0;
    swf->ch_id = -1;

    firstTagOff = url_ftell(pb);
Fabrice Bellard's avatar
Fabrice Bellard committed
773 774 775
    for(;;) {
        tag = get_swf_tag(pb, &len);
        if (tag < 0) {
776 777
            if ( ast || vst ) {
                if ( vst && ast ) {
778 779
                    vst->codec->time_base.den = ast->codec->sample_rate / swf->samples_per_frame;
                    vst->codec->time_base.num = 1;
780 781 782
                }
                break;
            }
783
            av_log(s, AV_LOG_ERROR, "No media found in SWF\n");
784
            return AVERROR_IO;
Fabrice Bellard's avatar
Fabrice Bellard committed
785
        }
786 787 788 789 790 791 792 793 794
        if ( tag == TAG_VIDEOSTREAM && !vst) {
            swf->ch_id = get_le16(pb);
            get_le16(pb);
            get_le16(pb);
            get_le16(pb);
            get_byte(pb);
            /* Check for FLV1 */
            if ( get_byte(pb) == SWF_VIDEO_CODEC_FLV1 ) {
                vst = av_new_stream(s, 0);
795 796
                av_set_pts_info(vst, 24, 1, 1000); /* 24 bit pts in ms */
    
797 798
                vst->codec->codec_type = CODEC_TYPE_VIDEO;
                vst->codec->codec_id = CODEC_ID_FLV1;
799
                if ( swf->samples_per_frame ) {
800 801
                    vst->codec->time_base.den = 1000. / swf->ms_per_frame;
                    vst->codec->time_base.num = 1;
802 803 804
                }
            }
        } else if ( ( tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2 ) && !ast) {
Fabrice Bellard's avatar
Fabrice Bellard committed
805 806 807
            /* streaming found */
            get_byte(pb);
            v = get_byte(pb);
808
            swf->samples_per_frame = get_le16(pb);
809 810
            if (len!=4)
                url_fskip(pb,len-4);
Fabrice Bellard's avatar
Fabrice Bellard committed
811 812
            /* if mp3 streaming found, OK */
            if ((v & 0x20) != 0) {
813 814 815 816
                if ( tag == TAG_STREAMHEAD2 ) {
                    get_le16(pb);
                }
                ast = av_new_stream(s, 1);
817
                av_set_pts_info(ast, 24, 1, 1000); /* 24 bit pts in ms */
818
                if (!ast)
Fabrice Bellard's avatar
Fabrice Bellard committed
819
                    return -ENOMEM;
Michael Niedermayer's avatar
Michael Niedermayer committed
820

Fabrice Bellard's avatar
Fabrice Bellard committed
821
                if (v & 0x01)
822
                    ast->codec->channels = 2;
Fabrice Bellard's avatar
Fabrice Bellard committed
823
                else
824
                    ast->codec->channels = 1;
Fabrice Bellard's avatar
Fabrice Bellard committed
825 826 827

                switch((v>> 2) & 0x03) {
                case 1:
828
                    ast->codec->sample_rate = 11025;
Fabrice Bellard's avatar
Fabrice Bellard committed
829 830
                    break;
                case 2:
831
                    ast->codec->sample_rate = 22050;
Fabrice Bellard's avatar
Fabrice Bellard committed
832 833
                    break;
                case 3:
834
                    ast->codec->sample_rate = 44100;
Fabrice Bellard's avatar
Fabrice Bellard committed
835 836
                    break;
                default:
837
                    av_free(ast);
838
                    return AVERROR_IO;
Fabrice Bellard's avatar
Fabrice Bellard committed
839
                }
840 841
                ast->codec->codec_type = CODEC_TYPE_AUDIO;
                ast->codec->codec_id = CODEC_ID_MP3;
Fabrice Bellard's avatar
Fabrice Bellard committed
842 843 844 845 846
            }
        } else {
            url_fskip(pb, len);
        }
    }
847 848
    url_fseek(pb, firstTagOff, SEEK_SET);
    
Fabrice Bellard's avatar
Fabrice Bellard committed
849 850 851 852 853
    return 0;
}

static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
{
854
    SWFContext *swf = s->priv_data;
Fabrice Bellard's avatar
Fabrice Bellard committed
855
    ByteIOContext *pb = &s->pb;
856 857
    AVStream *st = 0;
    int tag, len, i, frame;
Fabrice Bellard's avatar
Fabrice Bellard committed
858 859 860 861
    
    for(;;) {
        tag = get_swf_tag(pb, &len);
        if (tag < 0) 
862
            return AVERROR_IO;
863 864 865 866 867 868
        if (tag == TAG_VIDEOFRAME) {
            for( i=0; i<s->nb_streams; i++ ) {
        	st = s->streams[i];
                if (st->id == 0) {
                    if ( get_le16(pb) == swf->ch_id ) {
                        frame = get_le16(pb);
Michael Niedermayer's avatar
Michael Niedermayer committed
869
                        av_get_packet(pb, pkt, len-4);
870 871 872 873 874 875 876 877 878 879 880 881 882 883
                        pkt->pts = frame * swf->ms_per_frame;
                        pkt->stream_index = st->index;
                        return pkt->size;
                    } else {
                        url_fskip(pb, len-2);
                        continue;
                    }
                }
            }    
            url_fskip(pb, len);
        } else if (tag == TAG_STREAMBLOCK) {
            for( i=0; i<s->nb_streams; i++ ) {
        	st = s->streams[i];
                if (st->id == 1) {
Michael Niedermayer's avatar
Michael Niedermayer committed
884
                    av_get_packet(pb, pkt, len);
885 886 887 888 889
                    pkt->stream_index = st->index;
                    return pkt->size;
                }
            }
            url_fskip(pb, len);
Fabrice Bellard's avatar
Fabrice Bellard committed
890 891 892 893 894 895 896 897 898 899 900 901
        } else {
            url_fskip(pb, len);
        }
    }
    return 0;
}

static int swf_read_close(AVFormatContext *s)
{
     return 0;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
902 903 904
static AVInputFormat swf_iformat = {
    "swf",
    "Flash format",
905
    sizeof(SWFContext),
Fabrice Bellard's avatar
Fabrice Bellard committed
906 907 908 909 910 911
    swf_probe,
    swf_read_header,
    swf_read_packet,
    swf_read_close,
};

912
#ifdef CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
913
static AVOutputFormat swf_oformat = {
Fabrice Bellard's avatar
Fabrice Bellard committed
914 915 916 917
    "swf",
    "Flash format",
    "application/x-shockwave-flash",
    "swf",
Fabrice Bellard's avatar
Fabrice Bellard committed
918
    sizeof(SWFContext),
919 920
    CODEC_ID_MP3,
    CODEC_ID_FLV1,
Fabrice Bellard's avatar
Fabrice Bellard committed
921 922 923 924
    swf_write_header,
    swf_write_packet,
    swf_write_trailer,
};
925
#endif //CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
926 927 928 929

int swf_init(void)
{
    av_register_input_format(&swf_iformat);
930
#ifdef CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
931
    av_register_output_format(&swf_oformat);
932
#endif //CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
933 934
    return 0;
}