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:
parent
6c7b153d97
commit
96ff6d3805
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user