diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-12-19 13:25:51 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-12-19 13:25:51 +0100 |
commit | 96ff6d38050e42ae33b1a691109e24748bd62d5d (patch) | |
tree | 7809dfaa4c565107ed20b6400f0a2b626ce09b21 | |
parent | 6c7b153d97b5e283d3a06096dc9b3b64ed756fdb (diff) | |
download | ffmpeg-96ff6d38050e42ae33b1a691109e24748bd62d5d.tar.gz |
lavf/rtp_h261: Replace restrict with av_restrict.
Fixes compilation on Windows.
-rw-r--r-- | libavformat/rtpenc_h261.c | 4 |
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. */ |