Commit ecb9741b authored by James Almer's avatar James Almer

avcodec/avpacket: deprecate av_copy_packet()

It does the same thing as av_packet_ref().
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent d491d6a0
...@@ -4614,7 +4614,10 @@ int av_dup_packet(AVPacket *pkt); ...@@ -4614,7 +4614,10 @@ int av_dup_packet(AVPacket *pkt);
* Copy packet, including contents * Copy packet, including contents
* *
* @return 0 on success, negative AVERROR on fail * @return 0 on success, negative AVERROR on fail
*
* @deprecated Use av_packet_ref
*/ */
attribute_deprecated
int av_copy_packet(AVPacket *dst, const AVPacket *src); int av_copy_packet(AVPacket *dst, const AVPacket *src);
/** /**
......
...@@ -247,8 +247,6 @@ failed_alloc: ...@@ -247,8 +247,6 @@ failed_alloc:
av_packet_unref(pkt); av_packet_unref(pkt);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
FF_ENABLE_DEPRECATION_WARNINGS
#endif
int av_dup_packet(AVPacket *pkt) int av_dup_packet(AVPacket *pkt)
{ {
...@@ -266,6 +264,8 @@ int av_copy_packet(AVPacket *dst, const AVPacket *src) ...@@ -266,6 +264,8 @@ int av_copy_packet(AVPacket *dst, const AVPacket *src)
*dst = *src; *dst = *src;
return copy_packet_data(dst, src, 0); return copy_packet_data(dst, src, 0);
} }
FF_ENABLE_DEPRECATION_WARNINGS
#endif
void av_packet_free_side_data(AVPacket *pkt) void av_packet_free_side_data(AVPacket *pkt)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment