PonyPlayer
audioformat.hpp 文件参考
#include <QtCore>
#include <utility>
#include "portaudio.h"
#include "libavutil/samplefmt.h"

浏览源代码.

struct  AudioDataInfo
 
struct  PonySampleFormat
 
class  PonyAudioFormat
 

命名空间

namespace  PonyPlayer
 

变量

const PonySampleFormat PonyPlayer::Unknown = PonySampleFormat::of<void>(paNonInterleaved, AV_SAMPLE_FMT_NONE)
 
const PonySampleFormat PonyPlayer::UInt8 = PonySampleFormat::of<uint8_t>(paUInt8, AV_SAMPLE_FMT_U8)
 
const PonySampleFormat PonyPlayer::Int16 = PonySampleFormat::of<int16_t>(paInt16, AV_SAMPLE_FMT_S16)
 
const PonySampleFormat PonyPlayer::Int32 = PonySampleFormat::of<int32_t>(paInt32, AV_SAMPLE_FMT_S32)
 
const PonySampleFormat PonyPlayer::Float = PonySampleFormat::of<float_t>(paFloat32, AV_SAMPLE_FMT_FLT)
 
const PonyAudioFormat PonyPlayer::DEFAULT_AUDIO_FORMAT = {Int16, 44100, 2}