#include "libavutil/intmath.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "dsputil.h"
#include "snow_dwt.h"
#include "internal.h"
#include "snow.h"
#include "rangecoder.h"
#include "mathops.h"
#include "mpegvideo.h"
#include "h263.h"
#include <assert.h>
Go to the source code of this file.
|
static av_always_inline void | predict_slice_buffered (SnowContext *s, slice_buffer *sb, IDWTELEM *old_buffer, int plane_index, int add, int mb_y) |
|
static void | decode_subband_slice_buffered (SnowContext *s, SubBand *b, slice_buffer *sb, int start_y, int h, int save_state[1]) |
|
static int | decode_q_branch (SnowContext *s, int level, int x, int y) |
|
static void | dequantize_slice_buffered (SnowContext *s, slice_buffer *sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y) |
|
static void | correlate_slice_buffered (SnowContext *s, slice_buffer *sb, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median, int start_y, int end_y) |
|
static void | decode_qlogs (SnowContext *s) |
|
static int | decode_header (SnowContext *s) |
|
static av_cold int | decode_init (AVCodecContext *avctx) |
|
static int | decode_blocks (SnowContext *s) |
|
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
|
static av_cold int | decode_end (AVCodecContext *avctx) |
|
#define GET_S |
( |
|
dst, |
|
|
|
check |
|
) |
| |
static int decode_q_branch |
( |
SnowContext * |
s, |
|
|
int |
level, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
static |