Skip to content

Commit 3ef6164

Browse files
adding libav libraries
1 parent 8816e0b commit 3ef6164

File tree

5 files changed

+35
-0
lines changed

5 files changed

+35
-0
lines changed

autoconf/avcodec.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from _external import *
2+
3+
avcodec = LibWithHeaderChecker(
4+
'avcodec',
5+
'libavcodec/avcodec.h',
6+
'c',
7+
)

autoconf/avfilter.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from _external import *
2+
3+
avfilter = LibWithHeaderChecker(
4+
'avfilter',
5+
'libavfilter/avfilter.h',
6+
'c',
7+
)

autoconf/avformat.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from _external import *
2+
3+
avformat = LibWithHeaderChecker(
4+
'avformat',
5+
'libavformat/avformat.h',
6+
'c',
7+
)

autoconf/avresample.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from _external import *
2+
3+
avresample = LibWithHeaderChecker(
4+
'avresample',
5+
'libavresample/avresample.h',
6+
'c',
7+
)

autoconf/avutil.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from _external import *
2+
3+
avutil = LibWithHeaderChecker(
4+
'avutil',
5+
'libavutil/avutil.h',
6+
'c',
7+
)

0 commit comments

Comments
 (0)