]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/util/util.h
2.1.0: -write_frame: Refactored.
[casparcg] / modules / ffmpeg / producer / util / util.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include <common/forward.h>\r
25 #include <common/spl/memory.h>\r
26 \r
27 #include <core/video_format.h>\r
28 #include <core/frame/pixel_format.h>\r
29 #include <core/mixer/audio/audio_mixer.h>\r
30 \r
31 enum PixelFormat;\r
32 struct AVFrame;\r
33 struct AVFormatContext;\r
34 struct AVPacket;\r
35 struct AVRational;\r
36 struct AVCodecContext;\r
37 \r
38 FORWARD2(caspar, core, struct pixel_format_desc);\r
39 FORWARD2(caspar, core, struct write_frame);\r
40 FORWARD2(caspar, core, struct frame_factory);\r
41 \r
42 namespace caspar { namespace ffmpeg {\r
43                 \r
44 std::shared_ptr<core::audio_buffer> flush_audio();\r
45 std::shared_ptr<core::audio_buffer> empty_audio();\r
46 std::shared_ptr<AVFrame>                        flush_video();\r
47 std::shared_ptr<AVFrame>                        empty_video();\r
48 \r
49 // Utils\r
50 \r
51 static const int CASPAR_PIX_FMT_LUMA = 10; // Just hijack some unual pixel format.\r
52 \r
53 core::field_mode                get_mode(const AVFrame& frame);\r
54 int                                                     make_alpha_format(int format); // NOTE: Be careful about CASPAR_PIX_FMT_LUMA, change it to PIX_FMT_GRAY8 if you want to use the frame inside some ffmpeg function.\r
55 spl::shared_ptr<core::write_frame> make_write_frame(const void* tag, const spl::shared_ptr<AVFrame>& decoded_frame, const spl::shared_ptr<core::frame_factory>& frame_factory, int flags);\r
56 \r
57 spl::shared_ptr<AVPacket> create_packet();\r
58 \r
59 spl::shared_ptr<AVCodecContext> open_codec(AVFormatContext& context,  enum AVMediaType type, int& index);\r
60 spl::shared_ptr<AVFormatContext> open_input(const std::wstring& filename);\r
61 \r
62 bool is_sane_fps(AVRational time_base);\r
63 AVRational fix_time_base(AVRational time_base);\r
64 \r
65 double read_fps(AVFormatContext& context, double fail_value);\r
66 \r
67 std::wstring print_mode(int width, int height, double fps, bool interlaced);\r
68 \r
69 std::wstring probe_stem(const std::wstring stem);\r
70 bool is_valid_file(const std::wstring filename);\r
71 \r
72 }}