summaryrefslogtreecommitdiff
path: root/libavformat/srtpproto.c
diff options
context:
space:
mode:
authorTristan Matthews <le.businessman@gmail.com>2014-12-16 14:07:53 -0500
committerMartin Storsjö <martin@martin.st>2014-12-18 11:58:23 +0200
commitf2c614e8c4a935b52bbf86819128d9e797230c20 (patch)
tree74ec9f392f5892322958c0e401b42828b98ec040 /libavformat/srtpproto.c
parent456e93bfdd4cbc5e995dea415019abd0703d0e16 (diff)
srtpproto: fix option flag type
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/srtpproto.c')
-rw-r--r--libavformat/srtpproto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/srtpproto.c b/libavformat/srtpproto.c
index f9b94d7e91..1f818d78b4 100644
--- a/libavformat/srtpproto.c
+++ b/libavformat/srtpproto.c
@@ -42,8 +42,8 @@ typedef struct SRTPProtoContext {
static const AVOption options[] = {
{ "srtp_out_suite", "", offsetof(SRTPProtoContext, out_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
{ "srtp_out_params", "", offsetof(SRTPProtoContext, out_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
- { "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
- { "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
+ { "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
+ { "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
{ NULL }
};