summaryrefslogtreecommitdiff
path: root/libavformat/rtpproto.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-16 17:31:03 +0100
committerMartin Storsjö <martin@martin.st>2012-02-16 17:45:33 +0100
commit298a587f447fbc9103f66a50b8433aab977afc9b (patch)
tree3459d7d1ead32738239ea93c9c000ab25845bcad /libavformat/rtpproto.c
parentc6643fddba73560f26f90d327c84d8832222a720 (diff)
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/rtpproto.c')
-rw-r--r--libavformat/rtpproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index 03794ae1ce..c93de4af2b 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -266,7 +266,7 @@ static int rtp_write(URLContext *h, const uint8_t *buf, int size)
int ret;
URLContext *hd;
- if (buf[1] >= RTCP_SR && buf[1] <= RTCP_APP) {
+ if (RTP_PT_IS_RTCP(buf[1])) {
/* RTCP payload type */
hd = s->rtcp_hd;
} else {