/sndfile/command_legacy.go

http://github.com/mkb218/gosndfile · Go · 82 lines · 67 code · 7 blank · 8 comment · 7 complexity · 1860d914280969a179f5a1fe7a767065 MD5 · raw file

  1. // +build legacy
  2. package sndfile
  3. // #cgo pkg-config: sndfile
  4. // #include <stdlib.h>
  5. // #include <sndfile.h>
  6. // #include <string.h>
  7. import "C"
  8. import "unsafe"
  9. func broadcastFromC(c *C.SF_BROADCAST_INFO) *BroadcastInfo {
  10. bi := new(BroadcastInfo)
  11. bi.Description = trim(C.GoStringN(&c.description[0], C.int(len(c.description[:]))))
  12. bi.Originator = trim(C.GoStringN(&c.originator[0], C.int(len(c.originator[:]))))
  13. bi.Originator_reference = trim(C.GoStringN(&c.originator_reference[0], C.int(len(c.originator_reference[:]))))
  14. bi.Origination_date = trim(C.GoStringN(&c.origination_date[0], C.int(len(c.origination_date[:]))))
  15. bi.Origination_time = trim(C.GoStringN(&c.origination_time[0], C.int(len(c.origination_time[:]))))
  16. bi.Time_reference_low = uint32(uint(c.time_reference_low))
  17. bi.Time_reference_high = uint32(uint(c.time_reference_high))
  18. bi.Version = uint16(c.version)
  19. bi.Umid = trim(C.GoStringN(&c.umid[0], C.int(len(c.umid[:]))))
  20. coding_history_bytes := make([]byte, 0, c.coding_history_size)
  21. for i, r := range c.coding_history {
  22. if i >= int(c.coding_history_size) {
  23. break
  24. }
  25. coding_history_bytes = append(coding_history_bytes, byte(r))
  26. }
  27. return bi
  28. }
  29. func cFromBroadcast(bi *BroadcastInfo) (c *C.SF_BROADCAST_INFO) {
  30. c = new(C.SF_BROADCAST_INFO)
  31. arrFromGoString(c.description[:], bi.Description)
  32. arrFromGoString(c.originator[:], bi.Originator)
  33. arrFromGoString(c.originator_reference[:], bi.Originator_reference)
  34. arrFromGoString(c.origination_date[:], bi.Origination_date)
  35. arrFromGoString(c.origination_time[:], bi.Origination_time)
  36. c.time_reference_low = C.uint(bi.Time_reference_low)
  37. c.time_reference_high = C.uint(bi.Time_reference_high)
  38. c.version = C.short(bi.Version)
  39. arrFromGoString(c.umid[:], bi.Umid)
  40. ch := bi.Coding_history
  41. if len(bi.Coding_history) > 256 {
  42. ch = bi.Coding_history[0:256]
  43. }
  44. c.coding_history_size = C.uint(len(ch))
  45. for i, r := range ch {
  46. c.coding_history[i] = C.char(r)
  47. }
  48. return c
  49. }
  50. // Set instrument information from file including MIDI base note, keyboard mapping and looping information (start/stop and mode).
  51. // Return true if the file header contains instrument information for the file. false otherwise.
  52. func (f *File) SetInstrument(i *Instrument) bool {
  53. c := new(C.SF_INSTRUMENT)
  54. c.gain = C.int(i.Gain)
  55. c.basenote = C.char(i.Basenote)
  56. c.detune = C.char(i.Detune)
  57. c.velocity_lo = C.char(i.Velocity[0])
  58. c.velocity_hi = C.char(i.Velocity[1])
  59. c.key_lo = C.char(i.Key[0])
  60. c.key_hi = C.char(i.Key[1])
  61. c.loop_count = C.int(i.LoopCount)
  62. var index int
  63. for ; index < i.LoopCount; index++ {
  64. c.loops[index].mode = C.int(i.Loops[index].Mode)
  65. c.loops[index].start = C.uint(i.Loops[index].Start)
  66. c.loops[index].end = C.uint(i.Loops[index].End)
  67. c.loops[index].count = C.uint(i.Loops[index].Count)
  68. }
  69. for ; index < 16; index++ {
  70. c.loops[index].mode = C.int(None)
  71. // why is this necessary? libsndfile doesn't check loopcount for AIFF
  72. }
  73. r := C.sf_command(f.s, C.SFC_SET_INSTRUMENT, unsafe.Pointer(c), C.int(unsafe.Sizeof(*c)))
  74. return (r == C.SF_TRUE)
  75. }