FFmpeg
Data Structures | Functions | Variables
frmdec.c File Reference
#include "libavcodec/raw.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"

Go to the source code of this file.

Data Structures

struct  FrmContext
 

Functions

static int frm_read_probe (const AVProbeData *p)
 
static int frm_read_header (AVFormatContext *avctx)
 
static int frm_read_packet (AVFormatContext *avctx, AVPacket *pkt)
 

Variables

static enum AVPixelFormat frm_pix_fmt_tags []
 
const AVInputFormat ff_frm_demuxer
 

Detailed Description

Megalux Frame demuxer

Definition in file frmdec.c.

Function Documentation

◆ frm_read_probe()

static int frm_read_probe ( const AVProbeData p)
static

Definition at line 44 of file frmdec.c.

◆ frm_read_header()

static int frm_read_header ( AVFormatContext avctx)
static

Definition at line 53 of file frmdec.c.

◆ frm_read_packet()

static int frm_read_packet ( AVFormatContext avctx,
AVPacket pkt 
)
static

Definition at line 77 of file frmdec.c.

Variable Documentation

◆ frm_pix_fmt_tags

enum AVPixelFormat frm_pix_fmt_tags[]
static
Initial value:

Definition at line 32 of file frmdec.c.

Referenced by frm_read_header().

◆ ff_frm_demuxer

const AVInputFormat ff_frm_demuxer
Initial value:
= {
.name = "frm",
.priv_data_size = sizeof(FrmContext),
.long_name = NULL_IF_CONFIG_SMALL("Megalux Frame"),
.read_probe = frm_read_probe,
.read_header = frm_read_header,
.read_packet = frm_read_packet,
}

Definition at line 106 of file frmdec.c.

FrmContext
Definition: frmdec.c:40
AV_PIX_FMT_BGRA
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:95
frm_read_probe
static int frm_read_probe(const AVProbeData *p)
Definition: frmdec.c:44
AV_PIX_FMT_BGR0
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:230
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:68
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_PIX_FMT_RGB0
@ AV_PIX_FMT_RGB0
packed RGB 8:8:8, 32bpp, RGBXRGBX... X=unused/undefined
Definition: pixfmt.h:228
AV_PIX_FMT_RGB555
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:392
frm_read_header
static int frm_read_header(AVFormatContext *avctx)
Definition: frmdec.c:53
frm_read_packet
static int frm_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: frmdec.c:77