Skip to content

Commit 2ff25a6

Browse files
committed
fix use of undeclared identifier 'int_cb'
1 parent c008fb6 commit 2ff25a6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

patches/ffmpeg-n7.1.1/0027-custom-bluray-fs-for-network-Blu-ray-Disc-and-BDMV.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
From 19b58c47ccc043355572fdcbce8c359b6dfc1057 Mon Sep 17 00:00:00 2001
1+
From 5582bd1c8aa667f9dc0ca6c14ffb916e7a666c0e Mon Sep 17 00:00:00 2001
22
From: qianlongxu <qianlongxu@gmail.com>
3-
Date: Tue, 12 May 2026 14:20:38 +0800
3+
Date: Tue, 12 May 2026 16:26:37 +0800
44
Subject: [PATCH] custom bluray fs for network Blu-ray Disc and BDMV
55

66
---
@@ -235,7 +235,7 @@ index 1845551..eb43340 100644
235235
};
236236
diff --git a/libavformat/bluray_custom_fs.c b/libavformat/bluray_custom_fs.c
237237
new file mode 100644
238-
index 0000000..8a8f377
238+
index 0000000..b82e0b2
239239
--- /dev/null
240240
+++ b/libavformat/bluray_custom_fs.c
241241
@@ -0,0 +1,459 @@
@@ -636,7 +636,7 @@ index 0000000..8a8f377
636636
+ ff_builtin_io *io = NULL;
637637
+ int ret = create_builtin_io(&io, url, &opts, 1, access->int_cb);
638638
+ av_dict_free(&opts);
639-
+
639+
+
640640
+ if (0 != ret) {
641641
+ av_log(NULL, AV_LOG_ERROR, "[bluray] can't open dir %s,error:%s", url,
642642
+ av_err2str(ret));
@@ -669,7 +669,7 @@ index 0000000..8a8f377
669669
+}
670670
+
671671
+// 构建fs_access结构体
672-
+fs_access * create_bluray_custom_access(const char *url, AVDictionary **options)
672+
+fs_access * create_bluray_custom_access(const char *url, AVDictionary **options, const AVIOInterruptCB *int_cb)
673673
+{
674674
+ ff_bluray_access * opaque = av_mallocz(sizeof(ff_bluray_access));
675675
+ if (!opaque) {

0 commit comments

Comments
 (0)