mm-core: Add entry component for G711 and amr

Add entry components for g711 encoder, g711 decoder, amrwb encoder
amrnb decoder and amrwb decoder for 8909 target.

Change-Id: I17af670d8154ca860ffaf37caa23d5b9a55d1532
This commit is contained in:
Arun Kumar Dasari 2016-12-06 13:14:00 +05:30 committed by Gerrit - the friendly Code Review server
parent 2a7e797e05
commit 79a07696a3
2 changed files with 194 additions and 0 deletions

View file

@ -221,6 +221,103 @@ omx_core_cb_type core[] =
{
"audio_encoder.amrnb"
}
},
{
"OMX.qcom.audio.encoder.g711mlaw",
NULL, // Create instance function
// Unique instance handle
{
NULL,
NULL,
NULL,
NULL
},
NULL, // Shared object library handle
"libOmxG711Enc.so",
{
"audio_encoder.g711"
}
},
{
"OMX.qcom.audio.encoder.g711alaw",
NULL, // Create instance function
// Unique instance handle
{
NULL,
NULL,
NULL,
NULL
},
NULL, // Shared object library handle
"libOmxG711Enc.so",
{
"audio_encoder.g711"
}
},
{
"OMX.qcom.audio.encoder.amrwb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrEnc.so",
{
"audio_encoder.amrwb"
}
},
{
"OMX.qcom.audio.decoder.g711mlaw",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxG711Dec.so",
{
"audio_decoder.g711"
}
},
{
"OMX.qcom.audio.decoder.g711alaw",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxG711Dec.so",
{
"audio_decoder.g711"
}
},
{
"OMX.qcom.audio.decoder.amrwb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrDec.so",
{
"audio_decoder.amrwb"
}
},
{
"OMX.qcom.audio.decoder.amrnb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrDec.so",
{
"audio_decoder.amrnb"
}
},
{
"OMX.qcom.audio.decoder.aac",

View file

@ -260,6 +260,103 @@ omx_core_cb_type core[] =
{
"audio_encoder.amrnb"
}
},
{
"OMX.qcom.audio.encoder.g711mlaw",
NULL, // Create instance function
// Unique instance handle
{
NULL,
NULL,
NULL,
NULL
},
NULL, // Shared object library handle
"libOmxG711Enc.so",
{
"audio_encoder.g711"
}
},
{
"OMX.qcom.audio.encoder.g711alaw",
NULL, // Create instance function
// Unique instance handle
{
NULL,
NULL,
NULL,
NULL
},
NULL, // Shared object library handle
"libOmxG711Enc.so",
{
"audio_encoder.g711"
}
},
{
"OMX.qcom.audio.encoder.amrwb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrEnc.so",
{
"audio_encoder.amrwb"
}
},
{
"OMX.qcom.audio.decoder.g711mlaw",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxG711Dec.so",
{
"audio_decoder.g711"
}
},
{
"OMX.qcom.audio.decoder.g711alaw",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxG711Dec.so",
{
"audio_decoder.g711"
}
},
{
"OMX.qcom.audio.decoder.amrwb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrDec.so",
{
"audio_decoder.amrwb"
}
},
{
"OMX.qcom.audio.decoder.amrnb",
NULL, // Create instance function
// Unique instance handle
{
NULL
},
NULL, // Shared object library handle
"libOmxAmrDec.so",
{
"audio_decoder.amrnb"
}
},
{
"OMX.qcom.audio.decoder.aac",