* [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100
@ 2022-06-14 0:03 Zane van Iperen
2022-06-14 0:03 ` [FFmpeg-devel] [PATCH 2/2] doc/APIchanges: add missing uuid and csp entries Zane van Iperen
2022-06-14 1:05 ` [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 James Almer
0 siblings, 2 replies; 3+ messages in thread
From: Zane van Iperen @ 2022-06-14 0:03 UTC (permalink / raw)
To: ffmpeg-devel
Forgot to bump after the uuid patches.
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
---
libavutil/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/version.h b/libavutil/version.h
index 2c7f4f6b37..2e9e02dda8 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -79,7 +79,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 57
-#define LIBAVUTIL_VERSION_MINOR 26
+#define LIBAVUTIL_VERSION_MINOR 27
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
--
2.36.0
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* [FFmpeg-devel] [PATCH 2/2] doc/APIchanges: add missing uuid and csp entries
2022-06-14 0:03 [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 Zane van Iperen
@ 2022-06-14 0:03 ` Zane van Iperen
2022-06-14 1:05 ` [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 James Almer
1 sibling, 0 replies; 3+ messages in thread
From: Zane van Iperen @ 2022-06-14 0:03 UTC (permalink / raw)
To: ffmpeg-devel
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
---
doc/APIchanges | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/doc/APIchanges b/doc/APIchanges
index 4f7a19d176..3349e94a4f 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -18,6 +18,16 @@ API changes, most recent first:
Add avio_vprintf(), similar to avio_printf() but allow to use it
from within a function taking a variable argument list as input.
+2022-06-01 - xxxxxxxxx - lavu 57.27.100 - uuid.c uuid.h
+ Add UUID handling functions.
+ Add av_uuid_parse(), av_uuid_urn_parse(), av_uuid_parse_range(),
+ av_uuid_parse_range(), av_uuid_equal(), av_uuid_copy(), and av_uuid_nil().
+
+2022-05-28 - xxxxxxxxx - lavu 57.26.100 - csp.c csp.h
+ Add public API for colorspace structs.
+ Add av_csp_luma_coeffs_from_avcsp(), av_csp_primaries_desc_from_id(),
+ and av_csp_primaries_id_from_desc().
+
2022-05-23 - xxxxxxxxx - lavu 57.25.100 - avutil.h
Deprecate av_fopen_utf8() without replacement.
--
2.36.0
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100
2022-06-14 0:03 [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 Zane van Iperen
2022-06-14 0:03 ` [FFmpeg-devel] [PATCH 2/2] doc/APIchanges: add missing uuid and csp entries Zane van Iperen
@ 2022-06-14 1:05 ` James Almer
1 sibling, 0 replies; 3+ messages in thread
From: James Almer @ 2022-06-14 1:05 UTC (permalink / raw)
To: ffmpeg-devel
On 6/13/2022 9:03 PM, Zane van Iperen wrote:
> Forgot to bump after the uuid patches.
>
> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
> ---
> libavutil/version.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavutil/version.h b/libavutil/version.h
> index 2c7f4f6b37..2e9e02dda8 100644
> --- a/libavutil/version.h
> +++ b/libavutil/version.h
> @@ -79,7 +79,7 @@
> */
>
> #define LIBAVUTIL_VERSION_MAJOR 57
> -#define LIBAVUTIL_VERSION_MINOR 26
> +#define LIBAVUTIL_VERSION_MINOR 27
> #define LIBAVUTIL_VERSION_MICRO 100
>
> #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
Patchset applied.
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-14 1:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-14 0:03 [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 Zane van Iperen
2022-06-14 0:03 ` [FFmpeg-devel] [PATCH 2/2] doc/APIchanges: add missing uuid and csp entries Zane van Iperen
2022-06-14 1:05 ` [FFmpeg-devel] [PATCH 1/2] avutil/version: 57.26.100 -> 57.27.100 James Almer
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