FFmpeg
|
#include "avcodec.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "mjpegdec.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | SMVJpegDecodeContext |
Functions | |
static void | smv_img_pnt_plane (uint8_t **dst, uint8_t *src, int src_linesize, int height, int nlines) |
static void | smv_img_pnt (uint8_t *dst_data[4], uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height, int nlines) |
static av_cold int | smvjpeg_decode_end (AVCodecContext *avctx) |
static av_cold int | smvjpeg_decode_init (AVCodecContext *avctx) |
static int | smvjpeg_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
Variables | |
static const AVClass | smvjpegdec_class |
AVCodec | ff_smvjpeg_decoder |
SMV JPEG decoder.
Definition in file smvjpegdec.c.
|
inlinestatic |
Definition at line 42 of file smvjpegdec.c.
Referenced by smv_img_pnt().
|
inlinestatic |
Definition at line 51 of file smvjpegdec.c.
Referenced by smvjpeg_decode_frame().
|
static |
Definition at line 78 of file smvjpegdec.c.
Referenced by smvjpeg_decode_init().
|
static |
Definition at line 92 of file smvjpegdec.c.
|
static |
Definition at line 145 of file smvjpegdec.c.
|
static |
Definition at line 209 of file smvjpegdec.c.
AVCodec ff_smvjpeg_decoder |
Definition at line 215 of file smvjpegdec.c.