- Timestamp:
- Dec 28, 2016 5:20:16 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed (with no actual effect on merging)
-
pjproject/branches/projects/uwp/pjmedia/src/pjmedia-audiodev/audiodev.c
r5513 r5514 1 1 /* $Id$ */ 2 /* 2 /* 3 3 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) 4 4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org> … … 16 16 * You should have received a copy of the GNU General Public License 17 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 19 */ 20 20 #include <pjmedia-audiodev/audiodev_imp.h> … … 93 93 94 94 /* Register error subsystem */ 95 status = pj_register_strerror(PJMEDIA_AUDIODEV_ERRNO_START, 96 PJ_ERRNO_SPACE_SIZE, 95 status = pj_register_strerror(PJMEDIA_AUDIODEV_ERRNO_START, 96 PJ_ERRNO_SPACE_SIZE, 97 97 &pjmedia_audiodev_strerror); 98 98 pj_assert(status == PJ_SUCCESS); … … 138 138 #endif 139 139 #if PJMEDIA_AUDIO_DEV_HAS_WASAPI 140 aud_subsys .drv[aud_subsys.drv_cnt++].create = &pjmedia_wasapi_factory;140 aud_subsys->drv[aud_subsys->drv_cnt++].create = &pjmedia_wasapi_factory; 141 141 #endif 142 142 #if PJMEDIA_AUDIO_DEV_HAS_NULL_AUDIO
Note: See TracChangeset
for help on using the changeset viewer.