summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-02-26 14:24:50 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-02-26 14:24:50 +0000
commit144ae29ddef24d31fd0f113a33dd33f4b67046c4 (patch)
tree356c7af751f1fd29f2c8be9e7e90cc127a04804e /libavformat/rtpdec.h
parenta68d44ed6f49897bfbba69688437e4aced727c10 (diff)
Implement marker bit, which is used for several RTP payloads currently
under review. See "[FFmpeg-devel] RTP mark bit not passed to parse_packet" thread on mailinglist. Originally committed as revision 17616 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r--libavformat/rtpdec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h
index f4bc6fb9b2..c5350e746a 100644
--- a/libavformat/rtpdec.h
+++ b/libavformat/rtpdec.h
@@ -93,6 +93,7 @@ typedef struct {
} RTPStatistics;
#define RTP_FLAG_KEY 0x1 ///< RTP packet contains a keyframe
+#define RTP_FLAG_MARKER 0x2 ///< RTP marker bit was set for this packet
/**
* Packet parsing for "private" payloads in the RTP specs.
*