ijksdl_extra_log.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*****************************************************************************
  2. * ijksdl_extra_log.h
  3. *****************************************************************************
  4. *
  5. * Copyright (c) 2017 Bilibili
  6. * copyright (c) 2017 Raymond Zheng <raymondzheng1412@gmail.com>
  7. *
  8. * This file is part of ijkPlayer.
  9. *
  10. * ijkPlayer is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * ijkPlayer is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with ijkPlayer; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #ifndef IJKSDL__IJKSDL_EXTRA_LOG_H
  25. #define IJKSDL__IJKSDL_EXTRA_LOG_H
  26. #ifdef __ANDROID__
  27. #include <android/log.h>
  28. void ffp_log_extra_print(int level, const char *tag, const char *fmt, ...);
  29. void ffp_log_extra_vprint(int level, const char *tag, const char *fmt, va_list ap);
  30. #endif
  31. #endif // IJKSDL__IJKSDL_EXTRA_LOG_H