From: James Almer Date: Mon, 15 Jul 2019 14:18:23 +0000 (-0300) Subject: avcodec: remove reference to AVPacket's destruct field X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=7cb4f8c962bdd0e08881f8ce15f7bdd2d546ba44;p=ffmpeg avcodec: remove reference to AVPacket's destruct field The field was removed years ago. Signed-off-by: James Almer --- diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 586bbbca4e9..2528bd89ab9 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4418,7 +4418,7 @@ int av_grow_packet(AVPacket *pkt, int grow_by); * Initialize a reference-counted packet from av_malloc()ed data. * * @param pkt packet to be initialized. This function will set the data, size, - * buf and destruct fields, all others are left untouched. + * and buf fields, all others are left untouched. * @param data Data allocated by av_malloc() to be used as packet data. If this * function returns successfully, the data is owned by the underlying AVBuffer. * The caller may not access the data through other means.