#include <string.h>
#include "avcodec.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "decode.h"
Go to the source code of this file.
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.
◆ CPAIR
Definition at line 38 of file smc.c.
◆ CQUAD
Definition at line 39 of file smc.c.
◆ COCTET
Definition at line 40 of file smc.c.
◆ COLORS_PER_TABLE
#define COLORS_PER_TABLE 256 |
Definition at line 42 of file smc.c.
◆ GET_BLOCK_COUNT
#define GET_BLOCK_COUNT |
( |
| ) |
(opcode & 0x10) ? (1 + bytestream2_get_byte(gb)) : 1 + (opcode & 0x0F); |
Definition at line 57 of file smc.c.
◆ ADVANCE_BLOCK
#define ADVANCE_BLOCK |
( |
| ) |
|
Value:{ \
pixel_ptr += 4; \
if (pixel_ptr >=
width) \
{ \
pixel_ptr = 0; \
} \
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 60 of file smc.c.
◆ smc_decode_stream()
◆ smc_decode_init()
◆ smc_decode_frame()
◆ smc_decode_end()
◆ ff_smc_decoder
Initial value:
Definition at line 464 of file smc.c.