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

Microsoft Video-1 Decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information about the MS Video-1 format, visit: http://www.pcisys.net/~melanson/codecs/. More...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  Msvideo1Context
 

Macros

#define PALETTE_COUNT   256
 
#define CHECK_STREAM_PTR(n)
 

Functions

static av_cold int msvideo1_decode_init (AVCodecContext *avctx)
 
static void msvideo1_decode_8bit (Msvideo1Context *s)
 
static void msvideo1_decode_16bit (Msvideo1Context *s)
 
static int msvideo1_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int msvideo1_decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_msvideo1_decoder
 

Detailed Description

Microsoft Video-1 Decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information about the MS Video-1 format, visit: http://www.pcisys.net/~melanson/codecs/.

Definition in file msvideo1.c.

Macro Definition Documentation

#define PALETTE_COUNT   256

Definition at line 38 of file msvideo1.c.

#define CHECK_STREAM_PTR (   n)
Value:
if ((stream_ptr + n) > s->size ) { \
av_log(s->avctx, AV_LOG_ERROR, " MS Video-1 warning: stream_ptr out of bounds (%d >= %d)\n", \
stream_ptr + n, s->size); \
}
const char * s
Definition: avisynth_c.h:768
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
return
int n
Definition: avisynth_c.h:684

Definition at line 39 of file msvideo1.c.

Referenced by msvideo1_decode_16bit(), and msvideo1_decode_8bit().

Function Documentation

static av_cold int msvideo1_decode_init ( AVCodecContext avctx)
static

Definition at line 59 of file msvideo1.c.

static void msvideo1_decode_8bit ( Msvideo1Context s)
static

Definition at line 83 of file msvideo1.c.

Referenced by msvideo1_decode_frame().

static void msvideo1_decode_16bit ( Msvideo1Context s)
static

Definition at line 183 of file msvideo1.c.

Referenced by msvideo1_decode_frame().

static int msvideo1_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 292 of file msvideo1.c.

static av_cold int msvideo1_decode_end ( AVCodecContext avctx)
static

Definition at line 330 of file msvideo1.c.

Variable Documentation

AVCodec ff_msvideo1_decoder
Initial value:
= {
.name = "msvideo1",
.long_name = NULL_IF_CONFIG_SMALL("Microsoft Video 1"),
.priv_data_size = sizeof(Msvideo1Context),
.capabilities = AV_CODEC_CAP_DR1,
}
static int msvideo1_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: msvideo1.c:292
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int msvideo1_decode_end(AVCodecContext *avctx)
Definition: msvideo1.c:330
#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 msvideo1_decode_init(AVCodecContext *avctx)
Definition: msvideo1.c:59
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: ffmpeg.c:2035
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959

Definition at line 339 of file msvideo1.c.