]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/ffmpeg_error.h
x64-exp
[casparcg] / modules / ffmpeg / ffmpeg_error.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/exception/exceptions.h>\r
25 #include <common/utility/string.h>\r
26 \r
27 #include <string>\r
28 \r
29 namespace caspar { namespace ffmpeg {\r
30 \r
31 struct ffmpeg_error : virtual caspar_exception{};\r
32 struct averror_bsf_not_found : virtual ffmpeg_error{};\r
33 struct averror_decoder_not_found : virtual ffmpeg_error{};\r
34 struct averror_demuxer_not_found : virtual ffmpeg_error{};\r
35 struct averror_encoder_not_found : virtual ffmpeg_error{};\r
36 struct averror_eof : virtual ffmpeg_error{};\r
37 struct averror_exit : virtual ffmpeg_error{};\r
38 struct averror_filter_not_found : virtual ffmpeg_error{};\r
39 struct averror_muxer_not_found : virtual ffmpeg_error{};\r
40 struct averror_option_not_found : virtual ffmpeg_error{};\r
41 struct averror_patchwelcome : virtual ffmpeg_error{};\r
42 struct averror_protocol_not_found : virtual ffmpeg_error{};\r
43 struct averror_stream_not_found : virtual ffmpeg_error{};\r
44 \r
45 std::string av_error_str(int errn);\r
46 \r
47 void throw_on_ffmpeg_error(int ret, const char* source, const char* func, const char* local_func, const char* file, int line);\r
48 void throw_on_ffmpeg_error(int ret, const std::wstring& source, const char* func, const char* local_func, const char* file, int line);\r
49 \r
50 \r
51 //#define THROW_ON_ERROR(ret, source, func) throw_on_ffmpeg_error(ret, source, __FUNC__, __FILE__, __LINE__)\r
52 \r
53 #define THROW_ON_ERROR_STR_(call) #call\r
54 #define THROW_ON_ERROR_STR(call) THROW_ON_ERROR_STR_(call)\r
55 \r
56 #define THROW_ON_ERROR(ret, func, source) \\r
57                 throw_on_ffmpeg_error(ret, source, func, __FUNCTION__, __FILE__, __LINE__);             \r
58 \r
59 #define THROW_ON_ERROR2(call, source)                                                                           \\r
60         [&]() -> int                                                                                                                    \\r
61         {                                                                                                                                               \\r
62                 int ret = call;                                                                                                         \\r
63                 throw_on_ffmpeg_error(ret, source, THROW_ON_ERROR_STR(call), __FUNCTION__, __FILE__, __LINE__); \\r
64                 return ret;                                                                                                                     \\r
65         }()\r
66 \r
67 #define LOG_ON_ERROR2(call, source)                                                                                     \\r
68         [&]() -> int                                                                                                                    \\r
69         {                                       \\r
70                 int ret = -1;\\r
71                 try{                                                                                                                            \\r
72                  ret = call;                                                                                                                    \\r
73                 throw_on_ffmpeg_error(ret, source, THROW_ON_ERROR_STR(call), __FUNCTION__, __FILE__, __LINE__); \\r
74                 return ret;                                                                                                                     \\r
75                 }catch(...){CASPAR_LOG_CURRENT_EXCEPTION();}                                            \\r
76                 return ret;                                                                                                                     \\r
77         }()\r
78 \r
79 }}\r