blob: 5070317c5ad6a8d5eb169add023ebaa226d948b0 [file] [log] [blame]
// Copyright (c) 2011 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 THIRD_PARTY_FLAC_FLAC_H_
#define THIRD_PARTY_FLAC_FLAC_H_
#pragma once
// This is a shim header to include the right flac headers.
// Use this instead of referencing the flac headers directly.
#if defined(USE_SYSTEM_FLAC)
#include <FLAC/stream_encoder.h>
#else
#include "third_party/flac/include/FLAC/stream_encoder.h"
#endif
#endif // THIRD_PARTY_FLAC_FLAC_H_