diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-17 12:57:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-17 12:57:19 +0200 |
commit | 208f9dd2ef06c5cfcb6ca494f35aba9149776e37 (patch) | |
tree | 9bf67568f77314924d36df43ed471324ea4e73a5 /libavformat/rtmppkt.h | |
parent | c71541d42a599e2273bb4e6069435093783d6dd2 (diff) | |
parent | d4aef997809167832ecc64e89dda8cb445e5fe10 (diff) | |
download | ffmpeg-208f9dd2ef06c5cfcb6ca494f35aba9149776e37.tar.gz |
Merge commit 'd4aef997809167832ecc64e89dda8cb445e5fe10'
* commit 'd4aef997809167832ecc64e89dda8cb445e5fe10':
rtmp: Follow Flash player numbering for channels.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtmppkt.h')
-rw-r--r-- | libavformat/rtmppkt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtmppkt.h b/libavformat/rtmppkt.h index 9ca6382a17..96ca1b68e8 100644 --- a/libavformat/rtmppkt.h +++ b/libavformat/rtmppkt.h @@ -36,9 +36,9 @@ 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 + RTMP_VIDEO_CHANNEL = 6, ///< channel for video data + RTMP_SOURCE_CHANNEL = 8, ///< channel for a/v invokes }; /** |