#include <stdarg.h>
#include <QtCore/QMetaType>
#include <QtCore/QByteArray>
#include <QtCore/qglobal.h>
#include <QtAV/dptr.h>
Go to the source code of this file.
|
| QtAV |
| AudioOutput ao; ao.setAudioFormat(fmt); ao.open(); while (has_data) { data = read_data(ao->bufferSize()); ao->play(data, pts); } ao->close(); See QtAV/tests/ao/main.cpp for detail.
|
|
|
enum | QtAV::LogLevel {
QtAV::LogOff,
QtAV::LogDebug,
QtAV::LogWarning,
QtAV::LogCritical,
QtAV::LogFatal,
QtAV::LogAll
} |
|
enum | QtAV::MediaStatus {
QtAV::UnknownMediaStatus,
QtAV::NoMedia,
QtAV::LoadingMedia,
QtAV::LoadedMedia,
QtAV::StalledMedia,
QtAV::BufferingMedia,
QtAV::BufferedMedia,
QtAV::EndOfMedia,
QtAV::InvalidMedia
} |
|
enum | QtAV::BufferMode { QtAV::BufferTime,
QtAV::BufferBytes,
QtAV::BufferPackets
} |
|
enum | QtAV::MediaEndActionFlag { QtAV::MediaEndAction_Default,
QtAV::MediaEndAction_KeepDisplay = 1,
QtAV::MediaEndAction_Pause = 1 << 1
} |
|
enum | QtAV::SeekUnit { QtAV::SeekByTime,
QtAV::SeekByByte,
QtAV::SeekByFrame
} |
|
enum | QtAV::SeekType { QtAV::AccurateSeek,
QtAV::KeyFrameSeek,
QtAV::AnyFrameSeek
} |
|
enum | QtAV::ColorSpace {
QtAV::ColorSpace_Unknown,
QtAV::ColorSpace_RGB,
QtAV::ColorSpace_GBR,
QtAV::ColorSpace_BT601,
QtAV::ColorSpace_BT709
} |
|
enum | QtAV::ColorRange { QtAV::ColorRange_Unknown,
QtAV::ColorRange_Limited,
QtAV::ColorRange_Full
} |
| The ColorRange enum YUV or RGB color range. More...
|
|
enum | QtAV::SurfaceType { QtAV::HostMemorySurface,
QtAV::GLTextureSurface,
QtAV::SourceSurface,
QtAV::UserSurface = 0xffff
} |
| The SurfaceType enum HostMemorySurface: Map the decoded frame to host memory GLTextureSurface: Map the decoded frame as an OpenGL texture SourceSurface: get the original surface from decoder, for example VASurfaceID for va-api, CUdeviceptr for CUDA and IDirect3DSurface9* for DXVA. More...
|
|
#define Q_AV_EXPORT Q_DECL_IMPORT |
#define QByteArrayLiteral |
( |
|
str | ) |
QByteArray(str, sizeof(str) - 1) |
#define QTAV_DEPRECATED Q_DECL_DEPRECATED |
#define QTAV_HAVE |
( |
|
FEATURE | ) |
(defined QTAV_HAVE_##FEATURE && QTAV_HAVE_##FEATURE) |