summaryrefslogtreecommitdiff
path: root/libavformat/rtpenc_h261.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-12-19 13:25:51 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-12-19 13:25:51 +0100
commit96ff6d38050e42ae33b1a691109e24748bd62d5d (patch)
tree7809dfaa4c565107ed20b6400f0a2b626ce09b21 /libavformat/rtpenc_h261.c
parent6c7b153d97b5e283d3a06096dc9b3b64ed756fdb (diff)
lavf/rtp_h261: Replace restrict with av_restrict.
Fixes compilation on Windows.
Diffstat (limited to 'libavformat/rtpenc_h261.c')
-rw-r--r--libavformat/rtpenc_h261.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpenc_h261.c b/libavformat/rtpenc_h261.c
index 9930b71473..fc50285f5e 100644
--- a/libavformat/rtpenc_h261.c
+++ b/libavformat/rtpenc_h261.c
@@ -24,8 +24,8 @@
#define RTP_H261_HEADER_SIZE 4
-static const uint8_t *find_resync_marker_reverse(const uint8_t *restrict start,
- const uint8_t *restrict end)
+static const uint8_t *find_resync_marker_reverse(const uint8_t *av_restrict start,
+ const uint8_t *av_restrict end)
{
const uint8_t *p = end - 1;
start += 1; /* Make sure we never return the original start. */