Skip to content

Commit a049f4c

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents bd5b362 + 2508e84 commit a049f4c

File tree

1,314 files changed

+58247
-32248
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,314 files changed

+58247
-32248
lines changed

.mailmap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<james.darnley@gmail.com> <jdarnley@obe.tv>
21
<jeebjp@gmail.com> <jan.ekstrom@aminocom.com>
32
<sw@jkqxz.net> <mrt@jkqxz.net>
43
<u@pkh.me> <cboesch@gopro.com>

Changelog

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@ version <next>:
88
- ffmpeg now requires threading to be built
99
- ffmpeg now runs every muxer in a separate thread
1010
- Add new mode to cropdetect filter to detect crop-area based on motion vectors and edges
11-
- VAAPI decoding and encoding for 8bit 444 HEVC and VP9
11+
- VAAPI decoding and encoding for 10/12bit 422, 10/12bit 444 HEVC and VP9
1212
- WBMP (Wireless Application Protocol Bitmap) image format
13+
- a3dscope filter
14+
- bonk decoder and demuxer
15+
- Micronas SC-4 audio decoder
16+
- LAF demuxer
17+
- APAC decoder and demuxer
18+
- Media 100i decoders
19+
- DTS to PTS reorder bsf
20+
- ViewQuest VQC decoder
21+
- backgroundkey filter
1322

1423

1524
version 5.1:
@@ -36,6 +45,7 @@ version 5.1:
3645
- PHM image format support
3746
- remap_opencl filter
3847
- added chromakey_cuda filter
48+
- added bilateral_cuda filter
3949

4050

4151
version 5.0:

MAINTAINERS

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,11 @@ A (CC <address>) after the name means that the maintainer prefers to be CC-ed on
1111
patches and related discussions.
1212

1313

14-
Project Leader
15-
==============
16-
17-
final design decisions
18-
19-
2014
Applications
2115
============
2216

2317
ffmpeg:
24-
ffmpeg.c Michael Niedermayer
18+
ffmpeg.c Michael Niedermayer, Anton Khirnov
2519

2620
ffplay:
2721
ffplay.c Marton Balint

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ffbuild/.config: $(CONFIGURABLE_COMPONENTS)
9191
SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \
9292
HEADERS ARCH_HEADERS BUILT_HEADERS SKIPHEADERS \
9393
ARMV5TE-OBJS ARMV6-OBJS ARMV8-OBJS VFP-OBJS NEON-OBJS \
94-
ALTIVEC-OBJS VSX-OBJS MMX-OBJS X86ASM-OBJS \
94+
ALTIVEC-OBJS VSX-OBJS RVV-OBJS MMX-OBJS X86ASM-OBJS \
9595
MIPSFPU-OBJS MIPSDSPR2-OBJS MIPSDSP-OBJS MSA-OBJS \
9696
MMI-OBJS LSX-OBJS LASX-OBJS OBJS SLIBOBJS SHLIBOBJS \
9797
STLIBOBJS HOSTOBJS TESTOBJS

compat/cuda/cuda_runtime.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,5 +187,6 @@ static inline __device__ float __saturatef(float a) { return __nvvm_saturate_f(a
187187
static inline __device__ float __sinf(float a) { return __nvvm_sin_approx_f(a); }
188188
static inline __device__ float __cosf(float a) { return __nvvm_cos_approx_f(a); }
189189
static inline __device__ float __expf(float a) { return __nvvm_ex2_approx_f(a * (float)__builtin_log2(__builtin_exp(1))); }
190+
static inline __device__ float __powf(float a, float b) { return __nvvm_ex2_approx_f(__nvvm_lg2_approx_f(a) * b); }
190191

191192
#endif /* COMPAT_CUDA_CUDA_RUNTIME_H */

0 commit comments

Comments
 (0)