summaryrefslogtreecommitdiff
path: root/docs/av_api.md
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2017-08-22 21:49:48 +0300
committerRobin Lindén <dev@robinlinden.eu>2017-09-20 21:31:56 +0200
commit987ad5eac173442d6ad2d5cd80c2da763a815a9a (patch)
tree4a0c344d78f24c0fb0218557fd6c8b85fe4541ee /docs/av_api.md
parent9e43d678fb7e42526aa5ee2429efee4776dad69f (diff)
Fix typos in docs
Diffstat (limited to 'docs/av_api.md')
-rw-r--r--docs/av_api.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/av_api.md b/docs/av_api.md
index f94b0c5d..a087cdad 100644
--- a/docs/av_api.md
+++ b/docs/av_api.md
@@ -10,7 +10,7 @@ phone_t* initPhone(uint16_t _listen_port, uint16_t _send_port);
10 10
11function initializes sample phone. _listen_port and _send_port are variables only meant 11function initializes sample phone. _listen_port and _send_port are variables only meant
12for local testing. You will not have to do anything regarding to that since 12for local testing. You will not have to do anything regarding to that since
13everything will be started within a mesenger. 13everything will be started within a messenger.
14 14
15 15
16Phone requires one msi session and two rtp sessions ( one for audio and one for 16Phone requires one msi session and two rtp sessions ( one for audio and one for
@@ -78,7 +78,7 @@ Hangs up active call
78``` 78```
79int msi_answer ( msi_session_t* _session, call_type _call_type ); 79int msi_answer ( msi_session_t* _session, call_type _call_type );
80``` 80```
81Answer incomming call. _call_type set's callee call type. 81Answer incoming call. _call_type set's callee call type.
82 82
83``` 83```
84int msi_cancel ( msi_session_t* _session ); 84int msi_cancel ( msi_session_t* _session );
@@ -88,7 +88,7 @@ Cancel current request.
88``` 88```
89int msi_reject ( msi_session_t* _session ); 89int msi_reject ( msi_session_t* _session );
90``` 90```
91Reject incomming call. 91Reject incoming call.
92 92
93 93
94### Now for rtp: 94### Now for rtp:
@@ -169,7 +169,7 @@ void *encode_audio_thread(void *arg);
169``` 169```
170Spawns the audio encoding thread. The argument should hold a pointer to a codec_state. 170Spawns the audio encoding thread. The argument should hold a pointer to a codec_state.
171This function should only be called if audio encoding is supported (when init_send_audio returns 1). 171This function should only be called if audio encoding is supported (when init_send_audio returns 1).
172Audio frames are read from the selected audio capture device during intitialisation. This audio capturing can be rerouted to a different device on the fly. 172Audio frames are read from the selected audio capture device during initialisation. This audio capturing can be rerouted to a different device on the fly.
173Each audio frame is encoded into a packet, and sent via RTP. All audio frames have the same amount of samples, which is defined in AV_codec.h. 173Each audio frame is encoded into a packet, and sent via RTP. All audio frames have the same amount of samples, which is defined in AV_codec.h.
174``` 174```
175int video_decoder_refresh(codec_state *cs, int width, int height); 175int video_decoder_refresh(codec_state *cs, int width, int height);