config.h 968 B

12345678910111213141516171819202122232425
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* vim:set ts=2 sw=2 sts=2 et cindent: */
  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/. */
  6. // libav uses an autoconf created config file for compile time definitions.
  7. // Since we're only using a tiny part of the library, the configuration for
  8. // common platforms have been pregenerated, and should be enough for our
  9. // needs.
  10. //
  11. // The platform specific config files contain header existence information and
  12. // things like prefixing requirements. The common header has processor
  13. // architecture definitions and project compilation directives.
  14. #ifndef MOZ_LIBAV_CONFIG_H
  15. #define MOZ_LIBAV_CONFIG_H
  16. #if defined(XP_WIN)
  17. #include "config_win.h"
  18. #elif defined(XP_UNIX)
  19. #include "config_unix.h"
  20. #endif
  21. #include "config_common.h"
  22. #endif