diff options
author | James Almer <jamrial@gmail.com> | 2019-07-15 11:18:23 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-07-15 11:20:03 -0300 |
commit | 7cb4f8c962bdd0e08881f8ce15f7bdd2d546ba44 (patch) | |
tree | 375ff3a31199342d7fd86947a9fe28532734ccc6 /libavcodec | |
parent | ac22835db947ee1573651e31e66fd84f7ca23fd0 (diff) | |
download | ffmpeg-7cb4f8c962bdd0e08881f8ce15f7bdd2d546ba44.tar.gz |
avcodec: remove reference to AVPacket's destruct field
The field was removed years ago.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 586bbbca4e..2528bd89ab 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. |