#include "libavutil/fifo.h"
#include "avformat.h"
#include "avio.h"
#include "riff.h"
#include <assert.h>
Go to the source code of this file.
Data Structures | |
struct | SWFContext |
Defines | |
#define | DUMMY_FILE_SIZE (100 * 1024 * 1024) |
#define | DUMMY_DURATION 600 |
#define | TAG_END 0 |
#define | TAG_SHOWFRAME 1 |
#define | TAG_DEFINESHAPE 2 |
#define | TAG_FREECHARACTER 3 |
#define | TAG_PLACEOBJECT 4 |
#define | TAG_REMOVEOBJECT 5 |
#define | TAG_STREAMHEAD 18 |
#define | TAG_STREAMBLOCK 19 |
#define | TAG_JPEG2 21 |
#define | TAG_PLACEOBJECT2 26 |
#define | TAG_STREAMHEAD2 45 |
#define | TAG_VIDEOSTREAM 60 |
#define | TAG_VIDEOFRAME 61 |
#define | TAG_FILEATTRIBUTES 69 |
#define | TAG_LONG 0x100 |
#define | FLAG_MOVETO 0x01 |
#define | FLAG_SETFILL0 0x02 |
#define | FLAG_SETFILL1 0x04 |
#define | AUDIO_FIFO_SIZE 65536 |
#define | BITMAP_ID 0 |
#define | VIDEO_ID 0 |
#define | SHAPE_ID 1 |
Variables | |
static const AVCodecTag | swf_codec_tags [] |
static const AVCodecTag | swf_audio_codec_tags [] |
#define AUDIO_FIFO_SIZE 65536 |
#define BITMAP_ID 0 |
#define DUMMY_DURATION 600 |
#define DUMMY_FILE_SIZE (100 * 1024 * 1024) |
#define FLAG_MOVETO 0x01 |
#define FLAG_SETFILL0 0x02 |
#define SHAPE_ID 1 |
#define TAG_DEFINESHAPE 2 |
#define TAG_END 0 |
#define TAG_FILEATTRIBUTES 69 |
#define TAG_FREECHARACTER 3 |
#define TAG_JPEG2 21 |
#define TAG_LONG 0x100 |
Definition at line 50 of file swf.h.
Referenced by put_swf_end_tag(), put_swf_tag(), and swf_write_video().
#define TAG_PLACEOBJECT 4 |
#define TAG_PLACEOBJECT2 26 |
#define TAG_REMOVEOBJECT 5 |
#define TAG_SHOWFRAME 1 |
#define TAG_STREAMBLOCK 19 |
#define TAG_STREAMHEAD 18 |
#define TAG_STREAMHEAD2 45 |
#define TAG_VIDEOFRAME 61 |
#define TAG_VIDEOSTREAM 60 |
const AVCodecTag swf_audio_codec_tags[] [static] |
Initial value:
{ {CODEC_ID_PCM_S16LE, 0x00}, {CODEC_ID_ADPCM_SWF, 0x01}, {CODEC_ID_MP3, 0x02}, {CODEC_ID_PCM_S16LE, 0x03}, {CODEC_ID_NONE, 0}, }
Definition at line 87 of file swf.h.
Referenced by swf_read_packet().
const AVCodecTag swf_codec_tags[] [static] |
Initial value:
{ {CODEC_ID_FLV1, 0x02}, {CODEC_ID_VP6F, 0x04}, {CODEC_ID_NONE, 0}, }
Definition at line 81 of file swf.h.
Referenced by swf_read_packet(), and swf_write_video().