Changeset a46e56b in mainline for uspace/lib/drv/generic/remote_audio_pcm.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_audio_pcm.c
r3e242d2 ra46e56b 632 632 633 633 void remote_audio_pcm_get_info_str(ddf_fun_t *fun, void *iface, 634 cap_call_handle_t c allid, ipc_call_t *call)634 cap_call_handle_t chandle, ipc_call_t *call) 635 635 { 636 636 const audio_pcm_iface_t *pcm_iface = iface; 637 637 638 638 if (!pcm_iface->get_info_str) { 639 async_answer_0(c allid, ENOTSUP);639 async_answer_0(chandle, ENOTSUP); 640 640 return; 641 641 } … … 643 643 const errno_t ret = pcm_iface->get_info_str(fun, &name); 644 644 const size_t name_size = name ? str_size(name) + 1 : 0; 645 async_answer_1(c allid, ret, name_size);645 async_answer_1(chandle, ret, name_size); 646 646 /* Send the string. */ 647 647 if (ret == EOK && name_size > 0) { … … 660 660 } 661 661 662 void remote_audio_pcm_query_caps(ddf_fun_t *fun, void *iface, cap_call_handle_t callid, ipc_call_t *call) 662 void remote_audio_pcm_query_caps(ddf_fun_t *fun, void *iface, 663 cap_call_handle_t chandle, ipc_call_t *call) 663 664 { 664 665 const audio_pcm_iface_t *pcm_iface = iface; … … 666 667 if (pcm_iface->query_cap) { 667 668 const unsigned value = pcm_iface->query_cap(fun, cap); 668 async_answer_1(c allid, EOK, value);669 async_answer_1(chandle, EOK, value); 669 670 } else { 670 async_answer_0(callid, ENOTSUP); 671 } 672 } 673 674 static void remote_audio_pcm_events_register(ddf_fun_t *fun, void *iface, cap_call_handle_t callid, ipc_call_t *call) 671 async_answer_0(chandle, ENOTSUP); 672 } 673 } 674 675 static void remote_audio_pcm_events_register(ddf_fun_t *fun, void *iface, 676 cap_call_handle_t chandle, ipc_call_t *call) 675 677 { 676 678 const audio_pcm_iface_t *pcm_iface = iface; 677 679 if (!pcm_iface->get_event_session || 678 680 !pcm_iface->set_event_session) { 679 async_answer_0(c allid, ENOTSUP);680 return; 681 } 682 683 async_answer_0(c allid, EOK);681 async_answer_0(chandle, ENOTSUP); 682 return; 683 } 684 685 async_answer_0(chandle, EOK); 684 686 685 687 ipc_call_t callback_call; 686 cap_call_handle_t callback_ id= async_get_call(&callback_call);688 cap_call_handle_t callback_handle = async_get_call(&callback_call); 687 689 async_sess_t *sess = 688 690 async_callback_receive_start(EXCHANGE_ATOMIC, &callback_call); 689 691 if (sess == NULL) { 690 692 ddf_msg(LVL_DEBUG, "Failed to create event callback"); 691 async_answer_0(callback_ id, EAGAIN);693 async_answer_0(callback_handle, EAGAIN); 692 694 return; 693 695 } … … 696 698 ddf_msg(LVL_DEBUG, "Failed to set event callback."); 697 699 async_hangup(sess); 698 async_answer_0(callback_id, ret); 699 return; 700 } 701 async_answer_0(callback_id, EOK); 702 } 703 704 static void remote_audio_pcm_events_unregister(ddf_fun_t *fun, void *iface, cap_call_handle_t callid, ipc_call_t *call) 700 async_answer_0(callback_handle, ret); 701 return; 702 } 703 async_answer_0(callback_handle, EOK); 704 } 705 706 static void remote_audio_pcm_events_unregister(ddf_fun_t *fun, void *iface, 707 cap_call_handle_t chandle, ipc_call_t *call) 705 708 { 706 709 const audio_pcm_iface_t *pcm_iface = iface; 707 710 if (!pcm_iface->get_event_session || 708 711 !pcm_iface->set_event_session) { 709 async_answer_0(c allid, ENOTSUP);712 async_answer_0(chandle, ENOTSUP); 710 713 return; 711 714 } … … 715 718 pcm_iface->set_event_session(fun, NULL); 716 719 } 717 async_answer_0(callid, EOK); 718 } 719 720 void remote_audio_pcm_get_buffer_pos(ddf_fun_t *fun, void *iface, cap_call_handle_t callid, ipc_call_t *call) 720 async_answer_0(chandle, EOK); 721 } 722 723 void remote_audio_pcm_get_buffer_pos(ddf_fun_t *fun, void *iface, 724 cap_call_handle_t chandle, ipc_call_t *call) 721 725 { 722 726 const audio_pcm_iface_t *pcm_iface = iface; … … 724 728 const errno_t ret = pcm_iface->get_buffer_pos ? 725 729 pcm_iface->get_buffer_pos(fun, &pos) : ENOTSUP; 726 async_answer_1(callid, ret, pos); 727 } 728 729 void remote_audio_pcm_test_format(ddf_fun_t *fun, void *iface, cap_call_handle_t callid, ipc_call_t *call) 730 async_answer_1(chandle, ret, pos); 731 } 732 733 void remote_audio_pcm_test_format(ddf_fun_t *fun, void *iface, 734 cap_call_handle_t chandle, ipc_call_t *call) 730 735 { 731 736 const audio_pcm_iface_t *pcm_iface = iface; … … 735 740 const errno_t ret = pcm_iface->test_format ? 736 741 pcm_iface->test_format(fun, &channels, &rate, &format) : ENOTSUP; 737 async_answer_3(c allid, ret, channels, rate, format);742 async_answer_3(chandle, ret, channels, rate, format); 738 743 } 739 744 740 745 void remote_audio_pcm_get_buffer(ddf_fun_t *fun, void *iface, 741 cap_call_handle_t c allid, ipc_call_t *call)746 cap_call_handle_t chandle, ipc_call_t *call) 742 747 { 743 748 const audio_pcm_iface_t *pcm_iface = iface; … … 745 750 if (!pcm_iface->get_buffer || 746 751 !pcm_iface->release_buffer) { 747 async_answer_0(c allid, ENOTSUP);752 async_answer_0(chandle, ENOTSUP); 748 753 return; 749 754 } … … 751 756 size_t size = DEV_IPC_GET_ARG1(*call); 752 757 errno_t ret = pcm_iface->get_buffer(fun, &buffer, &size); 753 async_answer_1(c allid, ret, size);758 async_answer_1(chandle, ret, size); 754 759 if (ret != EOK || size == 0) 755 760 return; … … 788 793 789 794 void remote_audio_pcm_release_buffer(ddf_fun_t *fun, void *iface, 790 cap_call_handle_t c allid, ipc_call_t *call)795 cap_call_handle_t chandle, ipc_call_t *call) 791 796 { 792 797 const audio_pcm_iface_t *pcm_iface = iface; … … 794 799 const errno_t ret = pcm_iface->release_buffer ? 795 800 pcm_iface->release_buffer(fun) : ENOTSUP; 796 async_answer_0(c allid, ret);801 async_answer_0(chandle, ret); 797 802 } 798 803 799 804 void remote_audio_pcm_start_playback(ddf_fun_t *fun, void *iface, 800 cap_call_handle_t c allid, ipc_call_t *call)805 cap_call_handle_t chandle, ipc_call_t *call) 801 806 { 802 807 const audio_pcm_iface_t *pcm_iface = iface; … … 810 815 ? pcm_iface->start_playback(fun, frames, channels, rate, format) 811 816 : ENOTSUP; 812 async_answer_0(c allid, ret);817 async_answer_0(chandle, ret); 813 818 } 814 819 815 820 void remote_audio_pcm_stop_playback(ddf_fun_t *fun, void *iface, 816 cap_call_handle_t c allid, ipc_call_t *call)821 cap_call_handle_t chandle, ipc_call_t *call) 817 822 { 818 823 const audio_pcm_iface_t *pcm_iface = iface; … … 821 826 const errno_t ret = pcm_iface->stop_playback ? 822 827 pcm_iface->stop_playback(fun, immediate) : ENOTSUP; 823 async_answer_0(c allid, ret);828 async_answer_0(chandle, ret); 824 829 } 825 830 826 831 void remote_audio_pcm_start_capture(ddf_fun_t *fun, void *iface, 827 cap_call_handle_t c allid, ipc_call_t *call)832 cap_call_handle_t chandle, ipc_call_t *call) 828 833 { 829 834 const audio_pcm_iface_t *pcm_iface = iface; … … 837 842 ? pcm_iface->start_capture(fun, frames, channels, rate, format) 838 843 : ENOTSUP; 839 async_answer_0(c allid, ret);844 async_answer_0(chandle, ret); 840 845 } 841 846 842 847 void remote_audio_pcm_stop_capture(ddf_fun_t *fun, void *iface, 843 cap_call_handle_t c allid, ipc_call_t *call)848 cap_call_handle_t chandle, ipc_call_t *call) 844 849 { 845 850 const audio_pcm_iface_t *pcm_iface = iface; … … 848 853 const errno_t ret = pcm_iface->stop_capture ? 849 854 pcm_iface->stop_capture(fun, immediate) : ENOTSUP; 850 async_answer_0(c allid, ret);855 async_answer_0(chandle, ret); 851 856 } 852 857
Note:
See TracChangeset
for help on using the changeset viewer.