[FFmpeg-cvslog] lavf/rtp_h261: Replace restrict with av_restrict.
Carl Eugen Hoyos
git at videolan.org
Fri Dec 19 13:26:37 CET 2014
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Dec 19 13:25:51 2014 +0100| [96ff6d38050e42ae33b1a691109e24748bd62d5d] | committer: Carl Eugen Hoyos
lavf/rtp_h261: Replace restrict with av_restrict.
Fixes compilation on Windows.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=96ff6d38050e42ae33b1a691109e24748bd62d5d
---
libavformat/rtpenc_h261.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/rtpenc_h261.c b/libavformat/rtpenc_h261.c
index 9930b71..fc50285 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. */
More information about the ffmpeg-cvslog
mailing list