]> git.sesse.net Git - casparcg/blobdiff - modules/flash/util/swf.h
Fixed bug where audio filter did not use the input channel layout of a stream
[casparcg] / modules / flash / util / swf.h
index 46675b5c295e6ce708a3814d969b5c6ef1a25143..c22d2da7e2ad914691a272b851b04de4ac026a41 100644 (file)
@@ -1,11 +1,55 @@
-#pragma once\r
-\r
-#include <string>\r
-\r
-#include <boost/property_tree/ptree_fwd.hpp>\r
-\r
-namespace caspar { namespace flash {\r
-\r
-std::string read_template_meta_info(const std::wstring& filename);\r
-\r
+/*
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
+*
+* This file is part of CasparCG (www.casparcg.com).
+*
+* CasparCG 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 3 of the License, or
+* (at your option) any later version.
+*
+* CasparCG 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 CasparCG. If not, see <http://www.gnu.org/licenses/>.
+*
+* Author: Robert Nagy, ronag89@gmail.com
+*/
+
+#pragma once
+
+#include <cstdint>
+#include <string>
+#include <array>
+
+namespace caspar { namespace flash {
+
+std::string read_template_meta_info(const std::wstring& filename);
+
+struct swf_t
+{
+       struct header_t
+       {
+               header_t(const std::wstring& filename);
+
+               std::array<std::uint8_t, 3>     signature;
+               std::uint8_t                            version;
+               std::uint32_t                           file_length;
+               std::uint32_t                           frame_width;
+               std::uint32_t                           frame_height;
+               std::uint16_t                           frame_rate;
+               std::uint16_t                           frame_count;
+
+               bool                                            valid;
+
+       } header;
+
+       std::vector<char>                               data;
+
+       swf_t(const std::wstring& filename);
+};
+
 }}
\ No newline at end of file