diff options
author | Roman Fietze <roman.fietze@telemotive.de> | 2014-04-03 12:46:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-03 13:49:13 +0200 |
commit | f5d718ac7e201551d16ea2a1d3f8ce202d91cf67 (patch) | |
tree | ad9bb1fdedf0b70c58bf3ba5527769516d1252fb /libavfilter/buffer.c | |
parent | 74aeb6b5847268ddc92bb013cbb39a9aa906ec2d (diff) | |
download | ffmpeg-f5d718ac7e201551d16ea2a1d3f8ce202d91cf67.tar.gz |
avfilter.h, buffer.c: use const src pointer in avfilter_copy_buffer_ref_props
Signed-off-by: Roman Fietze <roman.fietze@telemotive.de>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/buffer.c')
-rw-r--r-- | libavfilter/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/buffer.c b/libavfilter/buffer.c index a62618440b..885e9caf96 100644 --- a/libavfilter/buffer.c +++ b/libavfilter/buffer.c @@ -150,7 +150,7 @@ int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src) return 0; } -void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src) +void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, const AVFilterBufferRef *src) { // copy common properties dst->pts = src->pts; |