diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2016-11-17 19:41:12 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-11-17 19:41:12 +0100 |
commit | adb0e941c329a4778ade6dd0a326274472992f54 (patch) | |
tree | 277ef87cd581850af88a174a050ea3a871a41080 /libavcodec/avcodec.h | |
parent | 0a4b9d0ccd10b3c39105f99bd320f696f69a75a2 (diff) | |
download | ffmpeg-adb0e941c329a4778ade6dd0a326274472992f54.tar.gz |
avpacket: Mark src pointer as constant
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 88e6c62272..a004e6bcce 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3832,7 +3832,7 @@ AVPacket *av_packet_alloc(void); * @see av_packet_alloc * @see av_packet_ref */ -AVPacket *av_packet_clone(AVPacket *src); +AVPacket *av_packet_clone(const AVPacket *src); /** * Free the packet, if the packet is reference counted, it will be @@ -3986,7 +3986,7 @@ void av_packet_free_side_data(AVPacket *pkt); * * @return 0 on success, a negative AVERROR on error. */ -int av_packet_ref(AVPacket *dst, AVPacket *src); +int av_packet_ref(AVPacket *dst, const AVPacket *src); /** * Wipe the packet. |