Add audio support

This commit is contained in:
Cameron Gutman
2014-02-02 05:34:12 -05:00
parent ac6412f4be
commit 30f275768c
6 changed files with 237 additions and 5 deletions
+6 -1
View File
@@ -27,4 +27,9 @@ void queueRtpPacket(PRTP_PACKET rtpPacket, int length);
void initializeVideoStream(IP_ADDRESS host, PSTREAM_CONFIGURATION streamConfig, PDECODER_RENDERER_CALLBACKS drCallbacks);
void destroyVideoStream(void);
int startVideoStream(void* rendererContext, int drFlags);
void stopVideoStream(void);
void stopVideoStream(void);
void initializeAudioStream(IP_ADDRESS host, PAUDIO_RENDERER_CALLBACKS arCallbacks);
void destroyAudioStream(void);
int startAudioStream(void);
void stopAudioStream(void);