doubango/trunk/tinyMEDIA/src/tmedia_common.c

95 lines
2.3 KiB
C

/*
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/
/**@file tmedia_common.c
* @brief Common functions and definitions.
*
* @author Mamadou Diop <diopmamadou(at)doubango.org>
*
* @date Created: Sat Nov 8 16:54:58 2009 mdiop
*/
#include "tinymedia/tmedia_common.h"
#include "tinymedia/tmedia_session.h"
#include "tsk_debug.h"
#include <stdlib.h> /* atoi() */
tmedia_type_t tmedia_type_from_sdp(const tsdp_message_t* sdp)
{
tmedia_type_t type = tmedia_none;
const tsdp_header_M_t* M;
tsk_size_t index = 0;
const tmedia_session_plugin_def_t* plugin;
if(!sdp){
TSK_DEBUG_ERROR("Invalid parameter");
return tmedia_none;
}
while((M = (const tsdp_header_M_t*)tsdp_message_get_headerAt(sdp, tsdp_htype_M, index++))){
if((plugin = tmedia_session_plugin_find_by_media(M->media))){
type |= plugin->type;
}
}
return type;
}
int tmedia_parse_rtpmap(const char* rtpmap, char** name, int32_t* rate, int32_t* channels)
{
/* e.g. AMR-WB/16000/2 */
size_t len;
if(tsk_strnullORempty(rtpmap)){
TSK_DEBUG_ERROR("Invalid parameter");
return -1;
}
*name = tsk_null;
*rate = *channels = 0;
len = tsk_strlen(rtpmap);
/* e.g. AMR-WB/16000/2 */
if(sscanf(rtpmap, "%*s/%*d/%*d")){
int index = tsk_strindexOf(rtpmap, len, "/");
*name = tsk_strndup(rtpmap, index);
sscanf(&rtpmap[index+1], "%d/%d", rate, channels);
}
/* e.g. AMR-WB/16000 */
else if(sscanf(rtpmap, "%*s/%*d")){
int index = tsk_strindexOf(rtpmap, len, "/");
*name = tsk_strndup(rtpmap, index);
*rate = atoi(&rtpmap[index+1]);
}
/* e.g. AMR-WB */
else{
*name = tsk_strdup(rtpmap);
return 0;
}
return -2;
}