* [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h
@ 2022-07-05 0:11 Niklas Haas
2022-07-05 12:20 ` J. Dekker
2022-07-05 17:05 ` Michael Niedermayer
0 siblings, 2 replies; 4+ messages in thread
From: Niklas Haas @ 2022-07-05 0:11 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Niklas Haas
From: Niklas Haas <git@haasn.dev>
This header is unconditionally installed, even though the utility
functions defined by it may be missing from the built library.
A precedent set by e.g. libavcodec/qsv.h (and others) is to always
provide these functions by compiling stub functions in the absence of
CONFIG_*. Make hwcontext_vulkan.h match this convention.
Fixes downstream issues, e.g.
https://github.com/haasn/libplacebo/issues/120
Signed-off-by: Niklas Haas <git@haasn.dev>
---
libavutil/Makefile | 2 +-
libavutil/hwcontext_vulkan.c | 26 ++++++++++++++++++++++++--
2 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/libavutil/Makefile b/libavutil/Makefile
index 29c170214c..66017a33a2 100644
--- a/libavutil/Makefile
+++ b/libavutil/Makefile
@@ -136,6 +136,7 @@ OBJS = adler32.o \
hdr_dynamic_vivid_metadata.o \
hmac.o \
hwcontext.o \
+ hwcontext_vulkan.o \
imgutils.o \
integer.o \
intmath.o \
@@ -194,7 +195,6 @@ OBJS-$(CONFIG_QSV) += hwcontext_qsv.o
OBJS-$(CONFIG_VAAPI) += hwcontext_vaapi.o
OBJS-$(CONFIG_VIDEOTOOLBOX) += hwcontext_videotoolbox.o
OBJS-$(CONFIG_VDPAU) += hwcontext_vdpau.o
-OBJS-$(CONFIG_VULKAN) += hwcontext_vulkan.o
OBJS += $(COMPAT_OBJS:%=../compat/%)
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 237caa4bc0..f7944a321c 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -16,6 +16,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <stddef.h>
+
+#include "config.h"
+#include "pixdesc.h"
+
+#if CONFIG_VULKAN
+
#define VK_NO_PROTOTYPES
#define VK_ENABLE_BETA_EXTENSIONS
@@ -29,8 +36,6 @@
#include <unistd.h>
-#include "config.h"
-#include "pixdesc.h"
#include "avstring.h"
#include "imgutils.h"
#include "hwcontext.h"
@@ -4161,3 +4166,20 @@ const HWContextType ff_hwcontext_type_vulkan = {
AV_PIX_FMT_NONE
},
};
+
+#else /* !CONFIG_VULKAN */
+
+struct AVVkFrame *av_vk_frame_alloc(void);
+const enum VkFormat *av_vkfmt_from_pixfmt(enum AVPixelFormat p);
+
+struct AVVkFrame *av_vk_frame_alloc(void)
+{
+ return NULL;
+}
+
+const enum VkFormat *av_vkfmt_from_pixfmt(enum AVPixelFormat p)
+{
+ return NULL;
+}
+
+#endif
--
2.36.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".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h
2022-07-05 0:11 [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h Niklas Haas
@ 2022-07-05 12:20 ` J. Dekker
2022-07-05 17:05 ` Michael Niedermayer
1 sibling, 0 replies; 4+ messages in thread
From: J. Dekker @ 2022-07-05 12:20 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On 5 Jul 2022, at 2:11, Niklas Haas wrote:
> From: Niklas Haas <git@haasn.dev>
>
> This header is unconditionally installed, even though the utility
> functions defined by it may be missing from the built library.
>
> A precedent set by e.g. libavcodec/qsv.h (and others) is to always
> provide these functions by compiling stub functions in the absence of
> CONFIG_*. Make hwcontext_vulkan.h match this convention.
>
> Fixes downstream issues, e.g.
> https://github.com/haasn/libplacebo/issues/120
>
> Signed-off-by: Niklas Haas <git@haasn.dev>
> ---
> libavutil/Makefile | 2 +-
> libavutil/hwcontext_vulkan.c | 26 ++++++++++++++++++++++++--
> 2 files changed, 25 insertions(+), 3 deletions(-)
>
> [...]
Public API symbols (av_*) shouldn't completely disappear based on configure options.
LGTM.
--
J. Dekker
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h
2022-07-05 0:11 [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h Niklas Haas
2022-07-05 12:20 ` J. Dekker
@ 2022-07-05 17:05 ` Michael Niedermayer
2022-07-05 17:16 ` Andreas Rheinhardt
1 sibling, 1 reply; 4+ messages in thread
From: Michael Niedermayer @ 2022-07-05 17:05 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 1887 bytes --]
On Tue, Jul 05, 2022 at 02:11:01AM +0200, Niklas Haas wrote:
> From: Niklas Haas <git@haasn.dev>
>
> This header is unconditionally installed, even though the utility
> functions defined by it may be missing from the built library.
>
> A precedent set by e.g. libavcodec/qsv.h (and others) is to always
> provide these functions by compiling stub functions in the absence of
> CONFIG_*. Make hwcontext_vulkan.h match this convention.
>
> Fixes downstream issues, e.g.
> https://github.com/haasn/libplacebo/issues/120
>
> Signed-off-by: Niklas Haas <git@haasn.dev>
> ---
> libavutil/Makefile | 2 +-
> libavutil/hwcontext_vulkan.c | 26 ++++++++++++++++++++++++--
> 2 files changed, 25 insertions(+), 3 deletions(-)
breaks build with shared libs
LD libavutil/libavutil.so.57
libavutil/hwcontext_vulkan.o: In function `av_vk_frame_alloc':
ffmpeg/linux64shared/src/libavutil/hwcontext_vulkan.c:4177: multiple definition of `av_vk_frame_alloc'
libavutil/hwcontext_stub.o:ffmpeg/linux64shared/src/libavutil/hwcontext_stub.c:37: first defined here
libavutil/hwcontext_vulkan.o: In function `av_vkfmt_from_pixfmt':
ffmpeg/linux64shared/src/libavutil/hwcontext_vulkan.c:4182: multiple definition of `av_vkfmt_from_pixfmt'
libavutil/hwcontext_stub.o:ffmpeg/linux64shared/src/libavutil/hwcontext_stub.c:32: first defined here
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ffmpeg/ffbuild/library.mak:118: recipe for target 'libavutil/libavutil.so.57' failed
make: *** [libavutil/libavutil.so.57] Error 1
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Breaking DRM is a little like attempting to break through a door even
though the window is wide open and the only thing in the house is a bunch
of things you dont want and which you would get tomorrow for free anyway
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h
2022-07-05 17:05 ` Michael Niedermayer
@ 2022-07-05 17:16 ` Andreas Rheinhardt
0 siblings, 0 replies; 4+ messages in thread
From: Andreas Rheinhardt @ 2022-07-05 17:16 UTC (permalink / raw)
To: ffmpeg-devel
Michael Niedermayer:
> On Tue, Jul 05, 2022 at 02:11:01AM +0200, Niklas Haas wrote:
>> From: Niklas Haas <git@haasn.dev>
>>
>> This header is unconditionally installed, even though the utility
>> functions defined by it may be missing from the built library.
>>
>> A precedent set by e.g. libavcodec/qsv.h (and others) is to always
>> provide these functions by compiling stub functions in the absence of
>> CONFIG_*. Make hwcontext_vulkan.h match this convention.
>>
>> Fixes downstream issues, e.g.
>> https://github.com/haasn/libplacebo/issues/120
>>
>> Signed-off-by: Niklas Haas <git@haasn.dev>
>> ---
>> libavutil/Makefile | 2 +-
>> libavutil/hwcontext_vulkan.c | 26 ++++++++++++++++++++++++--
>> 2 files changed, 25 insertions(+), 3 deletions(-)
>
> breaks build with shared libs
>
> LD libavutil/libavutil.so.57
> libavutil/hwcontext_vulkan.o: In function `av_vk_frame_alloc':
> ffmpeg/linux64shared/src/libavutil/hwcontext_vulkan.c:4177: multiple definition of `av_vk_frame_alloc'
> libavutil/hwcontext_stub.o:ffmpeg/linux64shared/src/libavutil/hwcontext_stub.c:37: first defined here
> libavutil/hwcontext_vulkan.o: In function `av_vkfmt_from_pixfmt':
> ffmpeg/linux64shared/src/libavutil/hwcontext_vulkan.c:4182: multiple definition of `av_vkfmt_from_pixfmt'
> libavutil/hwcontext_stub.o:ffmpeg/linux64shared/src/libavutil/hwcontext_stub.c:32: first defined here
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> ffmpeg/ffbuild/library.mak:118: recipe for target 'libavutil/libavutil.so.57' failed
> make: *** [libavutil/libavutil.so.57] Error 1
>
>
This commit has been superseded by
f9dd8fcf9b87e757096de993dd32571c4a85a2cb (which fixes the issue in a
different way and together with this patch causes the issue you
encountered).
- Andreas
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2022-07-05 17:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-05 0:11 [FFmpeg-devel] [PATCH] lavu: always provide symbols from hwcontext_vulkan.h Niklas Haas
2022-07-05 12:20 ` J. Dekker
2022-07-05 17:05 ` Michael Niedermayer
2022-07-05 17:16 ` Andreas Rheinhardt
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