diff options
author | Andrey Utkin <andrey.krieger.utkin@gmail.com> | 2012-09-20 17:30:03 +0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-21 01:03:31 +0200 |
commit | cc07a7925e9967f8f9dcc47014d108ffa2f4cf51 (patch) | |
tree | ea8c106d99f545ab62ebe18b91693bfaf1bd226b /libavcodec/avcodec.h | |
parent | d33908a5fc8249b51fd5fbe0dfba46850e6536d0 (diff) | |
download | ffmpeg-cc07a7925e9967f8f9dcc47014d108ffa2f4cf51.tar.gz |
Add av_copy_packet()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fdfd5c4c7c..e4bba5b090 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3669,6 +3669,13 @@ int av_grow_packet(AVPacket *pkt, int grow_by); int av_dup_packet(AVPacket *pkt); /** + * Copy packet, including contents + * + * @return 0 on success, negative AVERROR on fail + */ +int av_copy_packet(AVPacket *dst, AVPacket *src); + +/** * Free a packet. * * @param pkt packet to free |