This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit c22a84c655c9bb11c82c232a5bd9b2f994a57fcc
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Wed Jul 29 21:45:06 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Mon Aug 10 19:52:19 2026 +0200

    avfilter/vsrc_amf: drop WINMMAPI from function pointer typedefs
    
    The dllimport attribute is meaningless on a pointer typedef and the
    symbols are resolved with dlsym() anyway. Fixes -Wignored-attributes.
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 libavfilter/vsrc_amf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vsrc_amf.c b/libavfilter/vsrc_amf.c
index ec4373b249..2a9811ae4a 100644
--- a/libavfilter/vsrc_amf.c
+++ b/libavfilter/vsrc_amf.c
@@ -76,8 +76,8 @@ AVFILTER_DEFINE_CLASS(amf_capture);
 
 #include <timeapi.h>
 
-typedef WINMMAPI MMRESULT (WINAPI *timeBeginPeriod_fn)( UINT uPeriod);
-typedef WINMMAPI MMRESULT (WINAPI *timeEndPeriod_fn)(UINT uPeriod);
+typedef MMRESULT (WINAPI *timeBeginPeriod_fn)(UINT uPeriod);
+typedef MMRESULT (WINAPI *timeEndPeriod_fn)(UINT uPeriod);
 
 static void amf_increase_timer_precision(AMFGrabContext *ctx)
 {

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to