Skip to content
Snippets Groups Projects
test_format_cap.c 51.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Asterisk -- An open source telephony toolkit.
     *
     * Copyright (C) 2014, Digium, Inc.
     *
     * Joshua Colp <jcolp@digium.com>
     *
     * See http://www.asterisk.org for more information about
     * the Asterisk project. Please do not directly contact
     * any of the maintainers of this project for assistance;
     * the project provides a web site, mailing lists and IRC
     * channels for your use.
     *
     * This program is free software, distributed under the terms of
     * the GNU General Public License Version 2. See the LICENSE file
     * at the top of the source tree.
     */
    
    /*!
     * \file
     * \brief Format Capabilities API Unit Tests
     *
     * \author Joshua Colp <jcolp@digium.com>
     *
     */
    
    /*** MODULEINFO
    	<depend>TEST_FRAMEWORK</depend>
    	<support_level>core</support_level>
     ***/
    
    #include "asterisk.h"
    
    
    ASTERISK_REGISTER_FILE()
    
    35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    
    #include "asterisk/test.h"
    #include "asterisk/module.h"
    #include "asterisk/codec.h"
    #include "asterisk/frame.h"
    #include "asterisk/format.h"
    #include "asterisk/format_cap.h"
    
    AST_TEST_DEFINE(format_cap_alloc)
    {
    	struct ast_format_cap *caps;
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_alloc";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities allocation unit test";
    		info->description =
    			"Test that allocation of a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    	ao2_ref(caps, -1);
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_single)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, retrieved, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities adding unit test";
    		info->description =
    			"Test that adding a single format to a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!codec) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	format = ast_format_create(codec);
    	if (!format) {
    		ast_test_status_update(test, "Could not create format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, format, 42)) {
    		ast_test_status_update(test, "Could not add newly created format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 1) {
    		ast_test_status_update(test, "Number of formats in capabilities structure should be 1 but is %zu\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	retrieved = ast_format_cap_get_format(caps, 0);
    	if (!retrieved) {
    		ast_test_status_update(test, "Attempted to get single format from capabilities structure but got nothing\n");
    		return AST_TEST_FAIL;
    	} else if (retrieved != format) {
    		ast_test_status_update(test, "Retrieved format is not the same as the one we added\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_get_format_framing(caps, retrieved) != 42) {
    		ast_test_status_update(test, "Framing for format in capabilities structure does not match what we provided\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_multiple)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, retrieved, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities adding unit test";
    		info->description =
    			"Test that adding multiple formats to a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, ulaw_format, 42)) {
    		ast_test_status_update(test, "Could not add newly created ulaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append(caps, alaw_format, 84)) {
    		ast_test_status_update(test, "Could not add newly created alaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 2) {
    		ast_test_status_update(test, "Number of formats in capabilities structure should be 2 but is %zu\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	retrieved = ast_format_cap_get_format(caps, 0);
    	if (!retrieved) {
    		ast_test_status_update(test, "Attempted to get first format from capabilities structure but got nothing\n");
    		return AST_TEST_FAIL;
    	} else if (retrieved != ulaw_format) {
    		ast_test_status_update(test, "First retrieved format is not the ulaw one we added\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_get_format_framing(caps, retrieved) != 42) {
    		ast_test_status_update(test, "Framing for ulaw format in capabilities structure does not match what we provided\n");
    	}
    	ao2_ref(retrieved, -1);
    
    	retrieved = ast_format_cap_get_format(caps, 1);
    	if (!retrieved) {
    		ast_test_status_update(test, "Attempted to get second format from capabilities structure but got nothing\n");
    		return AST_TEST_FAIL;
    	} else if (retrieved != alaw_format) {
    		ast_test_status_update(test, "First retrieved format is not the alaw one we added\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_get_format_framing(caps, retrieved) != 84) {
    		ast_test_status_update(test, "Framing for alaw format in capabilities structure does not match what we provided\n");
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_all_unknown)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities adding unit test";
    		info->description =
    			"Test that adding of all formats to a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to add all media formats of all types to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Added all media formats but no audio formats exist when they should\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Added all media formats but no video formats exist when they should\n");
    		return AST_TEST_FAIL;
    	} else if ((ast_format_cap_count(caps) + 1) != ast_codec_get_max()) {
    		ast_test_status_update(test, "The number of formats in the capabilities structure does not match known number\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_all_audio)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities adding unit test";
    		info->description =
    			"Test that adding of all audio formats to a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Failed to add all audio media formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Added audio media formats but no audio formats exist when they should\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_has_type(caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Added only audio media formats but video formats exist when they should not\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_has_type(caps, AST_MEDIA_TYPE_TEXT)) {
    		ast_test_status_update(test, "Added only audio media formats but text formats exist when they should not\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_has_type(caps, AST_MEDIA_TYPE_IMAGE)) {
    		ast_test_status_update(test, "Added only audio media formats but image formats exist when they should not\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_duplicate)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, format_named, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, retrieved, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities duplication unit test";
    		info->description =
    			"Test that adding a single format multiple times to a capabilities structure results in only a single format";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!codec) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	format = ast_format_create(codec);
    	if (!format) {
    		ast_test_status_update(test, "Could not create format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	format_named = ast_format_create_named("ulaw@20", codec);
    	if (!format_named) {
    		ast_test_status_update(test, "Could not create named format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, format, 42)) {
    		ast_test_status_update(test, "Could not add newly created format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 1) {
    		ast_test_status_update(test, "Number of formats in capabilities structure should be 1 but is %zu\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	/* Note: regardless of it being a duplicate, ast_format_cap_append should return success */
    	if (ast_format_cap_append(caps, format, 0)) {
    		ast_test_status_update(test, "Adding of duplicate format to capabilities structure failed\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 1) {
    		ast_test_status_update(test, "Number of formats in capabilities structure should be 1 but is %zu\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, format_named, 0)) {
    		ast_test_status_update(test, "Adding of duplicate named format to capabilities structure failed\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 1) {
    		ast_test_status_update(test, "Number of formats in capabilities structure should be 1 but is %zu\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	retrieved = ast_format_cap_get_format(caps, 0);
    	if (!retrieved) {
    		ast_test_status_update(test, "Attempted to get single format from capabilities structure but got nothing\n");
    		return AST_TEST_FAIL;
    	} else if (retrieved != format) {
    		ast_test_status_update(test, "Retrieved format is not the same as the one we added\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_get_format_framing(caps, retrieved) != 42) {
    		ast_test_status_update(test, "Framing for format in capabilities structure does not match what we provided\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_from_cap)
    {
    	RAII_VAR(struct ast_format_cap *, dst_caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format_cap *, src_caps, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities append unit test";
    		info->description =
    			"Test that appending video formats from one capabilities structure to another succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	dst_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!dst_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(dst_caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Failed to add all audio media formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	src_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!src_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(src_caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Failed to add all video media formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append_from_cap(dst_caps, src_caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to append formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(dst_caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Successfully appended video formats to destination capabilities but it no longer contains audio formats\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(dst_caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Successfully appended formats but video formats do not exist in destination capabilities\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_append_from_cap_duplicate)
    {
    	RAII_VAR(struct ast_format_cap *, dst_caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format_cap *, src_caps, NULL, ao2_cleanup);
    	unsigned int count;
    	unsigned int total_count;
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = __PRETTY_FUNCTION__;
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities append duplicate unit test";
    		info->description =
    			"Test that appending capabilities structures multiple times does not result in duplicate formats";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	dst_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!dst_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(dst_caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Failed to add all audio media formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	src_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!src_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(src_caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Failed to add all video media formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	total_count = ast_format_cap_count(src_caps) + ast_format_cap_count(dst_caps);
    
    	if (ast_format_cap_append_from_cap(dst_caps, src_caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to append formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(dst_caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Successfully appended video formats to destination capabilities but it no longer contains audio formats\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(dst_caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Successfully appended formats but video formats do not exist in destination capabilities\n");
    		return AST_TEST_FAIL;
    	}
    
    	count = ast_format_cap_count(dst_caps);
    
    	if (ast_format_cap_append_from_cap(dst_caps, src_caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to append duplicate formats to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_test_validate(test, count == ast_format_cap_count(dst_caps));
    	ast_test_validate(test, count == total_count);
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_set_framing)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_set_framing";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities framing unit test";
    		info->description =
    			"Test that global framing on a format capabilities structure is used when it should be";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_format_cap_set_framing(caps, 160);
    
    	ast_test_validate(test, ast_format_cap_get_framing(caps) == 160);
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, ulaw_format, 42)) {
    		ast_test_status_update(test, "Could not add newly created ulaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append(caps, alaw_format, 0)) {
    		ast_test_status_update(test, "Could not add newly created alaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_get_format_framing(caps, ulaw_format) != 42) {
    		ast_test_status_update(test, "Added ulaw format to capabilities structure with explicit framing but did not get it back\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_get_format_framing(caps, alaw_format) != ast_format_get_default_ms(alaw_format)) {
    		ast_test_status_update(test, "Added alaw format to capabilities structure with no explicit framing but did not get global back\n");
    		return AST_TEST_FAIL;
    	}
    	ast_test_validate(test, ast_format_cap_get_framing(caps) == ast_format_get_default_ms(alaw_format));
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_remove_single)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_remove_single";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities removal unit test";
    		info->description =
    			"Test that removing a single format from a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!codec) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	format = ast_format_create(codec);
    	if (!format) {
    		ast_test_status_update(test, "Could not create format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, format, 42)) {
    		ast_test_status_update(test, "Could not add newly created format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_remove(caps, format)) {
    		ast_test_status_update(test, "Could not remove format that was just added to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_remove(caps, format)) {
    		ast_test_status_update(test, "Successfully removed a format twice from the capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps)) {
    		ast_test_status_update(test, "Capabilities structure should be empty but instead it contains '%zu' formats\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_remove_multiple)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, retrieved, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_remove_multiple";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities removal unit test";
    		info->description =
    			"Test that removing a format from a format capabilities structure containing multiple formats succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, ulaw_format, 42)) {
    		ast_test_status_update(test, "Could not add newly created ulaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append(caps, alaw_format, 84)) {
    		ast_test_status_update(test, "Could not add newly created alaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_remove(caps, ulaw_format)) {
    		ast_test_status_update(test, "Could not remove the ulaw format we just added to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_count(caps) != 1) {
    		ast_test_status_update(test, "Capabilities structure should contain 1 format but it contains '%zu'\n",
    			ast_format_cap_count(caps));
    		return AST_TEST_FAIL;
    	}
    
    	retrieved = ast_format_cap_get_format(caps, 0);
    	if (!retrieved) {
    		ast_test_status_update(test, "Attempted to get first format from capabilities structure but got nothing\n");
    		return AST_TEST_FAIL;
    	} else if (retrieved != alaw_format) {
    		ast_test_status_update(test, "First retrieved format is not the alaw one we added\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_remove_bytype)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_remove_bytype";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities removal unit test";
    		info->description =
    			"Test that removal of a specific type of format from a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to add all media formats of all types to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_format_cap_remove_by_type(caps, AST_MEDIA_TYPE_AUDIO);
    	if (ast_format_cap_has_type(caps, AST_MEDIA_TYPE_AUDIO)) {
    		ast_test_status_update(test, "Removed all audio type formats from capabilities structure but some remain\n");
    		return AST_TEST_FAIL;
    	} else if (!ast_format_cap_has_type(caps, AST_MEDIA_TYPE_VIDEO)) {
    		ast_test_status_update(test, "Removed audio type formats from capabilities structure but video are gone as well\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_remove_all)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_remove_all";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities removal unit test";
    		info->description =
    			"Test that removal of all formats from a format capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append_by_type(caps, AST_MEDIA_TYPE_UNKNOWN)) {
    		ast_test_status_update(test, "Failed to add all media formats of all types to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_format_cap_remove_by_type(caps, AST_MEDIA_TYPE_UNKNOWN);
    
    	if (ast_format_cap_count(caps)) {
    		ast_test_status_update(test, "Removed all formats from capabilities structure but some remain\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_get_compatible_format)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, compatible, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_get_compatible_format";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities negotiation unit test";
    		info->description =
    			"Test that getting a compatible format from a capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, ulaw_format, 42)) {
    		ast_test_status_update(test, "Could not add newly created ulaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	compatible = ast_format_cap_get_compatible_format(caps, alaw_format);
    	if (compatible) {
    		ast_test_status_update(test, "Retrieved a compatible format from capabilities structure when none should exist\n");
    		return AST_TEST_FAIL;
    	}
    
    	compatible = ast_format_cap_get_compatible_format(caps, ulaw_format);
    	if (!compatible) {
    		ast_test_status_update(test, "Did not retrieve a compatible format from capabilities structure when there should be one\n");
    		return AST_TEST_FAIL;
    	} else if (compatible != ulaw_format) {
    		ast_test_status_update(test, "Compatible format is not the format we added to the capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_iscompatible_format)
    {
    	RAII_VAR(struct ast_format_cap *, caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_iscompatible_format";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities negotiation unit test";
    		info->description =
    			"Test that checking whether a format is compatible with a capabilities structure succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(caps, ulaw_format, 42)) {
    		ast_test_status_update(test, "Could not add newly created ulaw format to capabilities structure\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_iscompatible_format(caps, alaw_format) != AST_FORMAT_CMP_NOT_EQUAL) {
    		ast_test_status_update(test, "Alaw format is compatible with capabilities structure when it only contains ulaw\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_iscompatible_format(caps, ulaw_format) == AST_FORMAT_CMP_NOT_EQUAL) {
    		ast_test_status_update(test, "Ulaw format is not compatible with capabilities structure when it should be\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_get_compatible)
    {
    	RAII_VAR(struct ast_format_cap *, alaw_caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format_cap *, ulaw_caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format_cap *, compatible_caps, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, ulaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, ulaw_format, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_codec *, alaw, NULL, ao2_cleanup);
    	RAII_VAR(struct ast_format *, alaw_format, NULL, ao2_cleanup);
    
    	switch (cmd) {
    	case TEST_INIT:
    		info->name = "format_cap_get_compatible";
    		info->category = "/main/format_cap/";
    		info->summary = "format capabilities negotiation unit test";
    		info->description =
    			"Test that getting the compatible formats between two capabilities structures succeeds";
    		return AST_TEST_NOT_RUN;
    	case TEST_EXECUTE:
    		break;
    	}
    
    	alaw_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!alaw_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!ulaw_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	compatible_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
    	if (!compatible_caps) {
    		ast_test_status_update(test, "Could not allocate an empty format capabilities structure\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!ulaw) {
    		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	ulaw_format = ast_format_create(ulaw);
    	if (!ulaw_format) {
    		ast_test_status_update(test, "Could not create ulaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw = ast_codec_get("alaw", AST_MEDIA_TYPE_AUDIO, 8000);
    	if (!alaw) {
    		ast_test_status_update(test, "Could not retrieve built-in alaw codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	alaw_format = ast_format_create(alaw);
    	if (!alaw_format) {
    		ast_test_status_update(test, "Could not create alaw format using built-in codec\n");
    		return AST_TEST_FAIL;
    	}
    
    	if (ast_format_cap_append(ulaw_caps, ulaw_format, 0)) {
    		ast_test_status_update(test, "Could not add ulaw format to ulaw capabilities\n");
    		return AST_TEST_FAIL;
    	} else if (ast_format_cap_append(alaw_caps, alaw_format, 0)) {
    		ast_test_status_update(test, "Could not add alaw format to alaw capabilities\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_format_cap_get_compatible(ulaw_caps, alaw_caps, compatible_caps);
    	if (ast_format_cap_count(compatible_caps)) {
    		ast_test_status_update(test, "A compatible format exists when none should\n");
    		return AST_TEST_FAIL;
    	}
    
    	ast_format_cap_get_compatible(ulaw_caps, ulaw_caps, compatible_caps);
    	if (!ast_format_cap_count(compatible_caps)) {
    		ast_test_status_update(test, "No compatible formats exist when 1 should\n");
    		return AST_TEST_FAIL;
    	}
    
    	return AST_TEST_PASS;
    }
    
    AST_TEST_DEFINE(format_cap_iscompatible)
    {
    	RAII_VAR(struct ast_format_cap *, alaw_caps, NULL, ao2_cleanup);