Files
FFmpeg/libavformat/swfenc.c
T

531 lines
15 KiB
C
Raw Normal View History

2001-07-22 14:18:56 +00:00
/*
2008-05-26 03:56:43 +00:00
* Flash Compatible Streaming Format muxer
2002-05-25 22:33:18 +00:00
* Copyright (c) 2000 Fabrice Bellard.
2004-02-06 23:56:37 +00:00
* Copyright (c) 2003 Tinic Uro.
2001-07-22 14:18:56 +00:00
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
2002-05-25 22:33:18 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2001-07-22 14:18:56 +00:00
*
* FFmpeg is distributed in the hope that it will be useful,
2001-07-22 14:18:56 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2002-05-25 22:33:18 +00:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2001-07-22 14:18:56 +00:00
*
2002-05-25 22:33:18 +00:00
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2001-07-22 14:18:56 +00:00
*/
#include "libavcodec/bitstream.h"
2001-07-22 14:18:56 +00:00
#include "avformat.h"
2008-05-20 23:31:10 +00:00
#include "swf.h"
2001-07-22 14:18:56 +00:00
static void put_swf_tag(AVFormatContext *s, int tag)
{
SWFContext *swf = s->priv_data;
ByteIOContext *pb = s->pb;
2001-07-22 14:18:56 +00:00
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;
2001-08-13 21:37:10 +00:00
offset_t pos;
2001-07-22 14:18:56 +00:00
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;
}
2005-12-17 18:14:38 +00:00
static void put_swf_rect(ByteIOContext *pb,
2001-07-22 14:18:56 +00:00
int xmin, int xmax, int ymin, int ymax)
{
PutBitContext p;
2003-02-11 16:35:48 +00:00
uint8_t buf[256];
2001-07-22 14:18:56 +00:00
int nbits, mask;
2003-10-13 10:59:57 +00:00
init_put_bits(&p, buf, sizeof(buf));
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
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);
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
flush_put_bits(&p);
put_buffer(pb, buf, pbBufPtr(&p) - p.buf);
2001-07-22 14:18:56 +00:00
}
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) {
2007-08-05 01:36:31 +00:00
put_bits(pb, 1, 0);
put_bits(pb, 1, 1);
put_bits(pb, nbits, dy & mask);
2001-07-22 14:18:56 +00:00
} else if (dy == 0) {
2007-08-05 01:36:31 +00:00
put_bits(pb, 1, 0);
put_bits(pb, 1, 0);
put_bits(pb, nbits, dx & mask);
2001-07-22 14:18:56 +00:00
} else {
2007-08-05 01:36:31 +00:00
put_bits(pb, 1, 1);
put_bits(pb, nbits, dx & mask);
put_bits(pb, nbits, dy & mask);
2001-07-22 14:18:56 +00:00
}
}
#define FRAC_BITS 16
static void put_swf_matrix(ByteIOContext *pb,
int a, int b, int c, int d, int tx, int ty)
{
PutBitContext p;
2003-02-11 16:35:48 +00:00
uint8_t buf[256];
2004-02-06 23:56:37 +00:00
int nbits;
2001-07-22 14:18:56 +00:00
2003-10-13 10:59:57 +00:00
init_put_bits(&p, buf, sizeof(buf));
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
put_bits(&p, 1, 1); /* a, d present */
2004-02-06 23:56:37 +00:00
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);
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
put_bits(&p, 1, 1); /* b, c present */
2004-02-06 23:56:37 +00:00
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);
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
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);
2001-07-22 14:18:56 +00:00
flush_put_bits(&p);
put_buffer(pb, buf, pbBufPtr(&p) - p.buf);
2001-07-22 14:18:56 +00:00
}
static int swf_write_header(AVFormatContext *s)
{
2007-01-08 12:33:16 +00:00
SWFContext *swf = s->priv_data;
ByteIOContext *pb = s->pb;
2001-07-22 14:18:56 +00:00
PutBitContext p;
2003-02-11 16:35:48 +00:00
uint8_t buf1[256];
int i, width, height, rate, rate_base;
2008-05-27 03:11:31 +00:00
int version;
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
swf->sound_samples = 0;
swf->swf_frame_number = 0;
swf->video_frame_number = 0;
2001-07-22 14:18:56 +00:00
for(i=0;i<s->nb_streams;i++) {
AVCodecContext *enc = s->streams[i]->codec;
2007-03-04 22:30:25 +00:00
if (enc->codec_type == CODEC_TYPE_AUDIO) {
if (enc->codec_id == CODEC_ID_MP3) {
if (!enc->frame_size) {
av_log(s, AV_LOG_ERROR, "audio frame size not set\n");
return -1;
}
swf->audio_enc = enc;
2008-05-27 04:33:48 +00:00
av_fifo_init(&swf->audio_fifo, AUDIO_FIFO_SIZE);
2007-03-04 22:30:25 +00:00
} else {
2007-03-05 10:07:42 +00:00
av_log(s, AV_LOG_ERROR, "SWF muxer only supports MP3\n");
2007-03-04 22:30:25 +00:00
return -1;
}
} else {
2007-08-05 01:40:07 +00:00
if (enc->codec_id == CODEC_ID_VP6F ||
enc->codec_id == CODEC_ID_FLV1 ||
enc->codec_id == CODEC_ID_MJPEG) {
swf->video_enc = enc;
2004-02-06 23:56:37 +00:00
} else {
2007-03-05 10:07:42 +00:00
av_log(s, AV_LOG_ERROR, "SWF muxer only supports VP6, FLV1 and MJPEG\n");
2004-02-06 23:56:37 +00:00
return -1;
}
}
2001-07-22 14:18:56 +00:00
}
if (!swf->video_enc) {
2007-07-28 12:46:26 +00:00
/* currently, cannot work correctly if audio only */
2001-07-22 14:18:56 +00:00
width = 320;
height = 200;
rate = 10;
rate_base= 1;
2001-07-22 14:18:56 +00:00
} else {
width = swf->video_enc->width;
height = swf->video_enc->height;
rate = swf->video_enc->time_base.den;
rate_base = swf->video_enc->time_base.num;
2001-07-22 14:18:56 +00:00
}
if (!swf->audio_enc)
2007-08-05 01:40:07 +00:00
swf->samples_per_frame = (44100. * rate_base) / rate;
else
swf->samples_per_frame = (swf->audio_enc->sample_rate * rate_base) / rate;
2004-02-06 23:56:37 +00:00
2001-07-22 14:18:56 +00:00
put_tag(pb, "FWS");
2008-05-27 03:11:31 +00:00
if (!strcmp("avm2", s->oformat->name))
version = 9;
else if (swf->video_enc && swf->video_enc->codec_id == CODEC_ID_VP6F)
2008-05-27 03:11:31 +00:00
version = 8; /* version 8 and above support VP6 codec */
else if (swf->video_enc && swf->video_enc->codec_id == CODEC_ID_FLV1)
2008-05-27 03:11:31 +00:00
version = 6; /* version 6 and above support FLV1 codec */
2008-05-27 02:55:34 +00:00
else
2008-05-27 03:11:31 +00:00
version = 4; /* version 4 for mpeg audio support */
put_byte(pb, version);
2005-12-17 18:14:38 +00:00
put_le32(pb, DUMMY_FILE_SIZE); /* dummy size
(will be patched if not streamed) */
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
put_swf_rect(pb, 0, width * 20, 0, height * 20);
put_le16(pb, (rate * 256) / rate_base); /* frame rate */
2001-07-22 14:18:56 +00:00
swf->duration_pos = url_ftell(pb);
put_le16(pb, (uint16_t)(DUMMY_DURATION * (int64_t)rate / rate_base)); /* frame count */
2005-12-17 18:14:38 +00:00
/* avm2/swf v9 (also v8?) files require a file attribute tag */
2008-05-27 03:11:31 +00:00
if (version == 9) {
put_swf_tag(s, TAG_FILEATTRIBUTES);
put_le32(pb, 1<<3); /* set ActionScript v3/AVM2 flag */
put_swf_end_tag(s);
}
2001-07-22 14:18:56 +00:00
/* define a shape with the jpeg inside */
if (swf->video_enc && swf->video_enc->codec_id == CODEC_ID_MJPEG) {
2004-02-06 23:56:37 +00:00
put_swf_tag(s, TAG_DEFINESHAPE);
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
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 */
2005-12-17 18:14:38 +00:00
put_swf_matrix(pb, (int)(1.0 * (1 << FRAC_BITS)), 0,
2007-08-05 01:36:31 +00:00
0, (int)(1.0 * (1 << FRAC_BITS)), 0, 0);
2004-02-06 23:56:37 +00:00
put_byte(pb, 0); /* no line style */
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
/* 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 */
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
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 */
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
/* 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);
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
/* end of shape */
put_bits(&p, 1, 0); /* not an edge */
put_bits(&p, 5, 0);
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
flush_put_bits(&p);
put_buffer(pb, buf1, pbBufPtr(&p) - p.buf);
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
put_swf_end_tag(s);
}
2005-12-17 18:14:38 +00:00
if (swf->audio_enc && swf->audio_enc->codec_id == CODEC_ID_MP3) {
2008-05-27 03:41:51 +00:00
int v = 0;
2001-07-22 14:18:56 +00:00
/* start sound */
2004-02-06 23:56:37 +00:00
put_swf_tag(s, TAG_STREAMHEAD2);
switch(swf->audio_enc->sample_rate) {
2008-05-27 03:42:55 +00:00
case 11025: v |= 1 << 2; break;
case 22050: v |= 2 << 2; break;
case 44100: v |= 3 << 2; break;
2001-07-22 14:18:56 +00:00
default:
/* not supported */
2007-06-12 09:29:25 +00:00
av_log(s, AV_LOG_ERROR, "swf does not support that sample rate, choose from (44100, 22050, 11025).\n");
2001-07-22 14:18:56 +00:00
return -1;
}
2004-02-06 23:56:37 +00:00
v |= 0x02; /* 16 bit playback */
if (swf->audio_enc->channels == 2)
2004-02-06 23:56:37 +00:00
v |= 0x01; /* stereo playback */
put_byte(s->pb, v);
2004-02-06 23:56:37 +00:00
v |= 0x20; /* mp3 compressed */
put_byte(s->pb, v);
put_le16(s->pb, swf->samples_per_frame); /* avg samples per frame */
put_le16(s->pb, 0);
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
put_swf_end_tag(s);
}
put_flush_packet(s->pb);
2001-07-22 14:18:56 +00:00
return 0;
}
2005-12-17 18:14:38 +00:00
static int swf_write_video(AVFormatContext *s,
2003-09-10 22:37:33 +00:00
AVCodecContext *enc, const uint8_t *buf, int size)
2001-07-22 14:18:56 +00:00
{
2004-02-06 23:56:37 +00:00
SWFContext *swf = s->priv_data;
ByteIOContext *pb = s->pb;
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
/* Flash Player limit */
2008-05-27 02:55:34 +00:00
if (swf->swf_frame_number == 16000)
av_log(enc, AV_LOG_INFO, "warning: Flash Player limit of 16000 frames reached\n");
2001-07-22 14:18:56 +00:00
if (enc->codec_id == CODEC_ID_VP6F ||
enc->codec_id == CODEC_ID_FLV1) {
2007-08-05 01:40:07 +00:00
if (swf->video_frame_number == 0) {
2007-08-05 01:36:31 +00:00
/* create a new video object */
put_swf_tag(s, TAG_VIDEOSTREAM);
put_le16(pb, VIDEO_ID);
2007-08-05 01:40:07 +00:00
put_le16(pb, 15000); /* hard flash player limit */
2007-08-05 01:36:31 +00:00
put_le16(pb, enc->width);
put_le16(pb, enc->height);
put_byte(pb, 0);
put_byte(pb,codec_get_tag(swf_codec_tags,enc->codec_id));
2007-08-05 01:36:31 +00:00
put_swf_end_tag(s);
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
/* 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);
2007-08-05 01:40:07 +00:00
put_le16(pb, swf->video_frame_number);
2008-05-27 02:57:48 +00:00
put_tag(pb, "video");
2007-08-05 01:36:31 +00:00
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);
2007-08-05 01:40:07 +00:00
put_le16(pb, swf->video_frame_number);
2007-08-05 01:36:31 +00:00
put_swf_end_tag(s);
}
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
/* set video frame data */
put_swf_tag(s, TAG_VIDEOFRAME | TAG_LONG);
put_le16(pb, VIDEO_ID);
2007-08-05 01:40:07 +00:00
put_le16(pb, swf->video_frame_number++);
2007-08-05 01:36:31 +00:00
put_buffer(pb, buf, size);
put_swf_end_tag(s);
} else if (enc->codec_id == CODEC_ID_MJPEG) {
2007-08-05 01:36:31 +00:00
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);
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
/* free the bitmap */
put_swf_tag(s, TAG_FREECHARACTER);
put_le16(pb, BITMAP_ID);
put_swf_end_tag(s);
}
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
put_swf_tag(s, TAG_JPEG2 | TAG_LONG);
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
put_le16(pb, BITMAP_ID); /* ID of the image */
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
/* a dummy jpeg header seems to be required */
2008-05-27 03:00:40 +00:00
put_be32(pb, 0xffd8ffd9);
2007-08-05 01:36:31 +00:00
/* write the jpeg image */
put_buffer(pb, buf, size);
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
put_swf_end_tag(s);
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
/* draw the shape */
2005-12-17 18:14:38 +00:00
2007-08-05 01:36:31 +00:00
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);
}
2005-12-17 18:14:38 +00:00
2008-05-27 22:34:31 +00:00
swf->swf_frame_number++;
2004-02-06 23:56:37 +00:00
/* streaming sound always should be placed just before showframe tags */
if (swf->audio_enc && av_fifo_size(&swf->audio_fifo)) {
2008-05-27 04:33:48 +00:00
int frame_size = av_fifo_size(&swf->audio_fifo);
2004-02-06 23:56:37 +00:00
put_swf_tag(s, TAG_STREAMBLOCK | TAG_LONG);
2007-03-04 22:30:25 +00:00
put_le16(pb, swf->sound_samples);
put_le16(pb, 0); // seek samples
2008-05-27 04:33:48 +00:00
av_fifo_generic_read(&swf->audio_fifo, frame_size, &put_buffer, pb);
2004-02-06 23:56:37 +00:00
put_swf_end_tag(s);
2005-12-17 18:14:38 +00:00
2004-02-06 23:56:37 +00:00
/* update FIFO */
2007-03-04 22:30:25 +00:00
swf->sound_samples = 0;
2004-02-06 23:56:37 +00:00
}
2001-07-22 14:18:56 +00:00
/* output the frame */
put_swf_tag(s, TAG_SHOWFRAME);
put_swf_end_tag(s);
2005-12-17 18:14:38 +00:00
put_flush_packet(s->pb);
2005-12-17 18:14:38 +00:00
2001-07-22 14:18:56 +00:00
return 0;
}
2005-12-17 18:14:38 +00:00
static int swf_write_audio(AVFormatContext *s,
2004-02-06 23:56:37 +00:00
AVCodecContext *enc, const uint8_t *buf, int size)
2001-07-22 14:18:56 +00:00
{
2004-02-06 23:56:37 +00:00
SWFContext *swf = s->priv_data;
2001-07-22 14:18:56 +00:00
2004-02-06 23:56:37 +00:00
/* Flash Player limit */
2008-05-27 02:55:34 +00:00
if (swf->swf_frame_number == 16000)
av_log(enc, AV_LOG_INFO, "warning: Flash Player limit of 16000 frames reached\n");
2004-02-06 23:56:37 +00:00
2008-05-27 04:33:48 +00:00
if (av_fifo_size(&swf->audio_fifo) + size > AUDIO_FIFO_SIZE) {
2007-03-04 22:30:25 +00:00
av_log(s, AV_LOG_ERROR, "audio fifo too small to mux audio essence\n");
return -1;
2004-02-06 23:56:37 +00:00
}
2008-05-27 04:33:48 +00:00
av_fifo_generic_write(&swf->audio_fifo, buf, size, NULL);
2007-03-04 22:30:25 +00:00
swf->sound_samples += enc->frame_size;
2004-02-06 23:56:37 +00:00
/* if audio only stream make sure we add swf frames */
if (!swf->video_enc)
2004-02-06 23:56:37 +00:00
swf_write_video(s, enc, 0, 0);
2001-07-22 14:18:56 +00:00
return 0;
}
2004-05-29 02:06:32 +00:00
static int swf_write_packet(AVFormatContext *s, AVPacket *pkt)
2001-07-22 14:18:56 +00:00
{
AVCodecContext *codec = s->streams[pkt->stream_index]->codec;
2001-07-22 14:18:56 +00:00
if (codec->codec_type == CODEC_TYPE_AUDIO)
2004-05-29 02:06:32 +00:00
return swf_write_audio(s, codec, pkt->data, pkt->size);
2001-07-22 14:18:56 +00:00
else
2004-05-29 02:06:32 +00:00
return swf_write_video(s, codec, pkt->data, pkt->size);
2001-07-22 14:18:56 +00:00
}
static int swf_write_trailer(AVFormatContext *s)
{
SWFContext *swf = s->priv_data;
ByteIOContext *pb = s->pb;
2001-07-22 14:18:56 +00:00
AVCodecContext *enc, *video_enc;
int file_size, i;
video_enc = NULL;
for(i=0;i<s->nb_streams;i++) {
enc = s->streams[i]->codec;
2001-07-22 14:18:56 +00:00
if (enc->codec_type == CODEC_TYPE_VIDEO)
video_enc = enc;
2008-05-27 04:33:48 +00:00
else
av_fifo_free(&swf->audio_fifo);
2001-07-22 14:18:56 +00:00
}
put_swf_tag(s, TAG_END);
put_swf_end_tag(s);
2005-12-17 18:14:38 +00:00
put_flush_packet(s->pb);
2001-07-22 14:18:56 +00:00
/* patch file size and number of frames if not streamed */
if (!url_is_streamed(s->pb) && video_enc) {
2001-07-22 14:18:56 +00:00
file_size = url_ftell(pb);
url_fseek(pb, 4, SEEK_SET);
put_le32(pb, file_size);
url_fseek(pb, swf->duration_pos, SEEK_SET);
2008-05-27 22:37:54 +00:00
put_le16(pb, swf->video_frame_number);
url_fseek(pb, file_size, SEEK_SET);
2001-07-22 14:18:56 +00:00
}
return 0;
}
#ifdef CONFIG_SWF_MUXER
AVOutputFormat swf_muxer = {
2001-07-22 14:18:56 +00:00
"swf",
NULL_IF_CONFIG_SMALL("Flash format"),
2001-07-22 14:18:56 +00:00
"application/x-shockwave-flash",
"swf",
2002-05-20 16:31:13 +00:00
sizeof(SWFContext),
2004-02-06 23:56:37 +00:00
CODEC_ID_MP3,
CODEC_ID_FLV1,
2001-07-22 14:18:56 +00:00
swf_write_header,
swf_write_packet,
swf_write_trailer,
};
#endif
#ifdef CONFIG_AVM2_MUXER
AVOutputFormat avm2_muxer = {
"avm2",
NULL_IF_CONFIG_SMALL("Flash 9 (AVM2) format"),
"application/x-shockwave-flash",
NULL,
sizeof(SWFContext),
CODEC_ID_MP3,
CODEC_ID_FLV1,
swf_write_header,
swf_write_packet,
swf_write_trailer,
};
#endif