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/.
More...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.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.
#define ADVANCE_BLOCK |
( |
| ) |
|
Value:{ \
{ \
pixel_ptr = 0; \
} \
av_log(
s->avctx,
AV_LOG_INFO,
"warning: block counter just went negative (this should not happen)\n");
\ } \
}
void av_log(void *avcl, int level, const char *fmt,...)
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame This method is called when a frame is wanted on an output For an it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return it should return
Definition at line 64 of file smc.c.
Referenced by smc_decode_stream().
#define COLORS_PER_TABLE 256 |
#define GET_BLOCK_COUNT |
( |
| ) |
(opcode & 0x10) ? (1 + bytestream2_get_byte(&s->gb)) : 1 + (opcode & 0x0F); |
Initial value:= {
.name = "smc",
}
static av_cold int smc_decode_init(AVCodecContext *avctx)
static av_cold int init(AVCodecContext *avctx)
static int smc_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static av_cold int smc_decode_end(AVCodecContext *avctx)
static void close(AVCodecParserContext *s)
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
struct SmcContext SmcContext
Definition at line 464 of file smc.c.