diff options
author | Michael Niedermayer | 2016-08-01 02:51:56 +0200 |
---|---|---|
committer | Michael Niedermayer | 2016-08-02 20:22:55 +0200 |
commit | 35e7fc60301ecddf841868adfb2965277cb79731 (patch) | |
tree | e8103d5d9cb049c15c23953b296016fc630488e0 /libavformat/tee_common.h | |
parent | 8ab200fb8adedc98f935a80539f65bd62136e44f (diff) |
avformat/tee: Factor parse_slave_options() out
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/tee_common.h')
-rw-r--r-- | libavformat/tee_common.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libavformat/tee_common.h b/libavformat/tee_common.h new file mode 100644 index 0000000000..dcd7f63e73 --- /dev/null +++ b/libavformat/tee_common.h @@ -0,0 +1,30 @@ +/* + * Tee common code + * Copyright (c) 2016 Michael Niedermayer <michael@niedermayer.cc> + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with FFmpeg; if not, write to the Free Software * Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVFORMAT_TEE_COMMON_H +#define AVFORMAT_TEE_COMMON_H + +#include "libavutil/dict.h" + +int ff_tee_parse_slave_options(void *log, char *slave, + AVDictionary **options, char **filename); + +#endif |