From 35e7fc60301ecddf841868adfb2965277cb79731 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 1 Aug 2016 02:51:56 +0200 Subject: avformat/tee: Factor parse_slave_options() out Reviewed-by: Nicolas George Signed-off-by: Michael Niedermayer --- libavformat/tee_common.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libavformat/tee_common.h (limited to 'libavformat/tee_common.h') diff --git a/libavformat/tee_common.h b/libavformat/tee_common.h new file mode 100644 index 0000000..dcd7f63 --- /dev/null +++ b/libavformat/tee_common.h @@ -0,0 +1,30 @@ +/* + * Tee common code + * Copyright (c) 2016 Michael Niedermayer + * + * 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 -- cgit v1.1