A Python UPnP Media Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.6 KiB

  1. // File : dvdread.i
  2. %module cdvdread
  3. %include "typemaps.i"
  4. %include "stdint.i"
  5. %include "cmalloc.i"
  6. %include "carrays.i"
  7. %include "cdata.i"
  8. %allocators(void);
  9. %include "cpointer.i"
  10. %pointer_cast(void *, unsigned char *, voidptr_to_ucharptr);
  11. typedef long ssize_t;
  12. typedef long long off_t;
  13. %{
  14. #include "dvdread/dvd_reader.h"
  15. #include "dvdread/ifo_read.h"
  16. #include "dvdread/nav_read.h"
  17. %}
  18. %typemap (in,numinputs=1) (unsigned char *uc128, unsigned int uc128) (unsigned char tempa[128], int tempb) {
  19. $1 = tempa;
  20. $2 = tempb = PyInt_AsLong($input);
  21. if (tempb <= 0 || tempb > 128) {
  22. PyErr_SetString(PyExc_ValueError, "int out of range (0,128]");
  23. return NULL;
  24. }
  25. }
  26. %typemap (argout) (unsigned char *uc128, unsigned int uc128) {
  27. $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize(tempa$argnum, tempb$argnum));
  28. }
  29. %typemap (in,numinputs=1) (char *c33, unsigned int c33) (char tempa[33], int tempb) {
  30. $1 = tempa;
  31. $2 = tempb = PyInt_AsLong($input);
  32. if (tempb <= 0 || tempb > 33) {
  33. PyErr_SetString(PyExc_ValueError, "int out of range (0,33]");
  34. return NULL;
  35. }
  36. }
  37. %typemap (argout) (char *c33, unsigned int c33) {
  38. $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize(tempa$argnum, tempb$argnum));
  39. }
  40. int DVDUDFVolumeInfo( dvd_reader_t *, char *c33, unsigned int c33,
  41. unsigned char *uc128, unsigned int uc128);
  42. int DVDISOVolumeInfo( dvd_reader_t *, char *c33, unsigned int c33,
  43. unsigned char *uc128, unsigned int uc128);
  44. /* Clear them */
  45. %typemap (in,numinputs=1) (unsigned char *uc128, unsigned int uc128) (unsigned char tempa[128], int tempb);
  46. %typemap (argout) (unsigned char *uc128, unsigned int uc128);
  47. %typemap (in,numinputs=1) (char *c33, unsigned int c33) (char tempa[33], int tempb);
  48. %typemap (argout) (char *c33, unsigned int c33);
  49. %include dvdread/dvd_reader.h
  50. %include dvdread/ifo_read.h
  51. %include <stdint.h>
  52. %include dvdread/ifo_types.h
  53. %array_functions(audio_attr_t, audio_attr)
  54. %array_functions(cell_playback_t, cell_playback)
  55. %array_functions(cell_position_t, cell_position)
  56. %array_functions(map_ent_t, map_ent)
  57. %array_functions(pgc_program_map_t, pgc_program_map)
  58. %array_functions(pgci_lu_t, pgci_lu)
  59. %array_functions(pgci_srp_t, pgci_srp)
  60. %array_functions(ptt_info_t, ptt_info)
  61. %array_functions(subp_attr_t, subp_attr)
  62. %array_functions(title_info_t, title_info)
  63. %array_functions(ttu_t, ttu)
  64. %array_functions(txtdt_lu_t, txtdt_lu)
  65. %array_functions(unsigned char, uchar)
  66. %array_functions(vm_cmd_t, vm_cmd)
  67. %array_functions(vts_attributes_t, vts_attributes)
  68. %array_functions(vts_tmap_t, vts_tmap)
  69. %include dvdread/nav_read.h