FFmpeg
|
#include "avcodec.h"
#include "bswapdsp.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"
#include "raw.h"
#include "libavutil/avassert.h"
#include "libavutil/buffer.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
Go to the source code of this file.
Data Structures | |
struct | RawVideoContext |
Macros | |
#define | SCALE16(x, bits) (((x) << (16 - (bits))) | ((x) >> (2 * (bits) - 16))) |
#define | MKSCALE16(name, r16, w16) |
Scale buffer to 16 bits per coded sample resolution. More... | |
Functions | |
static av_cold int | raw_init_decoder (AVCodecContext *avctx) |
static void | flip (AVCodecContext *avctx, AVFrame *frame) |
static int | raw_decode (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) |
static av_cold int | raw_close_decoder (AVCodecContext *avctx) |
Variables | |
static const AVOption | options [] |
static const AVClass | rawdec_class |
const FFCodec | ff_rawvideo_decoder |
#define MKSCALE16 | ( | name, | |
r16, | |||
w16 | |||
) |
Scale buffer to 16 bits per coded sample resolution.
|
static |
|
static |
Definition at line 131 of file rawdec.c.
Referenced by av_display_matrix_flip(), config_input(), ff_oss_audio_open(), ff_vp56_init_context(), filter_frame(), fits_encode_frame(), get_video_buffer(), raw_decode(), tnput(), and vp6_decode_init_context().
|
static |
|
static |
|
static |
|
static |
const FFCodec ff_rawvideo_decoder |