mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Merge commit 'f7407f56cbf820a147bd77d728ac9a72c587cc56'
* commit 'f7407f56cbf820a147bd77d728ac9a72c587cc56': golomb: Replace __PRETTY_FUNCTION__ with __func__ for tracing Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
52e6fb9c59
@ -448,10 +448,10 @@ static inline int get_te(GetBitContext *s, int r, char *file, const char *func,
|
||||
return i;
|
||||
}
|
||||
|
||||
#define get_ue_golomb(a) get_ue(a, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||
#define get_se_golomb(a) get_se(a, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||
#define get_te_golomb(a, r) get_te(a, r, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||
#define get_te0_golomb(a, r) get_te(a, r, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||
#define get_ue_golomb(a) get_ue(a, __FILE__, __func__, __LINE__)
|
||||
#define get_se_golomb(a) get_se(a, __FILE__, __func__, __LINE__)
|
||||
#define get_te_golomb(a, r) get_te(a, r, __FILE__, __func__, __LINE__)
|
||||
#define get_te0_golomb(a, r) get_te(a, r, __FILE__, __func__, __LINE__)
|
||||
|
||||
#endif /* TRACE */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user