FFmpeg
|
#include "libavutil/attributes.h"
#include "libavutil/buffer.h"
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "bytestream.h"
#include "get_bits.h"
#include "internal.h"
#include "thread.h"
#include "cfhd.h"
Go to the source code of this file.
Macros | |
#define | ALPHA_COMPAND_DC_OFFSET 256 |
#define | ALPHA_COMPAND_GAIN 9400 |
Enumerations | |
enum | CFHDParam { ChannelCount = 12, SubbandCount = 14, ImageWidth = 20, ImageHeight = 21, LowpassPrecision = 35, SubbandNumber = 48, Quantization = 53, ChannelNumber = 62, SampleFlags = 68, BitsPerComponent = 101, ChannelWidth = 104, ChannelHeight = 105, PrescaleShift = 109 } |
Functions | |
static av_cold int | cfhd_init (AVCodecContext *avctx) |
static void | init_plane_defaults (CFHDContext *s) |
static void | init_peak_table_defaults (CFHDContext *s) |
static void | init_frame_defaults (CFHDContext *s) |
static int | dequant_and_decompand (int level, int quantisation, int codebook) |
static void | difference_coding (int16_t *band, int width, int height) |
static void | peak_table (int16_t *band, Peak *peak, int length) |
static void | process_alpha (int16_t *alpha, int width) |
static void | filter (int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip) |
static void | interlaced_vertical_filter (int16_t *output, int16_t *low, int16_t *high, int width, int linesize, int plane) |
static void | horiz_filter (int16_t *output, int16_t *low, int16_t *high, int width) |
static void | horiz_filter_clip (int16_t *output, int16_t *low, int16_t *high, int width, int clip) |
static void | vert_filter (int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len) |
static void | free_buffers (CFHDContext *s) |
static int | alloc_buffers (AVCodecContext *avctx) |
static int | cfhd_decode (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | cfhd_close (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_cfhd_decoder |
Cineform HD video decoder
Definition in file cfhd.c.
enum CFHDParam |
|
static |
|
static |
Definition at line 71 of file cfhd.c.
Referenced by cfhd_decode(), and init_frame_defaults().
|
static |
Definition at line 78 of file cfhd.c.
Referenced by init_frame_defaults().
|
static |
Definition at line 85 of file cfhd.c.
Referenced by cfhd_decode().
Definition at line 106 of file cfhd.c.
Referenced by cfhd_decode().
Definition at line 119 of file cfhd.c.
Referenced by cfhd_decode().
Definition at line 131 of file cfhd.c.
Referenced by cfhd_decode().
|
inlinestatic |
Definition at line 139 of file cfhd.c.
Referenced by cfhd_decode().
|
inlinestatic |
Definition at line 153 of file cfhd.c.
Referenced by horiz_filter(), horiz_filter_clip(), and vert_filter().
|
inlinestatic |
Definition at line 196 of file cfhd.c.
Referenced by cfhd_decode().
|
static |
Definition at line 208 of file cfhd.c.
Referenced by cfhd_decode().
|
static |
Definition at line 214 of file cfhd.c.
Referenced by cfhd_decode().
|
static |
Definition at line 220 of file cfhd.c.
Referenced by cfhd_decode().
|
static |
Definition at line 227 of file cfhd.c.
Referenced by cfhd_close(), and cfhd_decode().
|
static |
Definition at line 245 of file cfhd.c.
Referenced by cfhd_decode().
|
static |
|
static |
AVCodec ff_cfhd_decoder |