summaryrefslogtreecommitdiff
path: root/libavutil/log.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-12 14:41:24 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-12 14:41:24 +0100
commit74744790a366ed53cfafa2b0720c27b1eaef770a (patch)
tree0f9c54c49bb63764ce3474117bdf6af043bbcd56 /libavutil/log.c
parentbb6b1731eba2fac424ff8ad3003fe58b308debd1 (diff)
parent25a1ba814ad80056247fd357ec4c6911324a3f66 (diff)
Merge commit '25a1ba814ad80056247fd357ec4c6911324a3f66'
* commit '25a1ba814ad80056247fd357ec4c6911324a3f66': log: Have function parameter names match between .c and .h file Conflicts: libavutil/log.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/log.c')
-rw-r--r--libavutil/log.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index a7eb34c3d2..38ce1e8fc8 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -185,10 +185,10 @@ static int get_category(void *ptr){
return avc->category + 16;
}
-static void format_line(void *ptr, int level, const char *fmt, va_list vl,
+static void format_line(void *avcl, int level, const char *fmt, va_list vl,
AVBPrint part[3], int *print_prefix, int type[2])
{
- AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
+ AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
av_bprint_init(part+0, 0, 1);
av_bprint_init(part+1, 0, 1);
av_bprint_init(part+2, 0, 65536);
@@ -196,7 +196,7 @@ static void format_line(void *ptr, int level, const char *fmt, va_list vl,
if(type) type[0] = type[1] = AV_CLASS_CATEGORY_NA + 16;
if (*print_prefix && avc) {
if (avc->parent_log_context_offset) {
- AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
+ AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) +
avc->parent_log_context_offset);
if (parent && *parent) {
av_bprintf(part+0, "[%s @ %p] ",
@@ -205,8 +205,8 @@ static void format_line(void *ptr, int level, const char *fmt, va_list vl,
}
}
av_bprintf(part+1, "[%s @ %p] ",
- avc->item_name(ptr), ptr);
- if(type) type[1] = get_category(ptr);
+ avc->item_name(avcl), avcl);
+ if(type) type[1] = get_category(avcl);
}
av_vbprintf(part+2, fmt, vl);