Skip to content

Commit 0a87bd0

Browse files
committed
avutil/iamf: add missing doxy to free functions
Signed-off-by: James Almer <[email protected]>
1 parent 76cd71b commit 0a87bd0

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

libavutil/iamf.h

+12
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,12 @@ AVIAMFAudioElement *av_iamf_audio_element_alloc(void);
385385
*/
386386
AVIAMFLayer *av_iamf_audio_element_add_layer(AVIAMFAudioElement *audio_element);
387387

388+
/**
389+
* Free an AVIAMFAudioElement and all its contents.
390+
*
391+
* @param audio_element pointer to pointer to an allocated AVIAMFAudioElement.
392+
* upon return, *audio_element will be set to NULL.
393+
*/
388394
void av_iamf_audio_element_free(AVIAMFAudioElement **audio_element);
389395

390396
/**
@@ -617,6 +623,12 @@ AVIAMFSubmixElement *av_iamf_submix_add_element(AVIAMFSubmix *submix);
617623
*/
618624
AVIAMFSubmixLayout *av_iamf_submix_add_layout(AVIAMFSubmix *submix);
619625

626+
/**
627+
* Free an AVIAMFMixPresentation and all its contents.
628+
*
629+
* @param mix_presentation pointer to pointer to an allocated AVIAMFMixPresentation.
630+
* upon return, *mix_presentation will be set to NULL.
631+
*/
620632
void av_iamf_mix_presentation_free(AVIAMFMixPresentation **mix_presentation);
621633
/**
622634
* @}

0 commit comments

Comments
 (0)