Bug 1839170 - Refactor Snap pulling, Add Firefox Snap Core22 and GNOME 42 SDK symbols...
[gecko.git] / dom / media / hls / HLSUtils.h
blobd5505fbd1dc003156b12ac5fca0239989f741c3a
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef HLSUtils_h_
8 #define HLSUtils_h_
10 #include "mozilla/Logging.h"
11 // Logger
12 mozilla::LogModule* GetHLSLog();
14 #define HLS_DEBUG(TAG, format, ...) \
15 MOZ_LOG(GetHLSLog(), mozilla::LogLevel::Debug, \
16 (TAG "(%p)::%s: " format, this, __func__, ##__VA_ARGS__))
17 #define HLS_DEBUG_NON_MEMBER(TAG, format, ...) \
18 MOZ_LOG(GetHLSLog(), mozilla::LogLevel::Debug, \
19 (TAG " %s: " format, __func__, ##__VA_ARGS__))
21 #endif // HLSUtils_h_