mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-16 00:05:52 +01:00
2f087607e5
Signed-off-by: Mikhail Grigorev <sleuthhound@gmail.com>
17 lines
249 B
ObjectPascal
17 lines
249 B
ObjectPascal
unit ffmpeglib;
|
|
|
|
{$include ffmpeg.inc}
|
|
|
|
interface
|
|
|
|
const
|
|
avformat_dll = 'avformat-55.dll';
|
|
avcodec_dll = 'avcodec-55.dll';
|
|
avutil_dll = 'avutil-52.dll';
|
|
swscale_dll = 'swscale-2.dll';
|
|
avfilter_dll = 'avfilter-4.dll';
|
|
|
|
implementation
|
|
|
|
end.
|