From: James Almer <jamrial@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 09/14] avutil/ambient_viewing_environment: deprecate av_ambient_viewing_environment_create_side_data() Date: Sat, 25 Jan 2025 17:21:37 -0300 Message-ID: <20250125202143.12126-9-jamrial@gmail.com> (raw) In-Reply-To: <20250125202143.12126-1-jamrial@gmail.com> It's no longer needed after the addition of av_frame_side_data_new_struct() Signed-off-by: James Almer <jamrial@gmail.com> --- libavutil/ambient_viewing_environment.c | 2 ++ libavutil/ambient_viewing_environment.h | 6 ++++++ libavutil/version.h | 1 + 3 files changed, 9 insertions(+) diff --git a/libavutil/ambient_viewing_environment.c b/libavutil/ambient_viewing_environment.c index ee2e9427cd..16858bf206 100644 --- a/libavutil/ambient_viewing_environment.c +++ b/libavutil/ambient_viewing_environment.c @@ -46,6 +46,7 @@ AVAmbientViewingEnvironment *av_ambient_viewing_environment_alloc(size_t *size) return env; } +#if FF_API_CREATE_SIDE_DATA AVAmbientViewingEnvironment *av_ambient_viewing_environment_create_side_data(AVFrame *frame) { AVFrameSideData *side_data = @@ -60,3 +61,4 @@ AVAmbientViewingEnvironment *av_ambient_viewing_environment_create_side_data(AVF return (AVAmbientViewingEnvironment *)side_data->data; } +#endif diff --git a/libavutil/ambient_viewing_environment.h b/libavutil/ambient_viewing_environment.h index e5e4ac2173..08aac686f0 100644 --- a/libavutil/ambient_viewing_environment.h +++ b/libavutil/ambient_viewing_environment.h @@ -22,8 +22,10 @@ #define AVUTIL_AMBIENT_VIEWING_ENVIRONMENT_H #include <stddef.h> +#include "attributes.h" #include "frame.h" #include "rational.h" +#include "version.h" /** * Ambient viewing environment metadata as defined by H.274. The values are @@ -61,12 +63,16 @@ typedef struct AVAmbientViewingEnvironment { */ AVAmbientViewingEnvironment *av_ambient_viewing_environment_alloc(size_t *size); +#if FF_API_CREATE_SIDE_DATA /** * Allocate and add an AVAmbientViewingEnvironment structure to an existing * AVFrame as side data. * + * @deprecated use @ref av_frame_side_data_new_struct() * @return the newly allocated struct, or NULL on failure */ +attribute_deprecated AVAmbientViewingEnvironment *av_ambient_viewing_environment_create_side_data(AVFrame *frame); +#endif #endif /* AVUTIL_AMBIENT_VIEWING_ENVIRONMENT_H */ diff --git a/libavutil/version.h b/libavutil/version.h index e736484a1e..d4229178ab 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -118,6 +118,7 @@ #define FF_API_OPT_INT_LIST (LIBAVUTIL_VERSION_MAJOR < 60) #define FF_API_OPT_PTR (LIBAVUTIL_VERSION_MAJOR < 60) #define FF_API_SIDE_DATA_BUF (LIBAVUTIL_VERSION_MAJOR < 60) +#define FF_API_CREATE_SIDE_DATA (LIBAVUTIL_VERSION_MAJOR < 60) /** * @} -- 2.48.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2025-01-25 20:23 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-01-25 20:21 [FFmpeg-devel] [PATCH 01/14] avutil/frame: move side data helpers to a new file James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 02/14] avutil/frame: allow the addition of internal fields to AVSideDataDescriptor James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 03/14] avutil/frame: allow the addition of internal fields to AVFrameSideData James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 04/14] avutil/frame: schedule making AVFrameSideData.buf internal James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 05/14] avutil/frame: add functions to check and ensure a side data entry is writable James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 06/14] avutil/frame: av_frame_side_data_new_struct() James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 07/14] avutil/frame: add support for RefStruct as backing for side data James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PoC][PATCH 08/14] avutil/frame: add a param change side data type James Almer 2025-01-29 12:29 ` Andreas Rheinhardt 2025-01-29 13:53 ` James Almer 2025-01-25 20:21 ` James Almer [this message] 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 10/14] avutil/downmix_info: deprecate av_downmix_info_update_side_data() James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 11/14] avutil/hdr_dynamic_metadata: deprecate av_dynamic_hdr_plus_create_side_data() James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 12/14] avutil/hdr_dynamic_vivid_metadata: deprecate av_dynamic_hdr_vivid_create_side_data() James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 13/14] avutil/mastering_display_metadata: deprecate av_{content_light, mastering_display_metadata}_create_side_data() James Almer 2025-01-25 20:21 ` [FFmpeg-devel] [PATCH 14/14] avutil/stereo3d: deprecate av_stereo3d_create_side_data() James Almer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20250125202143.12126-9-jamrial@gmail.com \ --to=jamrial@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git