-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix examples with new folder structure
- Loading branch information
Showing
10 changed files
with
80 additions
and
55 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,53 @@ | ||
{.passC: "-I../cinclude".} | ||
|
||
import ffmpeg/utiltypes | ||
|
||
import ffmpeg/libavcodec/[avcodec, ac3_parser, adts_parser, avdct, | ||
avfft, d3d11va, dirac, dv_profile, dxva2, | ||
#jni, mediacodec, qsv, vaapi, vdpau, version, | ||
jni, mediacodec, vaapi, vdpau, version, | ||
videotoolbox, vorbis_parser, xvmc] | ||
avfft, dirac, dv_profile, dxva2, | ||
jni, mediacodec, vorbis_parser] | ||
|
||
when defined(windows): | ||
import ffmpeg/libavcodec/d3d11va | ||
else: | ||
import ffmpeg/libavcodec/[vaapi, vdpau, xvmc] | ||
|
||
import ffmpeg/libavdevice/avdevice | ||
import ffmpeg/libavdevice/version as dvcversion | ||
|
||
#add libavfilter import | ||
|
||
import ffmpeg/libavformat/[avformat, avio] | ||
import ffmpeg/libavformat/version as fmtversion | ||
|
||
import ffmpeg/libavutil/[log, avutil, common, dict, frame, hwcontext, | ||
opt, pixdesc, pixfmt, rational, samplefmt, | ||
channel_layout, avconfig, buffer, adler32, | ||
aes, aes_ctr, imgutils] | ||
import ffmpeg/libavutil/version as utilversion | ||
|
||
#add libpostproc import | ||
|
||
import ffmpeg/libswresample/swresample | ||
import ffmpeg/libswresample/version as resampleVersion | ||
|
||
import ffmpeg/libswscale/swscale | ||
import ffmpeg/libswscale/version as scaleVersion | ||
|
||
export utiltypes | ||
|
||
export avcodec, ac3_parser, adts_parser, avdct, | ||
avfft, d3d11va, dirac, dv_profile, dxva2, | ||
jni, mediacodec, qsv, vaapi, vdpau, version, | ||
videotoolbox, vorbis_parser, xvmc | ||
avfft, dirac, dv_profile, dxva2, | ||
jni, mediacodec, vorbis_parser | ||
|
||
when defined(windows): | ||
export d3d11va | ||
else: | ||
export vaapi, vdpau, xvmc | ||
|
||
export avdevice, dvcversion | ||
export avdevice | ||
|
||
export avformat, avio, fmtversion | ||
export avformat, avio | ||
|
||
export log, avutil, common, dict, frame, hwcontext, | ||
opt, pixdesc, pixfmt, rational, samplefmt, | ||
channel_layout, avconfig, buffer, utilversion, | ||
adler32, aes, aes_ctr, imgutils | ||
channel_layout, avconfig, buffer, adler32, | ||
aes, aes_ctr, imgutils | ||
|
||
export swresample, resampleVersion | ||
export swresample | ||
|
||
export swscale, scaleVersion | ||
export swscale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters