if ((!MMPLAYER_IS_WFD_STREAMING(player)) &&
(!MMPLAYER_IS_RTSP_STREAMING(player)) &&
- (g_strrstr(player->type, "audio/x-raw-int"))) {
+ (g_strrstr(player->type, "audio/x-raw-int") ||
+ g_strrstr(player->type, "audio/webm") ||
+ g_strrstr(player->type, "video/webm"))) {
LOGE("not support media format\n");
if (player->msg_posted == FALSE) {
/* set it directly because not sent by TAG */
if (g_strrstr(caps_str, "mobile-xmf"))
mm_attrs_set_string_by_name(player->attrs, "content_audio_codec", "mobile-xmf");
+ if (g_strrstr(caps_str, "audio/webm")) {
+ LOGD("webm is not supported");
+ ret = FALSE;
+ }
MMPLAYER_FREEIF(caps_str);
+ } else if (g_str_has_prefix(mime, "video/webm")) {
+ LOGD("webm is not supported");
+ ret = FALSE;
} else if (g_str_has_prefix(mime, "video") && !player->ini.video_playback_supported) {
MMMessageParamType msg_param;
memset(&msg_param, 0, sizeof(MMMessageParamType));