diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-02-28 00:30:51 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-02-28 00:30:51 +0000 |
commit | 690cae770f801a447cb31235694b8f85a20c4459 (patch) | |
tree | d1018655447223c012926912ad439b1dac0e5263 /src/lib/ffmpeg-1.0 | |
parent | 3a8358b7e065ef73542d49d0d60b128ffd6cf78c (diff) | |
download | usdx-690cae770f801a447cb31235694b8f85a20c4459.tar.gz usdx-690cae770f801a447cb31235694b8f85a20c4459.tar.xz usdx-690cae770f801a447cb31235694b8f85a20c4459.zip |
dict.pas
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2956 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg-1.0/libavutil/dict.pas | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/ffmpeg-1.0/libavutil/dict.pas b/src/lib/ffmpeg-1.0/libavutil/dict.pas index d141becb..915c6e2d 100644 --- a/src/lib/ffmpeg-1.0/libavutil/dict.pas +++ b/src/lib/ffmpeg-1.0/libavutil/dict.pas @@ -19,7 +19,7 @@ * This is a part of the Pascal port of ffmpeg. * * Conversion of libavutil/dict.h - * avutil version 51.54.100 + * avutil version 51.73.101 * *) @@ -62,6 +62,15 @@ function av_dict_get(m: PAVDictionary; {const} key: PAnsiChar; {const} prev: PAV cdecl; external av__util; (** + * Get number of entries in dictionary. + * + * @param m dictionary + * @return number of entries in dictionary + *) +function av_dict_count({const} m: PAVDictionary): cint; + cdecl; external av__util; + +(** * Set the given entry in *pm, overwriting an existing entry. * * @param pm pointer to a pointer to a dictionary struct. If *pm is NULL |