aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-0.10
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-05-24 09:09:01 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-05-24 09:09:01 +0000
commit52aa127d05b31ac99fd3b8fe5670d57a63779be7 (patch)
tree1dbb3ba5a6b62a80cb7228906d4d4b1607ec8a01 /src/lib/ffmpeg-0.10
parentc2395dcb9f75e7a75429650ba138d20cb160d531 (diff)
downloadusdx-52aa127d05b31ac99fd3b8fe5670d57a63779be7.tar.gz
usdx-52aa127d05b31ac99fd3b8fe5670d57a63779be7.tar.xz
usdx-52aa127d05b31ac99fd3b8fe5670d57a63779be7.zip
add missing avformat_find_stream_info, av_find_best_stream, avformat_open_input and PPAVCodec
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2887 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-0.10')
-rw-r--r--src/lib/ffmpeg-0.10/avcodec.pas1
-rw-r--r--src/lib/ffmpeg-0.10/avformat.pas6
2 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/ffmpeg-0.10/avcodec.pas b/src/lib/ffmpeg-0.10/avcodec.pas
index cf4e9e8b..d1c42f31 100644
--- a/src/lib/ffmpeg-0.10/avcodec.pas
+++ b/src/lib/ffmpeg-0.10/avcodec.pas
@@ -1736,6 +1736,7 @@ type
PAVClass = ^TAVClass;
+ PPAVCodec = ^PAVCodec;
PAVCodec = ^TAVCodec;
PAVHWAccel = ^TAVHWAccel;
diff --git a/src/lib/ffmpeg-0.10/avformat.pas b/src/lib/ffmpeg-0.10/avformat.pas
index 31d0777d..e5b1f42a 100644
--- a/src/lib/ffmpeg-0.10/avformat.pas
+++ b/src/lib/ffmpeg-0.10/avformat.pas
@@ -1716,7 +1716,7 @@ function av_open_input_file(var ic_ptr: PAVFormatContext; filename: PAnsiChar;
*
* @note If you want to use custom IO, preallocate the format context and set its pb field.
*)
-function avformat_open_input(ps: {PPAVFormatContext} pointer; {const} filename: PAnsiChar; fmt: PAVInputFormat; options: {PPAVDictionary} pointer): cint;
+function avformat_open_input(ps: PPAVFormatContext; {const} filename: PAnsiChar; fmt: PAVInputFormat; options: PPAVDictionary): cint;
cdecl; external av__format;
function av_demuxer_open(ic: PAVFormatContext; ap: TAVFormatParameters): cint;
@@ -1761,7 +1761,7 @@ function av_find_stream_info(ic: PAVFormatContext): cint; {deprecated}
* @todo Let the user decide somehow what information is needed so that
* we do not waste time getting stuff the user does not need.
*)
-function avformat_find_stream_info(ic: PAVFormatContext; options: {PPAVDictionary} pointer): cint;
+function avformat_find_stream_info(ic: PAVFormatContext; options: PPAVDictionary): cint;
cdecl; external av__format;
(**
@@ -1805,7 +1805,7 @@ function av_find_best_stream(ic: PAVFormatContext;
type_: TAVMediaType;
wanted_stream_nb: cint;
related_stream: cint;
- decoder_ret: {PPAVCodec} pointer;
+ decoder_ret: PPAVCodec;
flags: cint): cint;
cdecl; external av__format;