Go to the source code of this file.
◆ SDS_3BYTE_TO_INT_DECODE
| #define SDS_3BYTE_TO_INT_DECODE |
( |
| x | ) |
|
Value:(((x) & 0x7F) | (((x) & 0x7F00) >> 1) | (((x) & 0x7F0000) >> 2))
Definition at line 77 of file sdsdec.c.
Referenced by sds_read_header().
◆ sds_probe()
◆ byte2_read()
| static void byte2_read |
( |
const uint8_t * | src, |
|
|
uint32_t * | dst ) |
|
static |
◆ byte3_read()
| static void byte3_read |
( |
const uint8_t * | src, |
|
|
uint32_t * | dst ) |
|
static |
◆ byte4_read()
| static void byte4_read |
( |
const uint8_t * | src, |
|
|
uint32_t * | dst ) |
|
static |
◆ sds_read_header()
◆ sds_read_packet()
◆ ff_sds_demuxer
Initial value:= {
.p.name = "sds",
.p.extensions = "sds",
}
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
static int read_probe(const AVProbeData *p)
static int read_header(FFV1Context *f, RangeCoder *c)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static int sds_probe(const AVProbeData *p)
static int sds_read_header(AVFormatContext *ctx)
static int sds_read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition at line 157 of file sdsdec.c.