diff options
Diffstat (limited to 'src/lib/ffmpeg-2.1/avcodec.pas')
-rw-r--r-- | src/lib/ffmpeg-2.1/avcodec.pas | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ffmpeg-2.1/avcodec.pas b/src/lib/ffmpeg-2.1/avcodec.pas index d08a3471..5aeaee4b 100644 --- a/src/lib/ffmpeg-2.1/avcodec.pas +++ b/src/lib/ffmpeg-2.1/avcodec.pas @@ -144,7 +144,7 @@ const {$ifndef FF_API_DEINTERLACE} {$define FF_API_DEINTERLACE := (LIBAVCODEC_VERSION_MAJOR < 56)} {$endif} -{$ifndef FF_API_DESTRUCT_PACKET +{$ifndef FF_API_DESTRUCT_PACKET} {$define FF_API_DESTRUCT_PACKET := (LIBAVCODEC_VERSION_MAJOR < 56)} {$endif} {$ifndef FF_API_GET_BUFFER} @@ -2034,6 +2034,7 @@ procedure av_frame_set_pkt_size(frame: PAVFrame; val: cint); type TAVCodecInternal = record end; + PAVCodecInternal = ^TAVCodecInternal; PAVCodecContext = ^TAVCodecContext; |