Commit 52e6fb9c authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'f7407f56'

* commit 'f7407f56':
  golomb: Replace __PRETTY_FUNCTION__ with __func__ for tracing
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 6516c62e f7407f56
...@@ -448,10 +448,10 @@ static inline int get_te(GetBitContext *s, int r, char *file, const char *func, ...@@ -448,10 +448,10 @@ static inline int get_te(GetBitContext *s, int r, char *file, const char *func,
return i; return i;
} }
#define get_ue_golomb(a) get_ue(a, __FILE__, __PRETTY_FUNCTION__, __LINE__) #define get_ue_golomb(a) get_ue(a, __FILE__, __func__, __LINE__)
#define get_se_golomb(a) get_se(a, __FILE__, __PRETTY_FUNCTION__, __LINE__) #define get_se_golomb(a) get_se(a, __FILE__, __func__, __LINE__)
#define get_te_golomb(a, r) get_te(a, r, __FILE__, __PRETTY_FUNCTION__, __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__, __PRETTY_FUNCTION__, __LINE__) #define get_te0_golomb(a, r) get_te(a, r, __FILE__, __func__, __LINE__)
#endif /* TRACE */ #endif /* TRACE */
......
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