diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-16 17:31:03 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-16 17:45:33 +0100 |
commit | 298a587f447fbc9103f66a50b8433aab977afc9b (patch) | |
tree | 3459d7d1ead32738239ea93c9c000ab25845bcad /libavformat/rtp.h | |
parent | c6643fddba73560f26f90d327c84d8832222a720 (diff) | |
download | ffmpeg-298a587f447fbc9103f66a50b8433aab977afc9b.tar.gz |
rtp: Factorize the check for distinguishing RTCP packets from RTP
The binary doesn't change after this patch.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtp.h')
-rw-r--r-- | libavformat/rtp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h index e619008007..e9f87782fa 100644 --- a/libavformat/rtp.h +++ b/libavformat/rtp.h @@ -91,4 +91,6 @@ enum RTCPType { RTCP_APP // 204 }; +#define RTP_PT_IS_RTCP(x) ((x) >= RTCP_SR && (x) <= RTCP_APP) + #endif /* AVFORMAT_RTP_H */ |