#include "libavutil/channel_layout.h"#include "libavutil/intreadwrite.h"#include "libavutil/intfloat.h"#include "avformat.h"#include "internal.h"#include "riff.h"Go to the source code of this file.
Data Structures | |
| struct | NUVContext |
Macros | |
| #define | PKTSIZE(s) (s & 0xffffff) |
| little macro to sanitize packet size More... | |
| #define | HDRSIZE 12 |
Enumerations | |
| enum | nuv_frametype { NUV_VIDEO = 'V', NUV_EXTRADATA = 'D', NUV_AUDIO = 'A', NUV_SEEKP = 'R', NUV_MYTHEXT = 'X' } |
Functions | |
| static int | nuv_probe (AVProbeData *p) |
| static int | get_codec_data (AVIOContext *pb, AVStream *vst, AVStream *ast, int myth) |
| read until we found all data needed for decoding More... | |
| static int | nuv_header (AVFormatContext *s) |
| static int | nuv_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| static const AVCodecTag | nuv_audio_tags [] |
| AVInputFormat | ff_nuv_demuxer |
| #define HDRSIZE 12 |
Definition at line 232 of file nuv.c.
Referenced by nuv_packet().
| #define PKTSIZE | ( | s) | (s & 0xffffff) |
little macro to sanitize packet size
Definition at line 59 of file nuv.c.
Referenced by get_codec_data(), and nuv_packet().
| enum nuv_frametype |
|
static |
read until we found all data needed for decoding
| vst | video stream of which to change parameters |
| ast | video stream of which to change parameters |
| myth | set if this is a MythTVVideo format file |
Definition at line 68 of file nuv.c.
Referenced by nuv_header().
|
static |
|
static |
|
static |
| AVInputFormat ff_nuv_demuxer |
|
static |