summaryrefslogtreecommitdiffstats
path: root/media/mp4/rcheck.h
blob: 816505606787ae4b93976944be675eb1e633fc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_MP4_RCHECK_H_
#define MEDIA_MP4_RCHECK_H_

#include "base/logging.h"

#define RCHECK(x) \
    do { \
      if (!(x)) { \
        DLOG(ERROR) << "Failure while parsing MP4: " << #x; \
        return false; \
      } \
    } while (0)

#endif  // MEDIA_MP4_RCHECK_H_