summaryrefslogtreecommitdiff
path: root/libavcodec/golomb.h
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-04-01 11:26:23 +0200
committerClément Bœsch <u@pkh.me>2017-04-01 11:26:23 +0200
commit52e6fb9c597fe0d741f939c31a692362f4ea3136 (patch)
treee2688d90cba0d9e64e533037a37906064602a86b /libavcodec/golomb.h
parent6516c62ec0e4feb5389bc1ce7030bfb2eae258f9 (diff)
parentf7407f56cbf820a147bd77d728ac9a72c587cc56 (diff)
downloadffmpeg-52e6fb9c597fe0d741f939c31a692362f4ea3136.tar.gz
Merge commit 'f7407f56cbf820a147bd77d728ac9a72c587cc56'
* commit 'f7407f56cbf820a147bd77d728ac9a72c587cc56': golomb: Replace __PRETTY_FUNCTION__ with __func__ for tracing Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/golomb.h')
-rw-r--r--libavcodec/golomb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h
index 513d652527..47b369f88c 100644
--- a/libavcodec/golomb.h
+++ b/libavcodec/golomb.h
@@ -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 */