format.c 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2010, Digium, Inc.
  5. *
  6. * David Vossel <dvossel@digium.com>
  7. * Mark Spencer <markster@digium.com>
  8. *
  9. * See http://www.asterisk.org for more information about
  10. * the Asterisk project. Please do not directly contact
  11. * any of the maintainers of this project for assistance;
  12. * the project provides a web site, mailing lists and IRC
  13. * channels for your use.
  14. *
  15. * This program is free software, distributed under the terms of
  16. * the GNU General Public License Version 2. See the LICENSE file
  17. * at the top of the source tree.
  18. */
  19. /*!
  20. * \file
  21. * \brief Format API
  22. *
  23. * \author David Vossel <dvossel@digium.com>
  24. * \author Mark Spencer <markster@digium.com>
  25. */
  26. /*** MODULEINFO
  27. <support_level>core</support_level>
  28. ***/
  29. #include "asterisk.h"
  30. ASTERISK_FILE_VERSION(__FILE__, "$Revision$");
  31. #include "asterisk/_private.h"
  32. #include "asterisk/format.h"
  33. #include "asterisk/astobj2.h"
  34. #include "asterisk/lock.h"
  35. #include "asterisk/frame.h"
  36. #include "asterisk/utils.h"
  37. #include "asterisk/cli.h"
  38. #include "asterisk/rtp_engine.h"
  39. #include "asterisk/config.h"
  40. #define FORMAT_CONFIG "codecs.conf"
  41. /*!
  42. * \brief Container for all the format attribute interfaces.
  43. * \note This container uses RWLOCKs instead of MUTEX locks. .
  44. * \note An ao2 container was chosen for fast lookup.
  45. */
  46. static struct ao2_container *interfaces;
  47. /*! a wrapper is used put interfaces into the ao2 container. */
  48. struct interface_ao2_wrapper {
  49. enum ast_format_id id;
  50. const struct ast_format_attr_interface *interface;
  51. };
  52. /*! \brief Format List container, This container is never directly accessed outside
  53. * of this file, and It only exists for building the format_list_array. */
  54. static struct ao2_container *format_list;
  55. /*! \brief Format List array is a read only array protected by a read write lock.
  56. * This array may be used outside this file with the use of reference counting to
  57. * guarantee safety for access by multiple threads. */
  58. static struct ast_format_list *format_list_array;
  59. static size_t format_list_array_len = 0;
  60. /*! \brief Locks the format list array so a reference can be taken safely. */
  61. static ast_rwlock_t format_list_array_lock;
  62. static int interface_cmp_cb(void *obj, void *arg, int flags)
  63. {
  64. struct interface_ao2_wrapper *wrapper1 = obj;
  65. struct interface_ao2_wrapper *wrapper2 = arg;
  66. return (wrapper2->id == wrapper1->id) ? CMP_MATCH | CMP_STOP : 0;
  67. }
  68. static int interface_hash_cb(const void *obj, const int flags)
  69. {
  70. const struct interface_ao2_wrapper *wrapper = obj;
  71. return wrapper->id;
  72. }
  73. void ast_format_copy(struct ast_format *dst, const struct ast_format *src)
  74. {
  75. *dst = *src;
  76. }
  77. void ast_format_set_video_mark(struct ast_format *format)
  78. {
  79. format->fattr.rtp_marker_bit = 1;
  80. }
  81. int ast_format_get_video_mark(const struct ast_format *format)
  82. {
  83. return format->fattr.rtp_marker_bit;
  84. }
  85. static struct interface_ao2_wrapper *find_interface(const struct ast_format *format)
  86. {
  87. struct interface_ao2_wrapper tmp_wrapper = {
  88. .id = format->id,
  89. };
  90. return ao2_find(interfaces, &tmp_wrapper, OBJ_POINTER);
  91. }
  92. static int has_interface(const struct ast_format *format)
  93. {
  94. struct interface_ao2_wrapper *wrapper;
  95. wrapper = find_interface(format);
  96. if (!wrapper) {
  97. return 0;
  98. }
  99. ao2_ref(wrapper, -1);
  100. return 1;
  101. }
  102. int ast_format_sdp_parse(struct ast_format *format, const char *attributes)
  103. {
  104. struct interface_ao2_wrapper *wrapper;
  105. int res;
  106. if (!(wrapper = find_interface(format))) {
  107. return 0;
  108. }
  109. ao2_rdlock(wrapper);
  110. if (!wrapper->interface || !wrapper->interface->format_attr_sdp_parse) {
  111. ao2_unlock(wrapper);
  112. ao2_ref(wrapper, -1);
  113. return 0;
  114. }
  115. res = wrapper->interface->format_attr_sdp_parse(&format->fattr, attributes);
  116. ao2_unlock(wrapper);
  117. ao2_ref(wrapper, -1);
  118. return res;
  119. }
  120. void ast_format_sdp_generate(const struct ast_format *format, unsigned int payload, struct ast_str **str)
  121. {
  122. struct interface_ao2_wrapper *wrapper;
  123. if (!(wrapper = find_interface(format))) {
  124. return;
  125. }
  126. ao2_rdlock(wrapper);
  127. if (!wrapper->interface || !wrapper->interface->format_attr_sdp_generate) {
  128. ao2_unlock(wrapper);
  129. ao2_ref(wrapper, -1);
  130. return;
  131. }
  132. wrapper->interface->format_attr_sdp_generate(&format->fattr, payload, str);
  133. ao2_unlock(wrapper);
  134. ao2_ref(wrapper, -1);
  135. }
  136. /*! \internal
  137. * \brief set format attributes using an interface
  138. */
  139. static int format_set_helper(struct ast_format *format, va_list ap)
  140. {
  141. struct interface_ao2_wrapper *wrapper;
  142. if (!(wrapper = find_interface(format))) {
  143. ast_log(LOG_WARNING, "Could not find format interface to set.\n");
  144. return -1;
  145. }
  146. ao2_rdlock(wrapper);
  147. if (!wrapper->interface || !wrapper->interface->format_attr_set) {
  148. ao2_unlock(wrapper);
  149. ao2_ref(wrapper, -1);
  150. return -1;
  151. }
  152. wrapper->interface->format_attr_set(&format->fattr, ap);
  153. ao2_unlock(wrapper);
  154. ao2_ref(wrapper, -1);
  155. return 0;
  156. }
  157. struct ast_format *ast_format_append(struct ast_format *format, ... )
  158. {
  159. va_list ap;
  160. va_start(ap, format);
  161. format_set_helper(format, ap);
  162. va_end(ap);
  163. return format;
  164. }
  165. struct ast_format *ast_format_set(struct ast_format *format, enum ast_format_id id, int set_attributes, ... )
  166. {
  167. /* initialize the structure before setting it. */
  168. ast_format_clear(format);
  169. format->id = id;
  170. if (set_attributes) {
  171. va_list ap;
  172. va_start(ap, set_attributes);
  173. format_set_helper(format, ap);
  174. va_end(ap);
  175. }
  176. return format;
  177. }
  178. void ast_format_clear(struct ast_format *format)
  179. {
  180. format->id = 0;
  181. memset(&format->fattr, 0, sizeof(format->fattr));
  182. }
  183. /*! \internal
  184. * \brief determine if a list of attribute key value pairs are set on a format
  185. */
  186. static int format_isset_helper(const struct ast_format *format, va_list ap)
  187. {
  188. int res;
  189. struct interface_ao2_wrapper *wrapper;
  190. struct ast_format tmp = {
  191. .id = format->id,
  192. .fattr = { { 0, }, },
  193. };
  194. if (!(wrapper = find_interface(format))) {
  195. return -1;
  196. }
  197. ao2_rdlock(wrapper);
  198. if (!wrapper->interface ||
  199. !wrapper->interface->format_attr_set ||
  200. !wrapper->interface->format_attr_cmp) {
  201. ao2_unlock(wrapper);
  202. ao2_ref(wrapper, -1);
  203. return -1;
  204. }
  205. /* if isset is present, use that function, else just build a new
  206. * format and use the cmp function */
  207. if (wrapper->interface->format_attr_isset) {
  208. res = wrapper->interface->format_attr_isset(&format->fattr, ap);
  209. } else {
  210. wrapper->interface->format_attr_set(&tmp.fattr, ap);
  211. /* use our tmp structure to tell if the attributes are set or not */
  212. res = wrapper->interface->format_attr_cmp(&tmp.fattr, &format->fattr);
  213. res = (res == AST_FORMAT_CMP_NOT_EQUAL) ? -1 : 0;
  214. }
  215. ao2_unlock(wrapper);
  216. ao2_ref(wrapper, -1);
  217. return res;
  218. }
  219. int ast_format_isset(const struct ast_format *format, ... )
  220. {
  221. va_list ap;
  222. int res;
  223. va_start(ap, format);
  224. res = format_isset_helper(format, ap);
  225. va_end(ap);
  226. return res;
  227. }
  228. int ast_format_get_value(const struct ast_format *format, int key, void *value)
  229. {
  230. int res = 0;
  231. struct interface_ao2_wrapper *wrapper;
  232. if (!(wrapper = find_interface(format))) {
  233. return -1;
  234. }
  235. ao2_rdlock(wrapper);
  236. if (!wrapper->interface ||
  237. !wrapper->interface->format_attr_get_val) {
  238. ao2_unlock(wrapper);
  239. ao2_ref(wrapper, -1);
  240. return -1;
  241. }
  242. res = wrapper->interface->format_attr_get_val(&format->fattr, key, value);
  243. ao2_unlock(wrapper);
  244. ao2_ref(wrapper, -1);
  245. return res;
  246. }
  247. /*! \internal
  248. * \brief cmp format attributes using an interface
  249. */
  250. static enum ast_format_cmp_res format_cmp_helper(const struct ast_format *format1, const struct ast_format *format2)
  251. {
  252. enum ast_format_cmp_res res = AST_FORMAT_CMP_EQUAL;
  253. struct interface_ao2_wrapper *wrapper;
  254. if (!(wrapper = find_interface(format1))) {
  255. return res;
  256. }
  257. ao2_rdlock(wrapper);
  258. if (!wrapper->interface || !wrapper->interface->format_attr_cmp) {
  259. ao2_unlock(wrapper);
  260. ao2_ref(wrapper, -1);
  261. return res;
  262. }
  263. res = wrapper->interface->format_attr_cmp(&format1->fattr, &format2->fattr);
  264. ao2_unlock(wrapper);
  265. ao2_ref(wrapper, -1);
  266. return res;
  267. }
  268. enum ast_format_cmp_res ast_format_cmp(const struct ast_format *format1, const struct ast_format *format2)
  269. {
  270. if (format1->id != format2->id) {
  271. return AST_FORMAT_CMP_NOT_EQUAL;
  272. }
  273. return format_cmp_helper(format1, format2);
  274. }
  275. /*! \internal
  276. * \brief get joint format attributes using an interface
  277. */
  278. static int format_joint_helper(const struct ast_format *format1, const struct ast_format *format2, struct ast_format *result)
  279. {
  280. int res = 0;
  281. struct interface_ao2_wrapper *wrapper;
  282. if (!(wrapper = find_interface(format1))) {
  283. /* if no interface is present, we assume formats are joint by id alone */
  284. return res;
  285. }
  286. ao2_rdlock(wrapper);
  287. if (wrapper->interface && wrapper->interface->format_attr_get_joint) {
  288. res = wrapper->interface->format_attr_get_joint(&format1->fattr, &format2->fattr, &result->fattr);
  289. }
  290. ao2_unlock(wrapper);
  291. ao2_ref(wrapper, -1);
  292. return res;
  293. }
  294. int ast_format_joint(const struct ast_format *format1, const struct ast_format *format2, struct ast_format *result)
  295. {
  296. if (format1->id != format2->id) {
  297. return -1;
  298. }
  299. result->id = format1->id;
  300. return format_joint_helper(format1, format2, result);
  301. }
  302. uint64_t ast_format_id_to_old_bitfield(enum ast_format_id id)
  303. {
  304. switch (id) {
  305. /*! G.723.1 compression */
  306. case AST_FORMAT_G723_1:
  307. return (1ULL << 0);
  308. /*! GSM compression */
  309. case AST_FORMAT_GSM:
  310. return (1ULL << 1);
  311. /*! Raw mu-law data (G.711) */
  312. case AST_FORMAT_ULAW:
  313. return (1ULL << 2);
  314. /*! Raw A-law data (G.711) */
  315. case AST_FORMAT_ALAW:
  316. return (1ULL << 3);
  317. /*! ADPCM (G.726, 32kbps, AAL2 codeword packing) */
  318. case AST_FORMAT_G726_AAL2:
  319. return (1ULL << 4);
  320. /*! ADPCM (IMA) */
  321. case AST_FORMAT_ADPCM:
  322. return (1ULL << 5);
  323. /*! Raw 16-bit Signed Linear (8000 Hz) PCM */
  324. case AST_FORMAT_SLINEAR:
  325. return (1ULL << 6);
  326. /*! LPC10, 180 samples/frame */
  327. case AST_FORMAT_LPC10:
  328. return (1ULL << 7);
  329. /*! G.729A audio */
  330. case AST_FORMAT_G729A:
  331. return (1ULL << 8);
  332. /*! SpeeX Free Compression */
  333. case AST_FORMAT_SPEEX:
  334. return (1ULL << 9);
  335. /*! iLBC Free Compression */
  336. case AST_FORMAT_ILBC:
  337. return (1ULL << 10);
  338. /*! ADPCM (G.726, 32kbps, RFC3551 codeword packing) */
  339. case AST_FORMAT_G726:
  340. return (1ULL << 11);
  341. /*! G.722 */
  342. case AST_FORMAT_G722:
  343. return (1ULL << 12);
  344. /*! G.722.1 (also known as Siren7, 32kbps assumed) */
  345. case AST_FORMAT_SIREN7:
  346. return (1ULL << 13);
  347. /*! G.722.1 Annex C (also known as Siren14, 48kbps assumed) */
  348. case AST_FORMAT_SIREN14:
  349. return (1ULL << 14);
  350. /*! Raw 16-bit Signed Linear (16000 Hz) PCM */
  351. case AST_FORMAT_SLINEAR16:
  352. return (1ULL << 15);
  353. /*! G.719 (64 kbps assumed) */
  354. case AST_FORMAT_G719:
  355. return (1ULL << 32);
  356. /*! SpeeX Wideband (16kHz) Free Compression */
  357. case AST_FORMAT_SPEEX16:
  358. return (1ULL << 33);
  359. /*! Opus audio (8kHz, 16kHz, 24kHz, 48Khz) */
  360. case AST_FORMAT_OPUS:
  361. return (1ULL << 34);
  362. /*! Raw mu-law data (G.711) */
  363. case AST_FORMAT_TESTLAW:
  364. return (1ULL << 47);
  365. /*! H.261 Video */
  366. case AST_FORMAT_H261:
  367. return (1ULL << 18);
  368. /*! H.263 Video */
  369. case AST_FORMAT_H263:
  370. return (1ULL << 19);
  371. /*! H.263+ Video */
  372. case AST_FORMAT_H263_PLUS:
  373. return (1ULL << 20);
  374. /*! H.264 Video */
  375. case AST_FORMAT_H264:
  376. return (1ULL << 21);
  377. /*! MPEG4 Video */
  378. case AST_FORMAT_MP4_VIDEO:
  379. return (1ULL << 22);
  380. /*! VP8 Video */
  381. case AST_FORMAT_VP8:
  382. return (1ULL << 23);
  383. /*! JPEG Images */
  384. case AST_FORMAT_JPEG:
  385. return (1ULL << 16);
  386. /*! PNG Images */
  387. case AST_FORMAT_PNG:
  388. return (1ULL << 17);
  389. /*! T.140 RED Text format RFC 4103 */
  390. case AST_FORMAT_T140RED:
  391. return (1ULL << 26);
  392. /*! T.140 Text format - ITU T.140, RFC 4103 */
  393. case AST_FORMAT_T140:
  394. return (1ULL << 27);
  395. default:
  396. return 0; /* not supported by old bitfield. */
  397. }
  398. return 0;
  399. }
  400. uint64_t ast_format_to_old_bitfield(const struct ast_format *format)
  401. {
  402. return ast_format_id_to_old_bitfield(format->id);
  403. }
  404. struct ast_format *ast_format_from_old_bitfield(struct ast_format *dst, uint64_t src)
  405. {
  406. switch (src) {
  407. /*! G.723.1 compression */
  408. case (1ULL << 0):
  409. return ast_format_set(dst, AST_FORMAT_G723_1, 0);
  410. /*! GSM compression */
  411. case (1ULL << 1):
  412. return ast_format_set(dst, AST_FORMAT_GSM, 0);
  413. /*! Raw mu-law data (G.711) */
  414. case (1ULL << 2):
  415. return ast_format_set(dst, AST_FORMAT_ULAW, 0);
  416. /*! Raw A-law data (G.711) */
  417. case (1ULL << 3):
  418. return ast_format_set(dst, AST_FORMAT_ALAW, 0);
  419. /*! ADPCM (G.726, 32kbps, AAL2 codeword packing) */
  420. case (1ULL << 4):
  421. return ast_format_set(dst, AST_FORMAT_G726_AAL2, 0);
  422. /*! ADPCM (IMA) */
  423. case (1ULL << 5):
  424. return ast_format_set(dst, AST_FORMAT_ADPCM, 0);
  425. /*! Raw 16-bit Signed Linear (8000 Hz) PCM */
  426. case (1ULL << 6):
  427. return ast_format_set(dst, AST_FORMAT_SLINEAR, 0);
  428. /*! LPC10, 180 samples/frame */
  429. case (1ULL << 7):
  430. return ast_format_set(dst, AST_FORMAT_LPC10, 0);
  431. /*! G.729A audio */
  432. case (1ULL << 8):
  433. return ast_format_set(dst, AST_FORMAT_G729A, 0);
  434. /*! SpeeX Free Compression */
  435. case (1ULL << 9):
  436. return ast_format_set(dst, AST_FORMAT_SPEEX, 0);
  437. /*! iLBC Free Compression */
  438. case (1ULL << 10):
  439. return ast_format_set(dst, AST_FORMAT_ILBC, 0);
  440. /*! ADPCM (G.726, 32kbps, RFC3551 codeword packing) */
  441. case (1ULL << 11):
  442. return ast_format_set(dst, AST_FORMAT_G726, 0);
  443. /*! G.722 */
  444. case (1ULL << 12):
  445. return ast_format_set(dst, AST_FORMAT_G722, 0);
  446. /*! G.722.1 (also known as Siren7, 32kbps assumed) */
  447. case (1ULL << 13):
  448. return ast_format_set(dst, AST_FORMAT_SIREN7, 0);
  449. /*! G.722.1 Annex C (also known as Siren14, 48kbps assumed) */
  450. case (1ULL << 14):
  451. return ast_format_set(dst, AST_FORMAT_SIREN14, 0);
  452. /*! Raw 16-bit Signed Linear (16000 Hz) PCM */
  453. case (1ULL << 15):
  454. return ast_format_set(dst, AST_FORMAT_SLINEAR16, 0);
  455. /*! G.719 (64 kbps assumed) */
  456. case (1ULL << 32):
  457. return ast_format_set(dst, AST_FORMAT_G719, 0);
  458. /*! SpeeX Wideband (16kHz) Free Compression */
  459. case (1ULL << 33):
  460. return ast_format_set(dst, AST_FORMAT_SPEEX16, 0);
  461. /*! Opus audio (8kHz, 16kHz, 24kHz, 48Khz) */
  462. case (1ULL << 34):
  463. return ast_format_set(dst, AST_FORMAT_OPUS, 0);
  464. /*! Raw mu-law data (G.711) */
  465. case (1ULL << 47):
  466. return ast_format_set(dst, AST_FORMAT_TESTLAW, 0);
  467. /*! H.261 Video */
  468. case (1ULL << 18):
  469. return ast_format_set(dst, AST_FORMAT_H261, 0);
  470. /*! H.263 Video */
  471. case (1ULL << 19):
  472. return ast_format_set(dst, AST_FORMAT_H263, 0);
  473. /*! H.263+ Video */
  474. case (1ULL << 20):
  475. return ast_format_set(dst, AST_FORMAT_H263_PLUS, 0);
  476. /*! H.264 Video */
  477. case (1ULL << 21):
  478. return ast_format_set(dst, AST_FORMAT_H264, 0);
  479. /*! MPEG4 Video */
  480. case (1ULL << 22):
  481. return ast_format_set(dst, AST_FORMAT_MP4_VIDEO, 0);
  482. /*! VP8 Video */
  483. case (1ULL << 23):
  484. return ast_format_set(dst, AST_FORMAT_VP8, 0);
  485. /*! JPEG Images */
  486. case (1ULL << 16):
  487. return ast_format_set(dst, AST_FORMAT_JPEG, 0);
  488. /*! PNG Images */
  489. case (1ULL << 17):
  490. return ast_format_set(dst, AST_FORMAT_PNG, 0);
  491. /*! T.140 RED Text format RFC 4103 */
  492. case (1ULL << 26):
  493. return ast_format_set(dst, AST_FORMAT_T140RED, 0);
  494. /*! T.140 Text format - ITU T.140, RFC 4103 */
  495. case (1ULL << 27):
  496. return ast_format_set(dst, AST_FORMAT_T140, 0);
  497. }
  498. ast_format_clear(dst);
  499. return NULL;
  500. }
  501. enum ast_format_id ast_format_id_from_old_bitfield(uint64_t src)
  502. {
  503. struct ast_format dst;
  504. if (ast_format_from_old_bitfield(&dst, src)) {
  505. return dst.id;
  506. }
  507. return 0;
  508. }
  509. int ast_format_is_slinear(const struct ast_format *format)
  510. {
  511. if (format->id == AST_FORMAT_SLINEAR ||
  512. format->id == AST_FORMAT_SLINEAR12 ||
  513. format->id == AST_FORMAT_SLINEAR16 ||
  514. format->id == AST_FORMAT_SLINEAR24 ||
  515. format->id == AST_FORMAT_SLINEAR32 ||
  516. format->id == AST_FORMAT_SLINEAR44 ||
  517. format->id == AST_FORMAT_SLINEAR48 ||
  518. format->id == AST_FORMAT_SLINEAR96 ||
  519. format->id == AST_FORMAT_SLINEAR192) {
  520. return 1;
  521. }
  522. return 0;
  523. }
  524. enum ast_format_id ast_format_slin_by_rate(unsigned int rate)
  525. {
  526. if (rate >= 192000) {
  527. return AST_FORMAT_SLINEAR192;
  528. } else if (rate >= 96000) {
  529. return AST_FORMAT_SLINEAR96;
  530. } else if (rate >= 48000) {
  531. return AST_FORMAT_SLINEAR48;
  532. } else if (rate >= 44100) {
  533. return AST_FORMAT_SLINEAR44;
  534. } else if (rate >= 32000) {
  535. return AST_FORMAT_SLINEAR32;
  536. } else if (rate >= 24000) {
  537. return AST_FORMAT_SLINEAR24;
  538. } else if (rate >= 16000) {
  539. return AST_FORMAT_SLINEAR16;
  540. } else if (rate >= 12000) {
  541. return AST_FORMAT_SLINEAR12;
  542. }
  543. return AST_FORMAT_SLINEAR;
  544. }
  545. const char* ast_getformatname(const struct ast_format *format)
  546. {
  547. int x;
  548. const char *ret = "unknown";
  549. size_t f_len;
  550. const struct ast_format_list *f_list = ast_format_list_get(&f_len);
  551. for (x = 0; x < f_len; x++) {
  552. if (ast_format_cmp(&f_list[x].format, format) == AST_FORMAT_CMP_EQUAL) {
  553. ret = f_list[x].name;
  554. break;
  555. }
  556. }
  557. f_list = ast_format_list_destroy(f_list);
  558. return ret;
  559. }
  560. char *ast_getformatname_multiple_byid(char *buf, size_t size, enum ast_format_id id)
  561. {
  562. int x;
  563. unsigned len;
  564. char *start, *end = buf;
  565. size_t f_len;
  566. const struct ast_format_list *f_list = ast_format_list_get(&f_len);
  567. if (!size) {
  568. f_list = ast_format_list_destroy(f_list);
  569. return buf;
  570. }
  571. snprintf(end, size, "(");
  572. len = strlen(end);
  573. end += len;
  574. size -= len;
  575. start = end;
  576. for (x = 0; x < f_len; x++) {
  577. if (f_list[x].format.id == id) {
  578. snprintf(end, size, "%s|", f_list[x].name);
  579. len = strlen(end);
  580. end += len;
  581. size -= len;
  582. }
  583. }
  584. if (start == end) {
  585. ast_copy_string(start, "nothing)", size);
  586. } else if (size > 1) {
  587. *(end - 1) = ')';
  588. }
  589. f_list = ast_format_list_destroy(f_list);
  590. return buf;
  591. }
  592. static struct ast_codec_alias_table {
  593. const char *alias;
  594. const char *realname;
  595. } ast_codec_alias_table[] = {
  596. { "slinear", "slin"},
  597. { "slinear16", "slin16"},
  598. { "g723.1", "g723"},
  599. { "g722.1", "siren7"},
  600. { "g722.1c", "siren14"},
  601. };
  602. static const char *ast_expand_codec_alias(const char *in)
  603. {
  604. int x;
  605. for (x = 0; x < ARRAY_LEN(ast_codec_alias_table); x++) {
  606. if (!strcmp(in,ast_codec_alias_table[x].alias))
  607. return ast_codec_alias_table[x].realname;
  608. }
  609. return in;
  610. }
  611. struct ast_format *ast_getformatbyname(const char *name, struct ast_format *result)
  612. {
  613. int x;
  614. size_t f_len;
  615. const struct ast_format_list *f_list = ast_format_list_get(&f_len);
  616. for (x = 0; x < f_len; x++) {
  617. if (!strcasecmp(f_list[x].name, name) ||
  618. !strcasecmp(f_list[x].name, ast_expand_codec_alias(name))) {
  619. ast_format_copy(result, &f_list[x].format);
  620. f_list = ast_format_list_destroy(f_list);
  621. return result;
  622. }
  623. }
  624. f_list = ast_format_list_destroy(f_list);
  625. return NULL;
  626. }
  627. const char *ast_codec2str(struct ast_format *format)
  628. {
  629. int x;
  630. const char *ret = "unknown";
  631. size_t f_len;
  632. const struct ast_format_list *f_list = ast_format_list_get(&f_len);
  633. for (x = 0; x < f_len; x++) {
  634. if (ast_format_cmp(&f_list[x].format, format) == AST_FORMAT_CMP_EQUAL) {
  635. ret = f_list[x].desc;
  636. break;
  637. }
  638. }
  639. f_list = ast_format_list_destroy(f_list);
  640. return ret;
  641. }
  642. int ast_format_rate(const struct ast_format *format)
  643. {
  644. switch (format->id) {
  645. case AST_FORMAT_SLINEAR12:
  646. return 12000;
  647. case AST_FORMAT_SLINEAR24:
  648. return 24000;
  649. case AST_FORMAT_SLINEAR32:
  650. return 32000;
  651. case AST_FORMAT_SLINEAR44:
  652. return 44100;
  653. case AST_FORMAT_SLINEAR48:
  654. return 48000;
  655. case AST_FORMAT_SLINEAR96:
  656. return 96000;
  657. case AST_FORMAT_SLINEAR192:
  658. return 192000;
  659. case AST_FORMAT_G722:
  660. case AST_FORMAT_SLINEAR16:
  661. case AST_FORMAT_SIREN7:
  662. case AST_FORMAT_SPEEX16:
  663. return 16000;
  664. case AST_FORMAT_SIREN14:
  665. case AST_FORMAT_SPEEX32:
  666. return 32000;
  667. case AST_FORMAT_G719:
  668. return 48000;
  669. case AST_FORMAT_SILK:
  670. if (!(ast_format_isset(format,
  671. SILK_ATTR_KEY_SAMP_RATE,
  672. SILK_ATTR_VAL_SAMP_24KHZ,
  673. AST_FORMAT_ATTR_END))) {
  674. return 24000;
  675. } else if (!(ast_format_isset(format,
  676. SILK_ATTR_KEY_SAMP_RATE,
  677. SILK_ATTR_VAL_SAMP_16KHZ,
  678. AST_FORMAT_ATTR_END))) {
  679. return 16000;
  680. } else if (!(ast_format_isset(format,
  681. SILK_ATTR_KEY_SAMP_RATE,
  682. SILK_ATTR_VAL_SAMP_12KHZ,
  683. AST_FORMAT_ATTR_END))) {
  684. return 12000;
  685. } else {
  686. return 8000;
  687. }
  688. case AST_FORMAT_CELT:
  689. {
  690. int samplerate;
  691. if (!(ast_format_get_value(format,
  692. CELT_ATTR_KEY_SAMP_RATE,
  693. &samplerate))) {
  694. return samplerate;
  695. }
  696. }
  697. /* Opus */
  698. case AST_FORMAT_OPUS:
  699. return 48000;
  700. default:
  701. return 8000;
  702. }
  703. }
  704. static char *show_codecs(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
  705. {
  706. int x, found=0;
  707. size_t f_len;
  708. const struct ast_format_list *f_list;
  709. switch (cmd) {
  710. case CLI_INIT:
  711. e->command = "core show codecs [audio|video|image|text]";
  712. e->usage =
  713. "Usage: core show codecs [audio|video|image|text]\n"
  714. " Displays codec mapping\n";
  715. return NULL;
  716. case CLI_GENERATE:
  717. return NULL;
  718. }
  719. if ((a->argc < 3) || (a->argc > 4)) {
  720. return CLI_SHOWUSAGE;
  721. }
  722. f_list = ast_format_list_get(&f_len);
  723. if (!ast_opt_dont_warn) {
  724. ast_cli(a->fd, "Disclaimer: this command is for informational purposes only.\n"
  725. "\tIt does not indicate anything about your configuration.\n");
  726. }
  727. ast_cli(a->fd, "%8s %5s %8s %s\n","ID","TYPE","NAME","DESCRIPTION");
  728. ast_cli(a->fd, "-----------------------------------------------------------------------------------\n");
  729. for (x = 0; x < f_len; x++) {
  730. if (a->argc == 4) {
  731. if (!strcasecmp(a->argv[3], "audio")) {
  732. if (AST_FORMAT_GET_TYPE(f_list[x].format.id) != AST_FORMAT_TYPE_AUDIO) {
  733. continue;
  734. }
  735. } else if (!strcasecmp(a->argv[3], "video")) {
  736. if (AST_FORMAT_GET_TYPE(f_list[x].format.id) != AST_FORMAT_TYPE_VIDEO) {
  737. continue;
  738. }
  739. } else if (!strcasecmp(a->argv[3], "image")) {
  740. if (AST_FORMAT_GET_TYPE(f_list[x].format.id) != AST_FORMAT_TYPE_IMAGE) {
  741. continue;
  742. }
  743. } else if (!strcasecmp(a->argv[3], "text")) {
  744. if (AST_FORMAT_GET_TYPE(f_list[x].format.id) != AST_FORMAT_TYPE_TEXT) {
  745. continue;
  746. }
  747. } else {
  748. continue;
  749. }
  750. }
  751. ast_cli(a->fd, "%8u %5s %8s (%s)\n",
  752. f_list[x].format.id,
  753. (AST_FORMAT_GET_TYPE(f_list[x].format.id) == AST_FORMAT_TYPE_AUDIO) ? "audio" :
  754. (AST_FORMAT_GET_TYPE(f_list[x].format.id) == AST_FORMAT_TYPE_IMAGE) ? "image" :
  755. (AST_FORMAT_GET_TYPE(f_list[x].format.id) == AST_FORMAT_TYPE_VIDEO) ? "video" :
  756. (AST_FORMAT_GET_TYPE(f_list[x].format.id) == AST_FORMAT_TYPE_TEXT) ? "text" :
  757. "(unk)",
  758. f_list[x].name,
  759. f_list[x].desc);
  760. found = 1;
  761. }
  762. f_list = ast_format_list_destroy(f_list);
  763. if (!found) {
  764. return CLI_SHOWUSAGE;
  765. } else {
  766. return CLI_SUCCESS;
  767. }
  768. }
  769. static char *show_codec_n(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
  770. {
  771. enum ast_format_id format_id;
  772. int x, found = 0;
  773. int type_punned_codec;
  774. size_t f_len;
  775. const struct ast_format_list *f_list;
  776. switch (cmd) {
  777. case CLI_INIT:
  778. e->command = "core show codec";
  779. e->usage =
  780. "Usage: core show codec <number>\n"
  781. " Displays codec mapping\n";
  782. return NULL;
  783. case CLI_GENERATE:
  784. return NULL;
  785. }
  786. if (a->argc != 4) {
  787. return CLI_SHOWUSAGE;
  788. }
  789. if (sscanf(a->argv[3], "%30d", &type_punned_codec) != 1) {
  790. return CLI_SHOWUSAGE;
  791. }
  792. format_id = type_punned_codec;
  793. f_list = ast_format_list_get(&f_len);
  794. for (x = 0; x < f_len; x++) {
  795. if (f_list[x].format.id == format_id) {
  796. found = 1;
  797. ast_cli(a->fd, "%11u %s\n", (unsigned int) format_id, f_list[x].desc);
  798. }
  799. }
  800. if (!found) {
  801. ast_cli(a->fd, "Codec %u not found\n", format_id);
  802. }
  803. f_list = ast_format_list_destroy(f_list);
  804. return CLI_SUCCESS;
  805. }
  806. /* Builtin Asterisk CLI-commands for debugging */
  807. static struct ast_cli_entry my_clis[] = {
  808. AST_CLI_DEFINE(show_codecs, "Displays a list of codecs"),
  809. AST_CLI_DEFINE(show_codec_n, "Shows a specific codec"),
  810. };
  811. static int format_list_add_custom(struct ast_format_list *new)
  812. {
  813. RAII_VAR(struct ast_format_list *, entry, NULL, ao2_cleanup);
  814. if (!(entry = ao2_alloc(sizeof(*entry), NULL))) {
  815. return -1;
  816. }
  817. memcpy(entry, new, sizeof(struct ast_format_list));
  818. entry->custom_entry = 1;
  819. ao2_link(format_list, entry);
  820. return 0;
  821. }
  822. static int format_list_add_static(
  823. const struct ast_format *format,
  824. const char *name,
  825. int samplespersecond,
  826. const char *description,
  827. int fr_len,
  828. int min_ms,
  829. int max_ms,
  830. int inc_ms,
  831. int def_ms,
  832. unsigned int flags,
  833. int cur_ms)
  834. {
  835. struct ast_format_list *entry;
  836. if (!(entry = ao2_alloc(sizeof(*entry), NULL))) {
  837. return -1;
  838. }
  839. ast_format_copy(&entry->format, format);
  840. ast_copy_string(entry->name, name, sizeof(entry->name));
  841. ast_copy_string(entry->desc, description, sizeof(entry->desc));
  842. entry->samplespersecond = samplespersecond;
  843. entry->fr_len = fr_len;
  844. entry->min_ms = min_ms;
  845. entry->max_ms = max_ms;
  846. entry->inc_ms = inc_ms;
  847. entry->def_ms = def_ms;
  848. entry->flags = flags;
  849. entry->cur_ms = cur_ms;
  850. entry->custom_entry = 0;
  851. ao2_link(format_list, entry);
  852. ao2_ref(entry, -1);
  853. return 0;
  854. }
  855. static int list_all_custom(void *obj, void *arg, int flag)
  856. {
  857. struct ast_format_list *entry = obj;
  858. return entry->custom_entry ? CMP_MATCH : 0;
  859. }
  860. static int list_cmp_cb(void *obj, void *arg, int flags)
  861. {
  862. struct ast_format_list *entry1 = obj;
  863. struct ast_format_list *entry2 = arg;
  864. return (ast_format_cmp(&entry1->format, &entry2->format) == AST_FORMAT_CMP_EQUAL) ? CMP_MATCH | CMP_STOP : 0;
  865. }
  866. const struct ast_format_list *ast_format_list_get(size_t *size)
  867. {
  868. struct ast_format_list *list;
  869. ast_rwlock_rdlock(&format_list_array_lock);
  870. ao2_ref(format_list_array, 1);
  871. list = format_list_array;
  872. *size = format_list_array_len;
  873. ast_rwlock_unlock(&format_list_array_lock);
  874. return list;
  875. }
  876. const struct ast_format_list *ast_format_list_destroy(const struct ast_format_list *list)
  877. {
  878. ao2_ref((void *) list, -1);
  879. return NULL;
  880. }
  881. static int build_format_list_array(void)
  882. {
  883. struct ast_format_list *tmp;
  884. size_t arraysize = sizeof(struct ast_format_list) * ao2_container_count(format_list);
  885. int i = 0;
  886. struct ao2_iterator it;
  887. ast_rwlock_wrlock(&format_list_array_lock);
  888. tmp = format_list_array;
  889. if (!(format_list_array = ao2_alloc(arraysize, NULL))) {
  890. format_list_array = tmp;
  891. ast_rwlock_unlock(&format_list_array_lock);
  892. return -1;
  893. }
  894. format_list_array_len = ao2_container_count(format_list);
  895. if (tmp) {
  896. ao2_ref(tmp, -1);
  897. }
  898. /* walk through the container adding elements to the static array */
  899. it = ao2_iterator_init(format_list, 0);
  900. while ((tmp = ao2_iterator_next(&it)) && (i < format_list_array_len)) {
  901. memcpy(&format_list_array[i], tmp, sizeof(struct ast_format_list));
  902. ao2_ref(tmp, -1);
  903. i++;
  904. }
  905. ao2_iterator_destroy(&it);
  906. ast_rwlock_unlock(&format_list_array_lock);
  907. return 0;
  908. }
  909. static int format_list_init(void)
  910. {
  911. struct ast_format tmpfmt;
  912. if (!(format_list = ao2_container_alloc(1, NULL, list_cmp_cb))) {
  913. return -1;
  914. }
  915. /*
  916. * initiate static entries XXX DO NOT CHANGE THIS ORDER!
  917. *
  918. * Reason:
  919. * The order is requried by chan_iax2 to send out the IAX_IE_CODEC_PREFS
  920. * list over the wire. The following order is historical to how v1.8
  921. * and earlier listed the formats in format.c:AST_FORMAT_LIST[]. These
  922. * formats have format compatibility bits assigned which makes chan_iax2
  923. * in particular and other legacy modules aware of them.
  924. */
  925. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G723_1, 0), "g723", 8000, "G.723.1", 20, 30, 300, 30, 30, 0, 0); /*!< G723.1 */
  926. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_GSM, 0), "gsm", 8000, "GSM", 33, 20, 300, 20, 20, 0, 0); /*!< codec_gsm.c */
  927. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ULAW, 0), "ulaw", 8000, "G.711 u-law", 80, 10, 150, 10, 20, 0, 0); /*!< codec_ulaw.c */
  928. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ALAW, 0), "alaw", 8000, "G.711 A-law", 80, 10, 150, 10, 20, 0, 0); /*!< codec_alaw.c */
  929. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G726, 0), "g726", 8000, "G.726 RFC3551", 40, 10, 300, 10, 20, 0, 0); /*!< codec_g726.c */
  930. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ADPCM, 0), "adpcm" , 8000, "ADPCM", 40, 10, 300, 10, 20, 0, 0); /*!< codec_adpcm.c */
  931. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR, 0), "slin", 8000, "16 bit Signed Linear PCM", 160, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0); /*!< Signed linear */
  932. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_LPC10, 0), "lpc10", 8000, "LPC10", 7, 20, 20, 20, 20, 0, 0); /*!< codec_lpc10.c */
  933. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G729A, 0), "g729", 8000, "G.729A", 10, 10, 230, 10, 20, AST_SMOOTHER_FLAG_G729, 0); /*!< Binary commercial distribution */
  934. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SPEEX, 0), "speex", 8000, "SpeeX", 10, 10, 60, 10, 20, 0, 0); /*!< codec_speex.c */
  935. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SPEEX16, 0), "speex16", 16000, "SpeeX 16khz", 10, 10, 60, 10, 20, 0, 0); /*!< codec_speex.c */
  936. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ILBC, 0), "ilbc", 8000, "iLBC", 50, 30, 30, 30, 30, 0, 0); /*!< codec_ilbc.c */ /* inc=30ms - workaround */
  937. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G726_AAL2, 0), "g726aal2", 8000, "G.726 AAL2", 40, 10, 300, 10, 20, 0, 0); /*!< codec_g726.c */
  938. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G722, 0), "g722", 16000, "G722", 80, 10, 150, 10, 20, 0, 0); /*!< codec_g722.c */
  939. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR16, 0), "slin16", 16000, "16 bit Signed Linear PCM (16kHz)", 320, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (16kHz) */
  940. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_JPEG, 0), "jpeg", 0, "JPEG image", 0, 0, 0, 0 ,0 ,0 ,0); /*!< See format_jpeg.c */
  941. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_PNG, 0), "png", 0, "PNG image", 0, 0, 0, 0 ,0 ,0 ,0); /*!< PNG Image format */
  942. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_H261, 0), "h261", 0, "H.261 Video", 0, 0, 0, 0 ,0 ,0 ,0); /*!< H.261 Video Passthrough */
  943. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_H263, 0), "h263", 0, "H.263 Video", 0, 0, 0, 0 ,0 ,0 ,0); /*!< H.263 Passthrough support, see format_h263.c */
  944. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_H263_PLUS, 0), "h263p", 0, "H.263+ Video", 0, 0, 0,0 ,0 ,0, 0); /*!< H.263plus passthrough support See format_h263.c */
  945. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_H264, 0), "h264", 0, "H.264 Video", 0, 0, 0, 0 ,0 ,0, 0); /*!< Passthrough support, see format_h263.c */
  946. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_MP4_VIDEO, 0), "mpeg4", 0, "MPEG4 Video", 0, 0, 0, 0, 0 ,0, 0); /*!< Passthrough support for MPEG4 */
  947. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_T140RED, 0), "red", 1, "T.140 Realtime Text with redundancy", 0, 0, 0,0 ,0 ,0, 0); /*!< Redundant T.140 Realtime Text */
  948. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_T140, 0), "t140", 0, "Passthrough T.140 Realtime Text", 0, 0, 0, 0 ,0 ,0, 0); /*!< Passthrough support for T.140 Realtime Text */
  949. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SIREN7, 0), "siren7", 16000, "ITU G.722.1 (Siren7, licensed from Polycom)", 80, 20, 80, 20, 20, 0, 0); /*!< Binary commercial distribution */
  950. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SIREN14, 0), "siren14", 32000, "ITU G.722.1 Annex C, (Siren14, licensed from Polycom)", 120, 20, 80, 20, 20, 0, 0); /*!< Binary commercial distribution */
  951. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_TESTLAW, 0), "testlaw", 8000, "G.711 test-law", 80, 10, 150, 10, 20, 0, 0); /*!< codec_ulaw.c */
  952. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G719, 0), "g719", 48000, "ITU G.719", 160, 20, 80, 20, 20, 0, 0);
  953. /*
  954. * XXX Because of an unexpected chan_iax2 dependency, Opus
  955. * and VP8 have assigned format compatibility bits and were
  956. * placed after eight formats that do NOT have format
  957. * compatibility bits. This means that chan_iax2 now has a
  958. * gap of eight between G.719 and Opus for the
  959. * IAX_IE_CODEC_PREFS list sent out over the wire.
  960. *
  961. * Eight formats now must stay between G.719 and Opus. If more
  962. * formats are added with assigned format compatibility bits,
  963. * they can displace the place holder formats below to fill the
  964. * gap.
  965. */
  966. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SPEEX32, 0), "speex32", 32000, "SpeeX 32khz", 10, 10, 60, 10, 20, 0, 0); /*!< codec_speex.c */
  967. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR12, 0), "slin12", 12000, "16 bit Signed Linear PCM (12kHz)", 240, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (12kHz) */
  968. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR24, 0), "slin24", 24000, "16 bit Signed Linear PCM (24kHz)", 480, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (24kHz) */
  969. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR32, 0), "slin32", 32000, "16 bit Signed Linear PCM (32kHz)", 640, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (32kHz) */
  970. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR44, 0), "slin44", 44100, "16 bit Signed Linear PCM (44kHz)", 882, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (44.1kHz) */
  971. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR48, 0), "slin48", 48000, "16 bit Signed Linear PCM (48kHz)", 960, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (48kHz) */
  972. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR96, 0), "slin96", 96000, "16 bit Signed Linear PCM (96kHz)", 1920, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (96kHz) */
  973. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR192, 0), "slin192", 192000, "16 bit Signed Linear PCM (192kHz)", 3840, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0);/*!< Signed linear (192kHz) */
  974. /* Opus (FIXME: real min is 3/5/10, real max is 120...) */
  975. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_OPUS, 0), "opus", 48000, "Opus Codec", 10, 20, 60, 20, 20, 0, 0); /*!< codec_opus.c */
  976. /* VP8 (passthrough) */
  977. format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_VP8, 0), "vp8", 0, "VP8 Video", 0, 0, 0, 0 ,0 ,0, 0); /*!< Passthrough support, see format_h263.c */
  978. /*
  979. * ORDER MAY CHANGE AFTER THIS POINT IN THE LIST
  980. *
  981. * Reason:
  982. * These formats and any that follow do NOT have format compatibility
  983. * bits assigned so chan_iax2 in particular and other legacy modules
  984. * that use compatibility bits will not be aware of them.
  985. */
  986. /* Add new codecs here that do NOT have format compatibility bits assigned. */
  987. return 0;
  988. }
  989. /*!
  990. * \internal
  991. * \brief Clean up resources on Asterisk shutdown
  992. */
  993. static void format_list_shutdown(void)
  994. {
  995. ast_rwlock_destroy(&format_list_array_lock);
  996. if (format_list) {
  997. ao2_t_ref(format_list, -1, "Unref format_list container in shutdown");
  998. format_list = NULL;
  999. }
  1000. if (format_list_array) {
  1001. ao2_t_ref(format_list_array, -1, "Unref format_list_array in shutdown");
  1002. format_list_array = NULL;
  1003. }
  1004. }
  1005. int ast_format_list_init(void)
  1006. {
  1007. if (ast_rwlock_init(&format_list_array_lock)) {
  1008. return -1;
  1009. }
  1010. if (format_list_init()) {
  1011. goto init_list_cleanup;
  1012. }
  1013. if (build_format_list_array()) {
  1014. goto init_list_cleanup;
  1015. }
  1016. ast_register_atexit(format_list_shutdown);
  1017. return 0;
  1018. init_list_cleanup:
  1019. format_list_shutdown();
  1020. return -1;
  1021. }
  1022. /*!
  1023. * \internal
  1024. * \brief Clean up resources on Asterisk shutdown
  1025. */
  1026. static void format_attr_shutdown(void)
  1027. {
  1028. ast_cli_unregister_multiple(my_clis, ARRAY_LEN(my_clis));
  1029. if (interfaces) {
  1030. ao2_ref(interfaces, -1);
  1031. interfaces = NULL;
  1032. }
  1033. }
  1034. int ast_format_attr_init(void)
  1035. {
  1036. interfaces = ao2_container_alloc_options(AO2_ALLOC_OPT_LOCK_RWLOCK,
  1037. 283, interface_hash_cb, interface_cmp_cb);
  1038. if (!interfaces) {
  1039. return -1;
  1040. }
  1041. ast_cli_register_multiple(my_clis, ARRAY_LEN(my_clis));
  1042. ast_register_cleanup(format_attr_shutdown);
  1043. return 0;
  1044. }
  1045. static int custom_celt_format(struct ast_format_list *entry, unsigned int maxbitrate, unsigned int framesize)
  1046. {
  1047. if (!entry->samplespersecond) {
  1048. ast_log(LOG_WARNING, "Custom CELT format definition '%s' requires sample rate to be defined.\n", entry->name);
  1049. }
  1050. ast_format_set(&entry->format, AST_FORMAT_CELT, 0);
  1051. if (!has_interface(&entry->format)) {
  1052. return -1;
  1053. }
  1054. snprintf(entry->desc, sizeof(entry->desc), "CELT Custom Format %ukhz", entry->samplespersecond/1000);
  1055. ast_format_append(&entry->format,
  1056. CELT_ATTR_KEY_SAMP_RATE, entry->samplespersecond,
  1057. CELT_ATTR_KEY_MAX_BITRATE, maxbitrate,
  1058. CELT_ATTR_KEY_FRAME_SIZE, framesize,
  1059. AST_FORMAT_ATTR_END);
  1060. entry->fr_len = 80;
  1061. entry->min_ms = 20;
  1062. entry->max_ms = 20;
  1063. entry->inc_ms = 20;
  1064. entry->def_ms = 20;
  1065. return 0;
  1066. }
  1067. static int custom_silk_format(struct ast_format_list *entry, unsigned int maxbitrate, int usedtx, int usefec, int packetloss_percentage)
  1068. {
  1069. if (!entry->samplespersecond) {
  1070. ast_log(LOG_WARNING, "Custom SILK format definition '%s' requires sample rate to be defined.\n", entry->name);
  1071. }
  1072. ast_format_set(&entry->format, AST_FORMAT_SILK, 0);
  1073. if (!has_interface(&entry->format)) {
  1074. return -1;
  1075. }
  1076. switch (entry->samplespersecond) {
  1077. case 8000:
  1078. ast_copy_string(entry->desc, "SILK Custom Format 8khz", sizeof(entry->desc));
  1079. ast_format_append(&entry->format,
  1080. SILK_ATTR_KEY_SAMP_RATE, SILK_ATTR_VAL_SAMP_8KHZ,
  1081. AST_FORMAT_ATTR_END);
  1082. break;
  1083. case 12000:
  1084. ast_copy_string(entry->desc, "SILK Custom Format 12khz", sizeof(entry->desc));
  1085. ast_format_append(&entry->format,
  1086. SILK_ATTR_KEY_SAMP_RATE, SILK_ATTR_VAL_SAMP_12KHZ,
  1087. AST_FORMAT_ATTR_END);
  1088. break;
  1089. case 16000:
  1090. ast_copy_string(entry->desc, "SILK Custom Format 16khz", sizeof(entry->desc));
  1091. ast_format_append(&entry->format,
  1092. SILK_ATTR_KEY_SAMP_RATE, SILK_ATTR_VAL_SAMP_16KHZ,
  1093. AST_FORMAT_ATTR_END);
  1094. break;
  1095. case 24000:
  1096. ast_copy_string(entry->desc, "SILK Custom Format 24khz", sizeof(entry->desc));
  1097. ast_format_append(&entry->format,
  1098. SILK_ATTR_KEY_SAMP_RATE, SILK_ATTR_VAL_SAMP_24KHZ,
  1099. AST_FORMAT_ATTR_END);
  1100. break;
  1101. default:
  1102. ast_log(LOG_WARNING, "Custom SILK format definition '%s' can not support sample rate %u\n", entry->name, entry->samplespersecond);
  1103. return -1;
  1104. }
  1105. ast_format_append(&entry->format,
  1106. SILK_ATTR_KEY_MAX_BITRATE, maxbitrate,
  1107. SILK_ATTR_KEY_DTX, usedtx ? 1 : 0,
  1108. SILK_ATTR_KEY_FEC, usefec ? 1 : 0,
  1109. SILK_ATTR_KEY_PACKETLOSS_PERCENTAGE, packetloss_percentage,
  1110. AST_FORMAT_ATTR_END);
  1111. entry->fr_len = 80;
  1112. entry->min_ms = 20;
  1113. entry->max_ms = 20;
  1114. entry->inc_ms = 20;
  1115. entry->def_ms = 20;
  1116. return 0;
  1117. }
  1118. static int conf_process_format_name(const char *name, enum ast_format_id *id)
  1119. {
  1120. if (!strcasecmp(name, "silk")) {
  1121. *id = AST_FORMAT_SILK;
  1122. } else if (!strcasecmp(name, "celt")) {
  1123. *id = AST_FORMAT_CELT;
  1124. } else {
  1125. *id = 0;
  1126. return -1;
  1127. }
  1128. return 0;
  1129. }
  1130. static int conf_process_sample_rate(const char *rate, unsigned int *result)
  1131. {
  1132. if (!strcasecmp(rate, "8000")) {
  1133. *result = 8000;
  1134. } else if (!strcasecmp(rate, "12000")) {
  1135. *result = 12000;
  1136. } else if (!strcasecmp(rate, "16000")) {
  1137. *result = 16000;
  1138. } else if (!strcasecmp(rate, "24000")) {
  1139. *result = 24000;
  1140. } else if (!strcasecmp(rate, "32000")) {
  1141. *result = 32000;
  1142. } else if (!strcasecmp(rate, "44100")) {
  1143. *result = 44100;
  1144. } else if (!strcasecmp(rate, "48000")) {
  1145. *result = 48000;
  1146. } else if (!strcasecmp(rate, "96000")) {
  1147. *result = 96000;
  1148. } else if (!strcasecmp(rate, "192000")) {
  1149. *result = 192000;
  1150. } else {
  1151. *result = 0;
  1152. return -1;
  1153. }
  1154. return 0;
  1155. }
  1156. static int load_format_config(void)
  1157. {
  1158. struct ast_flags config_flags = { 0, };
  1159. struct ast_config *cfg = ast_config_load(FORMAT_CONFIG, config_flags);
  1160. struct ast_format_list entry;
  1161. struct ast_variable *var;
  1162. char *cat = NULL;
  1163. int add_it = 0;
  1164. struct {
  1165. enum ast_format_id id;
  1166. unsigned int maxbitrate;
  1167. unsigned int framesize;
  1168. unsigned int packetloss_percentage;
  1169. int usefec;
  1170. int usedtx;
  1171. } settings;
  1172. if (cfg == CONFIG_STATUS_FILEMISSING || cfg == CONFIG_STATUS_FILEINVALID) {
  1173. return 0;
  1174. }
  1175. /* remove all custom formats from the AO2 Container. Note, this has no affect on the
  1176. * global format list until the list is rebuild. That is why this is okay to do while
  1177. * reloading the config. */
  1178. ao2_callback(format_list, OBJ_NODATA | OBJ_UNLINK | OBJ_MULTIPLE, list_all_custom, NULL);
  1179. while ((cat = ast_category_browse(cfg, cat))) {
  1180. memset(&entry, 0, sizeof(entry));
  1181. memset(&settings, 0, sizeof(settings));
  1182. add_it = 0;
  1183. if (!(ast_variable_retrieve(cfg, cat, "type"))) {
  1184. continue;
  1185. }
  1186. ast_copy_string(entry.name, cat, sizeof(entry.name));
  1187. var = ast_variable_browse(cfg, cat);
  1188. for (var = ast_variable_browse(cfg, cat); var; var = var->next) {
  1189. if (!strcasecmp(var->name, "type") && conf_process_format_name(var->value, &settings.id)) {
  1190. ast_log(LOG_WARNING, "Can not make custom format type for '%s' at line %d of %s\n",
  1191. var->value, var->lineno, FORMAT_CONFIG);
  1192. continue;
  1193. } else if (!strcasecmp(var->name, "samprate") && conf_process_sample_rate(var->value, &entry.samplespersecond)) {
  1194. ast_log(LOG_WARNING, "Sample rate '%s' at line %d of %s is not supported.\n",
  1195. var->value, var->lineno, FORMAT_CONFIG);
  1196. } else if (!strcasecmp(var->name, "maxbitrate")) {
  1197. if (sscanf(var->value, "%30u", &settings.maxbitrate) != 1) {
  1198. ast_log(LOG_WARNING, "maxbitrate '%s' at line %d of %s is not supported.\n",
  1199. var->value, var->lineno, FORMAT_CONFIG);
  1200. }
  1201. } else if (!strcasecmp(var->name, "framesize")) {
  1202. if (sscanf(var->value, "%30u", &settings.framesize) != 1) {
  1203. ast_log(LOG_WARNING, "framesize '%s' at line %d of %s is not supported.\n",
  1204. var->value, var->lineno, FORMAT_CONFIG);
  1205. }
  1206. } else if (!strcasecmp(var->name, "dtx")) {
  1207. settings.usedtx = ast_true(var->value) ? 1 : 0;
  1208. } else if (!strcasecmp(var->name, "fec")) {
  1209. settings.usefec = ast_true(var->value) ? 1 : 0;
  1210. } else if (!strcasecmp(var->name, "packetloss_percentage")) {
  1211. if ((sscanf(var->value, "%30u", &settings.packetloss_percentage) != 1) || (settings.packetloss_percentage > 100)) {
  1212. ast_log(LOG_WARNING, "packetloss_percentage '%s' at line %d of %s is not supported.\n",
  1213. var->value, var->lineno, FORMAT_CONFIG);
  1214. }
  1215. }
  1216. }
  1217. switch (settings.id) {
  1218. case AST_FORMAT_SILK:
  1219. if (!(custom_silk_format(&entry, settings.maxbitrate, settings.usedtx, settings.usefec, settings.packetloss_percentage))) {
  1220. add_it = 1;
  1221. }
  1222. break;
  1223. case AST_FORMAT_CELT:
  1224. if (!(custom_celt_format(&entry, settings.maxbitrate, settings.framesize))) {
  1225. add_it = 1;
  1226. }
  1227. break;
  1228. default:
  1229. ast_log(LOG_WARNING, "Can not create custom format %s\n", entry.name);
  1230. }
  1231. if (add_it) {
  1232. format_list_add_custom(&entry);
  1233. }
  1234. }
  1235. ast_config_destroy(cfg);
  1236. build_format_list_array();
  1237. return 0;
  1238. }
  1239. int ast_format_attr_reg_interface(const struct ast_format_attr_interface *interface)
  1240. {
  1241. int x;
  1242. size_t f_len;
  1243. const struct ast_format_list *f_list;
  1244. struct interface_ao2_wrapper *wrapper;
  1245. struct interface_ao2_wrapper tmp_wrapper = {
  1246. .id = interface->id,
  1247. };
  1248. /*
  1249. * Grab the write lock before checking for duplicates in
  1250. * anticipation of adding a new interface and to prevent a
  1251. * duplicate from sneaking in between the check and add.
  1252. */
  1253. ao2_wrlock(interfaces);
  1254. /* check for duplicates first*/
  1255. if ((wrapper = ao2_find(interfaces, &tmp_wrapper, (OBJ_POINTER | OBJ_NOLOCK)))) {
  1256. ao2_unlock(interfaces);
  1257. ast_log(LOG_WARNING, "Can not register attribute interface for format id %u, interface already exists.\n", interface->id);
  1258. ao2_ref(wrapper, -1);
  1259. return -1;
  1260. }
  1261. wrapper = ao2_alloc_options(sizeof(*wrapper), NULL, AO2_ALLOC_OPT_LOCK_RWLOCK);
  1262. if (!wrapper) {
  1263. ao2_unlock(interfaces);
  1264. return -1;
  1265. }
  1266. wrapper->interface = interface;
  1267. wrapper->id = interface->id;
  1268. /* The write lock is already held. */
  1269. ao2_link_flags(interfaces, wrapper, OBJ_NOLOCK);
  1270. ao2_unlock(interfaces);
  1271. ao2_ref(wrapper, -1);
  1272. /* This will find all custom formats in codecs.conf for this new registered interface */
  1273. load_format_config();
  1274. /* update the RTP engine to all custom formats created for this interface */
  1275. f_list = ast_format_list_get(&f_len);
  1276. for (x = 0; x < f_len; x++) {
  1277. if (f_list[x].format.id == tmp_wrapper.id) {
  1278. ast_rtp_engine_load_format(&f_list[x].format);
  1279. }
  1280. }
  1281. f_list = ast_format_list_destroy(f_list);
  1282. return 0;
  1283. }
  1284. int ast_format_attr_unreg_interface(const struct ast_format_attr_interface *interface)
  1285. {
  1286. int x;
  1287. size_t f_len;
  1288. const struct ast_format_list *f_list;
  1289. struct interface_ao2_wrapper *wrapper;
  1290. struct interface_ao2_wrapper tmp_wrapper = {
  1291. .id = interface->id,
  1292. };
  1293. if (!(wrapper = ao2_find(interfaces, &tmp_wrapper, (OBJ_POINTER | OBJ_UNLINK)))) {
  1294. return -1;
  1295. }
  1296. ao2_wrlock(wrapper);
  1297. wrapper->interface = NULL;
  1298. ao2_unlock(wrapper);
  1299. ao2_ref(wrapper, -1);
  1300. /* update the RTP engine to remove all custom formats created for this interface */
  1301. f_list = ast_format_list_get(&f_len);
  1302. for (x = 0; x < f_len; x++) {
  1303. if (f_list[x].format.id == tmp_wrapper.id) {
  1304. ast_rtp_engine_unload_format(&f_list[x].format);
  1305. }
  1306. }
  1307. /* This will remove all custom formats previously created for this interface */
  1308. load_format_config();
  1309. f_list = ast_format_list_destroy(f_list);
  1310. return 0;
  1311. }