Add another known RTMP channel ID to enum.
authorSergiy <piratfm@gmail.com>
Wed, 2 Dec 2009 13:00:28 +0000 (13:00 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 2 Dec 2009 13:00:28 +0000 (13:00 +0000)
From patch by Sergiy (mail = piratfm, gmail)

Originally committed as revision 20703 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtmppkt.h

index f50996f..2c4f92b 100644 (file)
@@ -34,6 +34,7 @@
 enum RTMPChannel {
     RTMP_NETWORK_CHANNEL = 2,   ///< channel for network-related messages (bandwidth report, ping, etc)
     RTMP_SYSTEM_CHANNEL,        ///< channel for sending server control messages
+    RTMP_SOURCE_CHANNEL,        ///< channel for sending a/v to server
     RTMP_VIDEO_CHANNEL = 8,     ///< channel for video data
     RTMP_AUDIO_CHANNEL,         ///< channel for audio data
 };