summaryrefslogtreecommitdiff
path: root/libavutil/buffer.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-30 19:13:26 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-30 20:28:00 +0100
commitdc92464aee01a78c9963f86f24600ddf9c825258 (patch)
tree19a04525197d228cce97474c6fdb4acb43d278eb /libavutil/buffer.h
parent746016598d1885afd1fee976b6d315ed7eeefa68 (diff)
downloadffmpeg-dc92464aee01a78c9963f86f24600ddf9c825258.tar.gz
avutil: add av_buffer_get_ref_count()
This function is quite usefull for debuging Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/buffer.h')
-rw-r--r--libavutil/buffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/buffer.h b/libavutil/buffer.h
index ea49342e0a..bcd1130826 100644
--- a/libavutil/buffer.h
+++ b/libavutil/buffer.h
@@ -167,6 +167,8 @@ int av_buffer_is_writable(const AVBufferRef *buf);
*/
void *av_buffer_get_opaque(const AVBufferRef *buf);
+int av_buffer_get_ref_count(const AVBufferRef *buf);
+
/**
* Create a writable reference from a given buffer reference, avoiding data copy
* if possible.