[FFmpeg-cvslog] avutil/iamf: add missing doxy to free functions
James Almer
git at videolan.org
Tue Dec 19 16:16:01 EET 2023
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Dec 19 11:15:18 2023 -0300| [0a87bd02ee6c22384961c68ca4a97f9981043885] | committer: James Almer
avutil/iamf: add missing doxy to free functions
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a87bd02ee6c22384961c68ca4a97f9981043885
---
libavutil/iamf.h | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/libavutil/iamf.h b/libavutil/iamf.h
index e03c018169..d03ff7d13b 100644
--- a/libavutil/iamf.h
+++ b/libavutil/iamf.h
@@ -385,6 +385,12 @@ AVIAMFAudioElement *av_iamf_audio_element_alloc(void);
*/
AVIAMFLayer *av_iamf_audio_element_add_layer(AVIAMFAudioElement *audio_element);
+/**
+ * Free an AVIAMFAudioElement and all its contents.
+ *
+ * @param audio_element pointer to pointer to an allocated AVIAMFAudioElement.
+ * upon return, *audio_element will be set to NULL.
+ */
void av_iamf_audio_element_free(AVIAMFAudioElement **audio_element);
/**
@@ -617,6 +623,12 @@ AVIAMFSubmixElement *av_iamf_submix_add_element(AVIAMFSubmix *submix);
*/
AVIAMFSubmixLayout *av_iamf_submix_add_layout(AVIAMFSubmix *submix);
+/**
+ * Free an AVIAMFMixPresentation and all its contents.
+ *
+ * @param mix_presentation pointer to pointer to an allocated AVIAMFMixPresentation.
+ * upon return, *mix_presentation will be set to NULL.
+ */
void av_iamf_mix_presentation_free(AVIAMFMixPresentation **mix_presentation);
/**
* @}
More information about the ffmpeg-cvslog
mailing list