Autodesk RLE Video Decoder by Konstantin Shishkov.
More...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "avcodec.h"
#include "dsputil.h"
#include "msrledec.h"
Go to the source code of this file.
Detailed Description
Autodesk RLE Video Decoder by Konstantin Shishkov.
Definition in file aasc.c.
Define Documentation
#define FETCH_NEXT_STREAM_BYTE |
( |
|
) |
|
Value:if (stream_ptr >= buf_size) \
{ \
av_log(s->avctx, AV_LOG_ERROR, " AASC: stream ptr just went out of bounds (fetch)\n"); \
break; \
} \
stream_byte = buf[stream_ptr++];
Definition at line 40 of file aasc.c.
Typedef Documentation
Function Documentation
static av_cold int aasc_decode_end |
( |
AVCodecContext * |
avctx |
) |
[static] |
static int aasc_decode_frame |
( |
AVCodecContext * |
avctx, |
|
|
void * |
data, |
|
|
int * |
data_size, |
|
|
AVPacket * |
avpkt | |
|
) |
| | [static] |
static av_cold int aasc_decode_init |
( |
AVCodecContext * |
avctx |
) |
[static] |
Variable Documentation
Initial value: {
"aasc",
AVMEDIA_TYPE_VIDEO,
CODEC_ID_AASC,
sizeof(AascContext),
aasc_decode_init,
NULL,
aasc_decode_end,
aasc_decode_frame,
CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Autodesk RLE"),
}
Definition at line 112 of file aasc.c.