diff mbox series

[FFmpeg-devel,4/5] avformat/avformat: Improve documentation of av_stream_get_side_data

Message ID 20200621085349.22370-4-andreas.rheinhardt@gmail.com
State Accepted
Commit b8c6aae575f09a1f2eef45e5b9d95b28790bc087
Headers show
Series [FFmpeg-devel,1/5] avcodec/nellymoserdec: Don't use invalid AVPacketSideDataType | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Andreas Rheinhardt June 21, 2020, 8:53 a.m. UTC
Document that it also sets the size in case the desired side data is
absent (if the pointer has been supplied).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/avformat.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 21c282a100..e91e7f1d33 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -2189,7 +2189,8 @@  uint8_t *av_stream_new_side_data(AVStream *stream,
  *
  * @param stream stream
  * @param type desired side information type
- * @param size pointer for side information size to store (optional)
+ * @param size If supplied, *size will be set to the size of the side data
+ *             or to zero if the desired side data is not present.
  * @return pointer to data if present or NULL otherwise
  */
 uint8_t *av_stream_get_side_data(const AVStream *stream,