1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavf/rtp_h261: Replace restrict with av_restrict.

Fixes compilation on Windows.
This commit is contained in:
Carl Eugen Hoyos 2014-12-19 13:25:51 +01:00
parent 6c7b153d97
commit 96ff6d3805

View File

@ -24,8 +24,8 @@
#define RTP_H261_HEADER_SIZE 4 #define RTP_H261_HEADER_SIZE 4
static const uint8_t *find_resync_marker_reverse(const uint8_t *restrict start, static const uint8_t *find_resync_marker_reverse(const uint8_t *av_restrict start,
const uint8_t *restrict end) const uint8_t *av_restrict end)
{ {
const uint8_t *p = end - 1; const uint8_t *p = end - 1;
start += 1; /* Make sure we never return the original start. */ start += 1; /* Make sure we never return the original start. */