summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-08-12 12:53:12 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-08-12 20:07:18 +0000
commit4ed6e5999226f9061f546108c5be72fe6f21a775 (patch)
treee716af08ec232c8d01b526d7b88c5ed502cd6a77 /toxav/rtp.h
parent767ccbb387a462c9bc21aaf22d2c3d3358c147b8 (diff)
Fix enumerator names to comply with toxcore naming standards.
Diffstat (limited to 'toxav/rtp.h')
-rw-r--r--toxav/rtp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h
index d7fc5560..e1cf7950 100644
--- a/toxav/rtp.h
+++ b/toxav/rtp.h
@@ -46,8 +46,8 @@ extern "C" {
46 * Payload type identifier. Also used as rtp callback prefix. 46 * Payload type identifier. Also used as rtp callback prefix.
47 */ 47 */
48enum { 48enum {
49 rtp_TypeAudio = 192, 49 RTP_TYPE_AUDIO = 192,
50 rtp_TypeVideo = 193, 50 RTP_TYPE_VIDEO = 193,
51}; 51};
52 52
53/** 53/**