/src/dump_yaml.h
https://code.google.com/ · C Header · 42 lines · 13 code · 5 blank · 24 comment · 0 complexity · 845c6fa1939bc9489840328f513da0eb MD5 · raw file
- /*
- $Id: dump_yaml.h 231 2011-06-27 13:46:19Z marc.noirot $
- FLV Metadata updater
- Copyright (C) 2007-2012 Marc Noirot <marc.noirot AT gmail.com>
- This file is part of FLVMeta.
- FLVMeta is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- FLVMeta 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 General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with FLVMeta; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #ifndef __DUMP_YAML_H__
- #define __DUMP_YAML_H__
- #include "flvmeta.h"
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- /* YAML dumping functions */
- void dump_yaml_setup_metadata_dump(flv_parser * parser);
- int dump_yaml_file(flv_parser * parser, const flvmeta_opts * options);
- int dump_yaml_amf_data(const amf_data * data);
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
- #endif /* __DUMP_YAML_H__ */