diff options
author | Sergiy <piratfm@gmail.com> | 2009-12-02 13:00:28 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-02 13:00:28 +0000 |
commit | 9e69ab1864dc40e10c764b7d485a09ff5027f727 (patch) | |
tree | 9ffbbb8df80a59765e8a8f36b950263590b9aee0 | |
parent | b316991bb6893f2ee8fc44e5abcaffe6bb3edbaf (diff) | |
download | ffmpeg-9e69ab1864dc40e10c764b7d485a09ff5027f727.tar.gz |
Add another known RTMP channel ID to enum.
From patch by Sergiy (mail = piratfm, gmail)
Originally committed as revision 20703 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rtmppkt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtmppkt.h b/libavformat/rtmppkt.h index f50996f6d1..2c4f92bbec 100644 --- a/libavformat/rtmppkt.h +++ b/libavformat/rtmppkt.h @@ -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 }; |