AudioData.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
25 #pragma once
26 
27 #include "StreamData.h"
28 #include "AudioConfig.h"
29 #include "EdgeVisSDK.h"
30 
31 namespace EdgeVisDecoderSDK
32 {
33  class AudioDataImpl;
34 
35  class AudioData : public StreamData
36  {
37  public:
38  DB_EDGEVIS_SDK AudioData();
39  AudioData( std::weak_ptr<AudioDataImpl> pimpl );
40  DB_EDGEVIS_SDK AudioData( StreamData data );
41 
42  DB_EDGEVIS_SDK virtual ~AudioData();
43 
52  DB_EDGEVIS_SDK byte_array GetBuffer() const;
53 
62  DB_EDGEVIS_SDK short_array GetBufferShort() const;
63 
69  DB_EDGEVIS_SDK int32_t GetSize() const;
70 
76  DB_EDGEVIS_SDK int64_t GetTimeStamp() const;
77 
84  DB_EDGEVIS_SDK AudioConfig GetConfig() const;
85 
86  void SetBuffer( uint8_t* buffer, int32_t size );
87  void AssignBuffer( uint8_t* buffer, int32_t size );
88  void SetTimeStamp( int64_t timestamp );
89  void SetConfig( const AudioConfig& config );
90  };
91 }
DB_EDGEVIS_SDK int64_t GetTimeStamp() const
Gets the timestamp of the audio data.
DB_EDGEVIS_SDK short_array GetBufferShort() const
Gets audio samples for a frame.
DB_EDGEVIS_SDK int32_t GetSize() const
Gets the size of the audio buffer.
This is the base class for the StreamData objects.
Definition: StreamData.h:27
DB_EDGEVIS_SDK byte_array GetBuffer() const
Gets audio samples for a frame.
AudioData is delivered for every frame of audio decoded from a media stream.
Definition: AudioData.h:35
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK AudioConfig GetConfig() const
Gets the audio configuration information.