mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
nutdec: const correctness for get_v_trace/get_s_trace function arguments
This commit is contained in:
parent
2dc1310484
commit
93e81ee81c
@ -76,8 +76,8 @@ static uint64_t get_fourcc(AVIOContext *bc)
|
||||
}
|
||||
|
||||
#ifdef TRACE
|
||||
static inline uint64_t get_v_trace(AVIOContext *bc, char *file,
|
||||
char *func, int line)
|
||||
static inline uint64_t get_v_trace(AVIOContext *bc, const char *file,
|
||||
const char *func, int line)
|
||||
{
|
||||
uint64_t v = ffio_read_varlen(bc);
|
||||
|
||||
@ -86,8 +86,8 @@ static inline uint64_t get_v_trace(AVIOContext *bc, char *file,
|
||||
return v;
|
||||
}
|
||||
|
||||
static inline int64_t get_s_trace(AVIOContext *bc, char *file,
|
||||
char *func, int line)
|
||||
static inline int64_t get_s_trace(AVIOContext *bc, const char *file,
|
||||
const char *func, int line)
|
||||
{
|
||||
int64_t v = get_s(bc);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user