mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-15 07:45:53 +01:00
Some refactoring
Signed-off-by: Laentir Valetov <laex@bk.ru>
This commit is contained in:
parent
e0e112613c
commit
0dcba1e673
@ -3501,6 +3501,7 @@ procedure avcodec_get_frame_defaults(frame: pAVFrame); cdecl;
|
|||||||
// * a custom get_buffer()).
|
// * a custom get_buffer()).
|
||||||
*)
|
*)
|
||||||
// void avcodec_free_frame(AVFrame **frame);
|
// void avcodec_free_frame(AVFrame **frame);
|
||||||
|
procedure avcodec_free_frame(Var frame:pAVFrame); cdecl;
|
||||||
//
|
//
|
||||||
(*
|
(*
|
||||||
* Initialize the AVCodecContext to use the given AVCodec. Prior to using this
|
* Initialize the AVCodecContext to use the given AVCodec. Prior to using this
|
||||||
@ -5082,6 +5083,7 @@ function avpicture_get_size; external avcodec_dll;
|
|||||||
function avcodec_open2; external avcodec_dll;
|
function avcodec_open2; external avcodec_dll;
|
||||||
procedure avcodec_register_all; external avcodec_dll;
|
procedure avcodec_register_all; external avcodec_dll;
|
||||||
procedure avcodec_get_frame_defaults; external avcodec_dll;
|
procedure avcodec_get_frame_defaults; external avcodec_dll;
|
||||||
|
procedure avcodec_free_frame; external avcodec_dll;
|
||||||
function avcodec_decode_video2; external avcodec_dll;
|
function avcodec_decode_video2; external avcodec_dll;
|
||||||
procedure av_free_packet; external avcodec_dll;
|
procedure av_free_packet; external avcodec_dll;
|
||||||
function avcodec_close; external avcodec_dll;
|
function avcodec_close; external avcodec_dll;
|
||||||
|
@ -42,8 +42,9 @@
|
|||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
<OutDir>..\bin\</OutDir>
|
<OutDir>..\bin\</OutDir>
|
||||||
<IncludePath>C:\OpenCV\build\include;$(IncludePath)</IncludePath>
|
<IncludePath>C:\OpenCV\build\include;ucl;$(IncludePath)</IncludePath>
|
||||||
<LibraryPath>C:\OpenCV\build\x86\vc12\lib\;$(LibraryPath)</LibraryPath>
|
<LibraryPath>C:\OpenCV\build\x86\vc12\lib\;$(LibraryPath)</LibraryPath>
|
||||||
|
<SourcePath>$(SourcePath)</SourcePath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
Loading…
Reference in New Issue
Block a user