Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-07-15 17:18:23 +0300
committerJames Almer <jamrial@gmail.com>2019-07-15 17:20:03 +0300
commit7cb4f8c962bdd0e08881f8ce15f7bdd2d546ba44 (patch)
tree375ff3a31199342d7fd86947a9fe28532734ccc6 /libavcodec/avcodec.h
parentac22835db947ee1573651e31e66fd84f7ca23fd0 (diff)
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/avcodec.h')
-rw-r--r--libavcodec/avcodec.h2
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.