diff options
Diffstat (limited to 'src/lib/ffmpeg-1.1/libavutil')
-rw-r--r-- | src/lib/ffmpeg-1.1/libavutil/dict.pas | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/ffmpeg-1.1/libavutil/dict.pas b/src/lib/ffmpeg-1.1/libavutil/dict.pas index d141becb..4dcf4107 100644 --- a/src/lib/ffmpeg-1.1/libavutil/dict.pas +++ b/src/lib/ffmpeg-1.1/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 52.13.100 * *) @@ -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 |