wchar_filename.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVUTIL_WCHAR_FILENAME_H
  19. #define AVUTIL_WCHAR_FILENAME_H
  20. #if defined(_WIN32) && !defined(__MINGW32CE__)
  21. #include <windows.h>
  22. #include "mem.h"
  23. static inline int utf8towchar(const char *filename_utf8, wchar_t **filename_w)
  24. {
  25. int num_chars;
  26. num_chars = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, filename_utf8, -1, NULL, 0);
  27. if (num_chars <= 0) {
  28. *filename_w = NULL;
  29. return 0;
  30. }
  31. *filename_w = (wchar_t *)av_mallocz_array(num_chars, sizeof(wchar_t));
  32. if (!*filename_w) {
  33. errno = ENOMEM;
  34. return -1;
  35. }
  36. MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, *filename_w, num_chars);
  37. return 0;
  38. }
  39. #endif
  40. #endif /* AVUTIL_WCHAR_FILENAME_H */