Skip to content

Commit 0b10d0c

Browse files
author
Andrea Medeghini
committed
Renamed source folder
1 parent 6608666 commit 0b10d0c

File tree

11 files changed

+26
-26
lines changed

11 files changed

+26
-26
lines changed

Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM ffmpeg4java-repo:latest
22

33
RUN apt-get update && apt-get -y install make gcc g++
44

5-
COPY Makefile.lib.linux ffmpeg/Makefile.lib.linux
6-
COPY Makefile.jni.linux ffmpeg/Makefile.jni.linux
5+
COPY Makefile.lib.linux FFmpeg/Makefile.lib.linux
6+
COPY Makefile.jni.linux FFmpeg/Makefile.jni.linux
77

88
COPY Patch.linux Patch.linux
99

Dockerfile.mingw64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM ffmpeg4java-repo:latest
22

33
RUN apt-get update && apt-get -y install make mingw-w64
44

5-
COPY Makefile.lib.mingw64 ffmpeg/Makefile.lib.mingw64
6-
COPY Makefile.jni.mingw64 ffmpeg/Makefile.jni.mingw64
5+
COPY Makefile.lib.mingw64 FFmpeg/Makefile.lib.mingw64
6+
COPY Makefile.jni.mingw64 FFmpeg/Makefile.jni.mingw64
77

88
COPY Patch.mingw64 Patch.mingw64
99

Patch.linux

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
diff --git a/libavutil/dict.c b/libavutil/dict.c
22
index f70c7e0..a53dc4a 100644
3-
--- /ffmpeg/libavutil/dict.c
4-
+++ /ffmpeg/libavutil/dict.c
3+
--- /FFmpeg/libavutil/dict.c
4+
+++ /FFmpeg/libavutil/dict.c
55
@@ -26,11 +26,6 @@
66
#include "mem.h"
77
#include "bprint.h"
@@ -16,8 +16,8 @@ index f70c7e0..a53dc4a 100644
1616
return m ? m->count : 0;
1717
diff --git a/libavutil/dict.h b/libavutil/dict.h
1818
index 118f1f0..1659490 100644
19-
--- /ffmpeg/libavutil/dict.h
20-
+++ /ffmpeg/libavutil/dict.h
19+
--- /FFmpeg/libavutil/dict.h
20+
+++ /FFmpeg/libavutil/dict.h
2121
@@ -83,7 +83,10 @@ typedef struct AVDictionaryEntry {
2222
char *value;
2323
} AVDictionaryEntry;

Patch.macos

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
diff --git a/libavutil/dict.c b/libavutil/dict.c
22
index f70c7e0..a53dc4a 100644
3-
--- ffmpeg/libavutil/dict.c
4-
+++ ffmpeg/libavutil/dict.c
3+
--- FFmpeg/libavutil/dict.c
4+
+++ FFmpeg/libavutil/dict.c
55
@@ -26,11 +26,6 @@
66
#include "mem.h"
77
#include "bprint.h"
@@ -16,8 +16,8 @@ index f70c7e0..a53dc4a 100644
1616
return m ? m->count : 0;
1717
diff --git a/libavutil/dict.h b/libavutil/dict.h
1818
index 118f1f0..1659490 100644
19-
--- ffmpeg/libavutil/dict.h
20-
+++ ffmpeg/libavutil/dict.h
19+
--- FFmpeg/libavutil/dict.h
20+
+++ FFmpeg/libavutil/dict.h
2121
@@ -83,7 +83,10 @@ typedef struct AVDictionaryEntry {
2222
char *value;
2323
} AVDictionaryEntry;

Patch.mingw64

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ diff -u /usr/share/mingw-w64/include/servprov.h /usr/share/mingw-w64/include/ser
2727

2828
diff --git a/libavutil/dict.c b/libavutil/dict.c
2929
index f70c7e0..a53dc4a 100644
30-
--- /ffmpeg/libavutil/dict.c
31-
+++ /ffmpeg/libavutil/dict.c
30+
--- /FFmpeg/libavutil/dict.c
31+
+++ /FFmpeg/libavutil/dict.c
3232
@@ -26,11 +26,6 @@
3333
#include "mem.h"
3434
#include "bprint.h"
@@ -43,8 +43,8 @@ index f70c7e0..a53dc4a 100644
4343
return m ? m->count : 0;
4444
diff --git a/libavutil/dict.h b/libavutil/dict.h
4545
index 118f1f0..1659490 100644
46-
--- /ffmpeg/libavutil/dict.h
47-
+++ /ffmpeg/libavutil/dict.h
46+
--- /FFmpeg/libavutil/dict.h
47+
+++ /FFmpeg/libavutil/dict.h
4848
@@ -83,7 +83,10 @@ typedef struct AVDictionaryEntry {
4949
char *value;
5050
} AVDictionaryEntry;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The Java code will be generated in directory:
6969

7070
The JNI code will be generated in file:
7171

72-
build/ffmpeg4java_wrap.cxx
72+
build/ffmpeg4java_wrap.c
7373

7474

7575
## Build library for MacOS

build-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export BUILD_DIR=`pwd`/build
33

44
patch -p0 < Patch.linux
55

6-
cd ffmpeg
6+
cd FFmpeg
77

8-
make -f Makefile.lib.linux ffmpeg
8+
make -f Makefile.lib.linux FFmpeg
99
make -f Makefile.jni.linux all

build-macos.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#/bin/sh
22
export BUILD_DIR=`pwd`/build
33

4-
rm -fR ffmpeg
4+
rm -fR FFmpeg
55

66
sh checkout.sh
77

8-
cp Makefile.lib.macos ffmpeg/Makefile.lib.macos
9-
cp Makefile.jni.macos ffmpeg/Makefile.jni.macos
8+
cp Makefile.lib.macos FFmpeg/Makefile.lib.macos
9+
cp Makefile.jni.macos FFmpeg/Makefile.jni.macos
1010

1111
patch -p0 < Patch.macos
1212

13-
cd ffmpeg
13+
cd FFmpeg
1414

1515
make -f Makefile.lib.macos ffmpeg
1616
make -f Makefile.jni.macos all

build-mingw64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export BUILD_DIR=`pwd`/build
33

44
patch -p0 < Patch.mingw64
55

6-
cd ffmpeg
6+
cd FFmpeg
77

88
make -f Makefile.lib.mingw64 ffmpeg
99
make -f Makefile.jni.mingw64 all

checkout.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#/bin/sh
22

3-
git clone https://github.com/nextbreakpoint/FFmpeg.git ffmpeg
3+
git clone https://github.com/nextbreakpoint/FFmpeg.git FFmpeg
44

55
cd ffmpeg && git checkout ce36e74e75751c721185fbebaa4ee8714b44c5a5

0 commit comments

Comments
 (0)