Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-08-31 01:51:49 +0400
committerMartin Storsjö <martin@martin.st>2012-09-01 01:27:27 +0400
commit12c8912de2f2c1a235a7578d6a288e217c3fb504 (patch)
treec4e91bd670ae3efcc8bd7d819b0bdb46fe8ef7e4 /libavformat
parent235f74db5906f7a371fbd924b88ea9273a3a44af (diff)
crypto: Remove a stray double space
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/crypto.c b/libavformat/crypto.c
index 7095360c85..93c9f23f68 100644
--- a/libavformat/crypto.c
+++ b/libavformat/crypto.c
@@ -48,7 +48,7 @@ typedef struct {
#define D AV_OPT_FLAG_DECODING_PARAM
static const AVOption options[] = {
{"key", "AES decryption key", OFFSET(key), AV_OPT_TYPE_BINARY, .flags = D },
- {"iv", "AES decryption initialization vector", OFFSET(iv), AV_OPT_TYPE_BINARY, .flags = D },
+ {"iv", "AES decryption initialization vector", OFFSET(iv), AV_OPT_TYPE_BINARY, .flags = D },
{ NULL }
};