Squeezelite.proto 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. syntax = "proto3";
  2. import "customoptions.proto";
  3. import "nanopb.proto";
  4. option (nanopb_fileopt).enum_to_string = true;
  5. package sys.squeezelite;
  6. enum outputs {
  7. UNKNOWN = 0;
  8. I2S = 1;
  9. SPDIF = 2;
  10. BT = 3;
  11. }
  12. message bt {
  13. option (nanopb_msgopt).packed_struct = true;
  14. option (nanopb_msgopt).msgid = 10039;
  15. string sink_name = 1 [(nanopb).max_length= 128];
  16. string pin = 2 [(nanopb).max_length= 16];
  17. }
  18. // Enum for the type of resampling algorithm
  19. enum algorythms {
  20. DISABLED = 0;
  21. BASIC_LINEAR = 1; // Basic linear interpolation
  22. THIRTEEN_TAPS = 2; // 13 taps
  23. TWENTY_ONE_TAPS = 3; // 21 taps
  24. }
  25. // ResampleOptions represents the resampling options for Squeezelite
  26. message options {
  27. option (nanopb_msgopt).packed_struct = true;
  28. option (nanopb_msgopt).msgid = 10040;
  29. algorythms algorithm = 1; // The resampling algorithm to use
  30. bool interpolate_filter_coefficients = 2; // Whether to interpolate filter coefficients
  31. }
  32. enum rates {
  33. R_NONE = 0; // Default value, can be used to represent an unspecified rate
  34. R_8000 = 8000;
  35. R_11025 = 11025;
  36. R_12000 = 12000;
  37. R_16000 = 16000;
  38. R_22050 = 22050;
  39. R_24000 = 24000;
  40. R_32000 = 32000;
  41. R_44100 = 44100;
  42. R_48000 = 48000;
  43. R_88200 = 88200;
  44. R_96000 = 96000;
  45. R_176400 = 176400;
  46. R_192000 = 192000;
  47. R_352800 = 352800;
  48. R_384000 = 384000;
  49. R_705600 = 705600;
  50. R_768000 = 768000;
  51. }
  52. enum debug_levels {
  53. DEFAULT = 0;
  54. ERROR = 1;
  55. WARN = 2;
  56. INFO = 3;
  57. DEBUG = 4;
  58. SDEBUG = 5;
  59. }
  60. enum codecs {
  61. c_undefined = 0;
  62. c_alac = 1;
  63. c_ogg = 2;
  64. c_ops = 3;
  65. c_flac = 4;
  66. c_pcm = 5;
  67. c_mp3 = 6;
  68. c_mad = 7;
  69. c_mpg = 8;
  70. }
  71. message rates_opt {
  72. option (nanopb_msgopt).packed_struct = true;
  73. option (nanopb_msgopt).msgid = 10041;
  74. rates min = 1;
  75. rates max = 2;
  76. repeated rates list = 3 [(nanopb).type = FT_POINTER]; // [(nanopb).max_count= 10];
  77. }
  78. message buffer_opt {
  79. option (nanopb_msgopt).packed_struct = true;
  80. option (nanopb_msgopt).msgid = 10042;
  81. uint32 stream = 1 [(cust_field).v_uint32 = 500];
  82. uint32 output = 2 [(cust_field).v_uint32 = 2000];
  83. }
  84. message logging_opt {
  85. option (nanopb_msgopt).packed_struct = true;
  86. debug_levels output = 1 [(cust_field).v_string = "DEBUG"];
  87. debug_levels stream = 2 [(cust_field).v_string = "DEBUG"];
  88. debug_levels decode = 3 [(cust_field).v_string = "DEBUG"];
  89. debug_levels slimproto = 4 [(cust_field).v_string = "DEBUG"];
  90. debug_levels ir = 5 [(cust_field).v_string = "DEBUG"];
  91. debug_levels all = 6 [(cust_field).v_string = "DEBUG"];
  92. }
  93. message config {
  94. option (nanopb_msgopt).packed_struct = true;
  95. option (nanopb_msgopt).msgid = 10044;
  96. // Output device configuration
  97. outputs output_type = 1 ;
  98. // Sample rates supported
  99. rates_opt rates = 2;
  100. // Timeout (seconds) for switching off amp GPIO
  101. // default is to keep the device 'on' all the time
  102. int32 amp_gpio_timeout = 3 [(cust_field).v_int32 = 30];
  103. // tRead wave and aiff format from header, ignore server parameters
  104. bool wav_aiff_header_parsing = 4;
  105. // Server connection options
  106. string server_name_ip = 5 [(nanopb).max_length= 128];
  107. uint32 server_port = 6;
  108. // Allow disabling squeezelite to use the
  109. // device in "detached mode"
  110. bool enabled = 7 [(cust_field).v_bool = true];
  111. bt output_bt = 8;
  112. // enable debugging here
  113. logging_opt log = 9 ;
  114. // Max sample rate reported to server
  115. uint32 max_rate = 10;
  116. buffer_opt buffers = 11;
  117. string resample = 12 [(nanopb).type = FT_POINTER];
  118. repeated codecs included_codex = 13 [(nanopb).type = FT_POINTER];
  119. repeated codecs excluded_codex = 14 [(nanopb).type = FT_POINTER];
  120. }
  121. message profile {
  122. option (nanopb_msgopt).packed_struct = true;
  123. string name = 1 [(nanopb).type = FT_POINTER];
  124. config profile = 2 ;
  125. }