diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg/avformat.pas | 4 | ||||
-rw-r--r-- | src/lib/ffmpeg/avio.pas | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas index a378e2e6..d5804b31 100644 --- a/src/lib/ffmpeg/avformat.pas +++ b/src/lib/ffmpeg/avformat.pas @@ -198,9 +198,13 @@ function av_metadata_get(m: PAVMetadata; key: {const} PAnsiChar; * @param key tag key to add to m (will be av_strduped) * @param value tag value to add to m (will be av_strduped) * @return >= 0 on success otherwise an error code <0 + * @deprecated Use av_metadata_set2() instead. *) function av_metadata_set(var pm: PAVMetadata; key: {const} PAnsiChar; value: {const} PAnsiChar): cint; cdecl; external av__format; +{$IF LIBAVFORMAT_VERSION >= 52061000} // >= 52.61.0 + deprecated; +{$IFEND} {$IFEND} {$IF LIBAVFORMAT_VERSION >= 52043000} // >= 52.43.0 diff --git a/src/lib/ffmpeg/avio.pas b/src/lib/ffmpeg/avio.pas index 25c28ef5..6d1a44f0 100644 --- a/src/lib/ffmpeg/avio.pas +++ b/src/lib/ffmpeg/avio.pas @@ -28,15 +28,11 @@ (* * Conversion of libavformat/avio.h * unbuffered I/O operations - * revision 16100, Sat Dec 13 13:39:13 2008 UTC - * update Tue, Jun 10 01:00:00 2009 UTC - * * @warning This file has to be considered an internal but installed * header, so it should not be directly included in your projects. * * update to - * Max. avformat version: 52.46.0, Mon Jan 4 2010 0:40:00 CET - * MiSchi + * Max. avformat version: 52.61.0, revision 22921, Tue May 11 2010 19:12 CET *) unit avio; |