FFmpeg
|
#include <string.h>
#include <mpeghdec/mpeghdecoder.h>
#include "libavutil/channel_layout.h"
#include "libavutil/frame.h"
#include "libavutil/mem.h"
#include "codec_internal.h"
#include "decode.h"
Go to the source code of this file.
Data Structures | |
struct | MPEGH3DADecContext |
Macros | |
#define | MAX_LOST_FRAMES 2 |
#define | PER_CHANNEL_OUTBUF_SIZE (3072 * (MAX_LOST_FRAMES + 1)) |
#define | CH_LAYOUT_7POINT2POINT3 |
#define | CH_LAYOUT_5POINT1POINT6 |
#define | CH_LAYOUT_7POINT1POINT6 |
Functions | |
static av_cold int | mpegh3dadec_close (AVCodecContext *avctx) |
static av_cold int | channel_layout_to_cicp (const AVChannelLayout *layout) |
static av_cold int | mpegh3dadec_init (AVCodecContext *avctx) |
static int | mpegh3dadec_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt) |
static av_cold void | mpegh3dadec_flush (AVCodecContext *avctx) |
Variables | |
const FFCodec | ff_libmpeghdec_decoder |
#define MAX_LOST_FRAMES 2 |
Definition at line 42 of file libmpeghdec.c.
#define PER_CHANNEL_OUTBUF_SIZE (3072 * (MAX_LOST_FRAMES + 1)) |
Definition at line 44 of file libmpeghdec.c.
#define CH_LAYOUT_7POINT2POINT3 |
#define CH_LAYOUT_5POINT1POINT6 |
#define CH_LAYOUT_7POINT1POINT6 |
|
static |
Definition at line 55 of file libmpeghdec.c.
|
static |
Definition at line 69 of file libmpeghdec.c.
Referenced by mpegh3dadec_init().
|
static |
Definition at line 104 of file libmpeghdec.c.
|
static |
Definition at line 147 of file libmpeghdec.c.
|
static |
Definition at line 206 of file libmpeghdec.c.
const FFCodec ff_libmpeghdec_decoder |
Definition at line 217 of file libmpeghdec.c.