|
FFmpeg
|
QT RLE Video Decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information about the QT RLE format, visit: http://www.pcisys.net/~melanson/codecs/. More...
#include <string.h>#include "avcodec.h"#include "decode.h"#include "bytestream.h"#include "codec_internal.h"#include "libavutil/attributes.h"Go to the source code of this file.
Data Structures | |
| struct | QtrleContext |
Macros | |
| #define | CHECK_PIXEL_PTR(n) |
Functions | |
| static void | qtrle_decode_1bpp (QtrleContext *s, int row_ptr, int lines_to_change) |
| static void | qtrle_decode_2n4bpp (QtrleContext *s, int row_ptr, int lines_to_change, int bpp) |
| static void | qtrle_decode_8bpp (QtrleContext *s, int row_ptr, int lines_to_change) |
| static void | qtrle_decode_16bpp (QtrleContext *s, int row_ptr, int lines_to_change) |
| static void | qtrle_decode_24bpp (QtrleContext *s, int row_ptr, int lines_to_change) |
| static void | qtrle_decode_32bpp (QtrleContext *s, int row_ptr, int lines_to_change) |
| static av_cold int | qtrle_decode_init (AVCodecContext *avctx) |
| static int | qtrle_decode_frame (AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt) |
| static av_cold void | qtrle_decode_flush (AVCodecContext *avctx) |
| static av_cold int | qtrle_decode_end (AVCodecContext *avctx) |
Variables | |
| const FFCodec | ff_qtrle_decoder |
QT RLE Video Decoder by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information about the QT RLE format, visit: http://www.pcisys.net/~melanson/codecs/.
The QT RLE decoder has seven modes of operation: 1, 2, 4, 8, 16, 24, and 32 bits per pixel. For modes 1, 2, 4, and 8 the decoder outputs PAL8 colorspace data. 16-bit data yields RGB555 data. 24-bit data is RGB24 and 32-bit data is RGB32.
Definition in file qtrle.c.
| #define CHECK_PIXEL_PTR | ( | n | ) |
Definition at line 51 of file qtrle.c.
Referenced by qtrle_decode_16bpp(), qtrle_decode_1bpp(), qtrle_decode_24bpp(), qtrle_decode_2n4bpp(), qtrle_decode_32bpp(), and qtrle_decode_8bpp().
|
static |
Definition at line 58 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
inlinestatic |
Definition at line 143 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
static |
Definition at line 202 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
static |
Definition at line 253 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
static |
Definition at line 299 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
static |
Definition at line 355 of file qtrle.c.
Referenced by qtrle_decode_frame().
|
static |
|
static |
|
static |
|
static |
| const FFCodec ff_qtrle_decoder |