aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-2.1/libavutil/opt.pas
diff options
context:
space:
mode:
authorbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2013-12-23 14:33:11 +0000
committerbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2013-12-23 14:33:11 +0000
commit97c789b9a2c6c626e9f54e0383eb8618c870b9c6 (patch)
tree927464a950cfc1e0e6e0eb035bee71d1063ad8fb /src/lib/ffmpeg-2.1/libavutil/opt.pas
parent83a059881e7f7f3d4e195d46853b08bca1a1cd95 (diff)
downloadusdx-97c789b9a2c6c626e9f54e0383eb8618c870b9c6.tar.gz
usdx-97c789b9a2c6c626e9f54e0383eb8618c870b9c6.tar.xz
usdx-97c789b9a2c6c626e9f54e0383eb8618c870b9c6.zip
Fix typos in ffmpeg-2.1
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3046 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--src/lib/ffmpeg-2.1/libavutil/opt.pas12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/ffmpeg-2.1/libavutil/opt.pas b/src/lib/ffmpeg-2.1/libavutil/opt.pas
index 983e923b..c2fa6798 100644
--- a/src/lib/ffmpeg-2.1/libavutil/opt.pas
+++ b/src/lib/ffmpeg-2.1/libavutil/opt.pas
@@ -49,11 +49,11 @@ type
AV_OPT_TYPE_RATIONAL,
AV_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length
AV_OPT_TYPE_CONST = 128,
- AV_OPT_TYPE_COLOR = $434F4C52 ///< MKBETAG('C','O','L','R'),
- AV_OPT_TYPE_DURATION = $44555220 ///< MKBETAG('D','U','R',' '),
+ AV_OPT_TYPE_COLOR = $434F4C52, ///< MKBETAG('C','O','L','R'),
+ AV_OPT_TYPE_DURATION = $44555220, ///< MKBETAG('D','U','R',' '),
AV_OPT_TYPE_PIXEL_FMT = $50464D54, ///< MKBETAG('P','F','M','T')
AV_OPT_TYPE_SAMPLE_FMT = $53464D54, ///< MKBETAG('S','F','M','T')
- AV_OPT_TYPE_IMAGE_SIZE = $53495A45 ///< MKBETAG('S','I','Z','E'), offset must point to two consecutive integers
+ AV_OPT_TYPE_IMAGE_SIZE = $53495A45, ///< MKBETAG('S','I','Z','E'), offset must point to two consecutive integers
AV_OPT_TYPE_VIDEO_RATE = $56524154 ///< MKBETAG('V','R','A','T'), offset must point to AVRational
{$ENDIF}
);
@@ -334,9 +334,9 @@ function av_opt_set_dict(obj: pointer; var options: PAVDictionary): cint;
* AVERROR(EINVAL) if no key is present
*
*)
-av_opt_get_key_value(ropts: {const} PPAnsiChar;
- key_val_sep: {const} PAnsiChar; pairs_sep: {const} PAnsiChar
- flags: byte,
+function av_opt_get_key_value(ropts: {const} PPAnsiChar;
+ key_val_sep: {const} PAnsiChar; pairs_sep: {const} PAnsiChar;
+ flags: byte;
rkey, rval: PPAnsiChar): cint;
cdecl; external av__util;