Skip to content

Commit 45aa286

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 7a2699e + 7a879cc commit 45aa286

File tree

1,645 files changed

+16943
-26173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,645 files changed

+16943
-26173
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ Entries are sorted chronologically from oldest to youngest within each release,
22
releases are sorted from youngest to oldest.
33

44
version <next>:
5+
- ADPCM IMA Westwood encoder
6+
- Westwood AUD muxer
7+
- ADPCM IMA Acorn Replay decoder
8+
- Argonaut Games CVG demuxer
9+
- Argonaut Games CVG muxer
510

611

712
version 4.4:

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ Muxers/Demuxers:
399399
apngdec.c Benoit Fouet
400400
argo_asf.c Zane van Iperen
401401
argo_brp.c Zane van Iperen
402+
argo_cvg.c Zane van Iperen
402403
ass* Aurelien Jacobs
403404
astdec.c Paul B Mahol
404405
astenc.c James Almer

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ FFLIBS-$(CONFIG_AVDEVICE) += avdevice
2323
FFLIBS-$(CONFIG_AVFILTER) += avfilter
2424
FFLIBS-$(CONFIG_AVFORMAT) += avformat
2525
FFLIBS-$(CONFIG_AVCODEC) += avcodec
26-
FFLIBS-$(CONFIG_AVRESAMPLE) += avresample
2726
FFLIBS-$(CONFIG_POSTPROC) += postproc
2827
FFLIBS-$(CONFIG_SWRESAMPLE) += swresample
2928
FFLIBS-$(CONFIG_SWSCALE) += swscale

compat/msvcrt/snprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ int avpriv_vsnprintf(char *s, size_t n, const char *fmt,
5959
* recommends to provide _snprintf/_vsnprintf() a buffer size that
6060
* is one less than the actual buffer, and zero it before calling
6161
* _snprintf/_vsnprintf() to workaround this problem.
62-
* See http://msdn.microsoft.com/en-us/library/1kt27hek(v=vs.80).aspx */
62+
* See https://web.archive.org/web/20151214111935/http://msdn.microsoft.com/en-us/library/1kt27hek(v=vs.80).aspx */
6363
memset(s, 0, n);
6464
va_copy(ap_copy, ap);
6565
ret = _vsnprintf(s, n - 1, fmt, ap_copy);

0 commit comments

Comments
 (0)