FFmpeg
Classes | Typedefs | Variables
flashsvenc.c File Reference

Flash Screen Video encoder. More...

#include <stdio.h>
#include <stdlib.h>
#include <zlib.h>
#include "avcodec.h"
#include "internal.h"
#include "put_bits.h"
#include "bytestream.h"

Classes

struct  FlashSVContext
 

Typedefs

typedef struct FlashSVContext FlashSVContext
 

Variables

AVCodec ff_flashsv_encoder
 

Detailed Description

Flash Screen Video encoder.

Author
Alex Beregszaszi
Benjamin Larsson

A description of the bitstream format for Flash Screen Video version 1/2 is part of the SWF File Format Specification (version 10), which can be downloaded from http://www.adobe.com/devnet/swf.html.

Variable Documentation

§ ff_flashsv_encoder

AVCodec ff_flashsv_encoder
Initial value:
= {
.name = "flashsv",
.long_name = NULL_IF_CONFIG_SMALL("Flash Screen Video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_FLASHSV,
.priv_data_size = sizeof(FlashSVContext),
.init = flashsv_encode_init,
.encode2 = flashsv_encode_frame,
.close = flashsv_encode_end,
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_BGR24, AV_PIX_FMT_NONE },
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:65
Definition: flashsv.c:51
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60