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
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. */