FFmpeg
Data Structures | Macros | Functions | Variables
smc.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bytestream.h"
#include "decode.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  SmcContext
 

Macros

#define CPAIR   2
 
#define CQUAD   4
 
#define COCTET   8
 
#define COLORS_PER_TABLE   256
 
#define GET_BLOCK_COUNT()   (opcode & 0x10) ? (1 + bytestream2_get_byte(gb)) : 1 + (opcode & 0x0F);
 
#define ADVANCE_BLOCK()
 

Functions

static int smc_decode_stream (SmcContext *s)
 
static av_cold int smc_decode_init (AVCodecContext *avctx)
 
static int smc_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int smc_decode_end (AVCodecContext *avctx)
 

Variables

const AVCodec ff_smc_decoder
 

Detailed Description

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

The SMC decoder outputs PAL8 colorspace data.

Definition in file smc.c.

Macro Definition Documentation

◆ CPAIR

#define CPAIR   2

Definition at line 41 of file smc.c.

◆ CQUAD

#define CQUAD   4

Definition at line 42 of file smc.c.

◆ COCTET

#define COCTET   8

Definition at line 43 of file smc.c.

◆ COLORS_PER_TABLE

#define COLORS_PER_TABLE   256

Definition at line 45 of file smc.c.

◆ GET_BLOCK_COUNT

#define GET_BLOCK_COUNT ( )    (opcode & 0x10) ? (1 + bytestream2_get_byte(gb)) : 1 + (opcode & 0x0F);

Definition at line 62 of file smc.c.

◆ ADVANCE_BLOCK

#define ADVANCE_BLOCK ( )
Value:
{ \
pixel_ptr += 4; \
if (pixel_ptr >= width) \
{ \
pixel_ptr = 0; \
row_ptr += stride * 4; \
} \
total_blocks--; \
if (total_blocks < !!n_blocks) \
{ \
av_log(s->avctx, AV_LOG_ERROR, "block counter just went negative (this should not happen)\n"); \
} \
}

Definition at line 65 of file smc.c.

Function Documentation

◆ smc_decode_stream()

static int smc_decode_stream ( SmcContext s)
static

Definition at line 81 of file smc.c.

Referenced by smc_decode_frame().

◆ smc_decode_init()

static av_cold int smc_decode_init ( AVCodecContext avctx)
static

Definition at line 416 of file smc.c.

◆ smc_decode_frame()

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

Definition at line 430 of file smc.c.

◆ smc_decode_end()

static av_cold int smc_decode_end ( AVCodecContext avctx)
static

Definition at line 462 of file smc.c.

Variable Documentation

◆ ff_smc_decoder

const AVCodec ff_smc_decoder
Initial value:
= {
.name = "smc",
.long_name = NULL_IF_CONFIG_SMALL("QuickTime Graphics (SMC)"),
.priv_data_size = sizeof(SmcContext),
.close = smc_decode_end,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}

Definition at line 471 of file smc.c.

stride
int stride
Definition: mace.c:144
FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:42
SmcContext
Definition: smc.c:47
init
static int init
Definition: av_tx.c:47
smc_decode_init
static av_cold int smc_decode_init(AVCodecContext *avctx)
Definition: smc.c:416
AV_CODEC_ID_SMC
@ AV_CODEC_ID_SMC
Definition: codec_id.h:99
smc_decode_frame
static int smc_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: smc.c:430
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
width
#define width
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
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
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
smc_decode_end
static av_cold int smc_decode_end(AVCodecContext *avctx)
Definition: smc.c:462