1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-02 09:36:45 +02:00

Began conversion of audio code to new ToxAV API

This commit is contained in:
cnhenry
2015-06-12 10:50:26 -05:00
parent 6e90072fb8
commit 3241551cfb
17 changed files with 3805 additions and 297 deletions

View File

@ -36,10 +36,10 @@ typedef enum _VideoError {
} VideoError;
/* You will have to pass pointer to first member of 'windows' declared in windows.c */
ToxAv *init_video(ToxWindow *self, Tox *tox, ToxAv *av);
ToxAV *init_video(ToxWindow *self, Tox *tox, ToxAV *av);
void terminate_video();
int start_video_transmission(ToxWindow *self, Call *call);
int stop_video_transmission(Call *call, int call_index);
int stop_video_transmission(Call *call, int friend_number);
void stop_current_video_call(ToxWindow *self);
#endif /* VIDEO_H */