diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-08-27 13:04:21 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-08-27 14:38:54 +0200 |
commit | f4634ae8a83d13a1abf3baac8956a3111aa09ed2 (patch) | |
tree | 9a3178cf87c1656a0d3eb6ab0a84add6871a34ef /libavformat | |
parent | 21015109ec0fac0f104a5355f272ecb956ba3f4e (diff) | |
download | ffmpeg-f4634ae8a83d13a1abf3baac8956a3111aa09ed2.tar.gz |
flv: Fix the help string
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/flvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 11e7be147c..8ed724b0ff 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -932,7 +932,7 @@ static int flv_read_seek(AVFormatContext *s, int stream_index, #define OFFSET(x) offsetof(FLVContext, x) #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM static const AVOption options[] = { - { "flv_metadata", "Allocate streams according the onMetaData array", OFFSET(trust_metadata), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VD }, + { "flv_metadata", "Allocate streams according to the onMetaData array", OFFSET(trust_metadata), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VD }, { NULL } }; |