FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Enumerations | Functions | Variables
msvideo1enc.c File Reference

Microsoft Video-1 encoder. More...

#include "avcodec.h"
#include "internal.h"
#include "bytestream.h"
#include "libavutil/lfg.h"
#include "elbg.h"
#include "libavutil/imgutils.h"

Go to the source code of this file.

Data Structures

struct  Msvideo1EncContext
 Encoder context. More...
 

Macros

#define SKIP_PREFIX   0x8400
 
#define SKIPS_MAX   0x03FF
 
#define MKRGB555(in, off)   (((in)[off] << 10) | ((in)[(off) + 1] << 5) | ((in)[(off) + 2]))
 

Enumerations

enum  MSV1Mode { MODE_SKIP = 0, MODE_FILL, MODE_2COL, MODE_8COL }
 

Functions

static int encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
 
static av_cold int encode_init (AVCodecContext *avctx)
 init encoder More...
 
static av_cold int encode_end (AVCodecContext *avctx)
 Uninit encoder. More...
 

Variables

static const int remap [16] = { 0, 1, 4, 5, 2, 3, 6, 7, 8, 9, 12, 13, 10, 11, 14, 15 }
 
AVCodec ff_msvideo1_encoder
 

Detailed Description

Microsoft Video-1 encoder.

Definition in file msvideo1enc.c.

Macro Definition Documentation

#define SKIP_PREFIX   0x8400

Definition at line 59 of file msvideo1enc.c.

Referenced by encode_frame().

#define SKIPS_MAX   0x03FF

Definition at line 60 of file msvideo1enc.c.

Referenced by encode_frame().

#define MKRGB555 (   in,
  off 
)    (((in)[off] << 10) | ((in)[(off) + 1] << 5) | ((in)[(off) + 2]))

Definition at line 61 of file msvideo1enc.c.

Referenced by encode_frame().

Enumeration Type Documentation

enum MSV1Mode
Enumerator
MODE_SKIP 
MODE_FILL 
MODE_2COL 
MODE_8COL 

Definition at line 52 of file msvideo1enc.c.

Function Documentation

static int encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame pict,
int *  got_packet 
)
static

Definition at line 65 of file msvideo1enc.c.

static av_cold int encode_init ( AVCodecContext avctx)
static

init encoder

Definition at line 260 of file msvideo1enc.c.

static av_cold int encode_end ( AVCodecContext avctx)
static

Uninit encoder.

Definition at line 286 of file msvideo1enc.c.

Variable Documentation

const int remap[16] = { 0, 1, 4, 5, 2, 3, 6, 7, 8, 9, 12, 13, 10, 11, 14, 15 }
static

Definition at line 63 of file msvideo1enc.c.

Referenced by avfilter_register_all(), dv_calc_mb_coordinates(), and encode_frame().

AVCodec ff_msvideo1_encoder
Initial value:
= {
.name = "msvideo1",
.long_name = NULL_IF_CONFIG_SMALL("Microsoft Video-1"),
.priv_data_size = sizeof(Msvideo1EncContext),
.encode2 = encode_frame,
.close = encode_end,
}
static av_cold int encode_init(AVCodecContext *avctx)
init encoder
Definition: msvideo1enc.c:260
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition: msvideo1enc.c:65
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static av_cold int encode_end(AVCodecContext *avctx)
Uninit encoder.
Definition: msvideo1enc.c:286
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:329
Encoder context.
Definition: msvideo1enc.c:36
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60

Definition at line 295 of file msvideo1enc.c.