aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg/avformat.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-01-04 10:38:32 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-01-04 10:38:32 +0000
commitf0db3d8fe11723042477cf5eea6e480bfd9aeba6 (patch)
treee040de730c221ad6ec4da5d75692781984078e03 /src/lib/ffmpeg/avformat.pas
parent1b38db896c698b754ff145931e432f4f3ee05345 (diff)
downloadusdx-f0db3d8fe11723042477cf5eea6e480bfd9aeba6.tar.gz
usdx-f0db3d8fe11723042477cf5eea6e480bfd9aeba6.tar.xz
usdx-f0db3d8fe11723042477cf5eea6e480bfd9aeba6.zip
Correct typo. LIBAVCODEC_VERSION was used instead of LIBAVFORMAT_VERSION
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2060 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg/avformat.pas')
-rw-r--r--src/lib/ffmpeg/avformat.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg/avformat.pas b/src/lib/ffmpeg/avformat.pas
index 81018333..b1a4407d 100644
--- a/src/lib/ffmpeg/avformat.pas
+++ b/src/lib/ffmpeg/avformat.pas
@@ -290,7 +290,7 @@ function av_new_packet(var pkt: TAVPacket; size: cint): cint;
function av_get_packet(s: PByteIOContext; var pkt: TAVPacket; size: cint): cint;
cdecl; external av__format;
-{$IF LIBAVCODEC_VERSION < 52032000} // < 52.32.0
+{$IF LIBAVFORMAT_VERSION < 52032000} // < 52.32.0
(**
* @warning This is a hack - the packet memory allocation stuff is broken. The
* packet is allocated if it was not really allocated.
@@ -1762,7 +1762,7 @@ begin
end;
{$IFEND}
-{$IF LIBAVCODEC_VERSION < 52032000} // < 52.32.0
+{$IF LIBAVFORMAT_VERSION < 52032000} // < 52.32.0
procedure av_free_packet(pkt: PAVPacket);
begin
if ((pkt <> nil) and (@pkt^.destruct <> nil)) then