Commit 96ff6d38 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/rtp_h261: Replace restrict with av_restrict.

Fixes compilation on Windows.
parent 6c7b153d
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment