2010-04-30 08:11:17 +00:00
|
|
|
/* GStreamer base utils library codec-specific utility functions
|
2010-04-12 12:33:18 +00:00
|
|
|
* Copyright (C) 2010 Arun Raghavan <arun.raghavan@collabora.co.uk>
|
2010-04-30 08:11:17 +00:00
|
|
|
* 2010 Collabora Multimedia
|
|
|
|
* 2010 Nokia Corporation
|
2010-04-12 12:33:18 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-04-12 12:33:18 +00:00
|
|
|
*/
|
|
|
|
|
2010-04-30 08:11:17 +00:00
|
|
|
#ifndef __GST_PB_UTILS_CODEC_UTILS_H__
|
|
|
|
#define __GST_PB_UTILS_CODEC_UTILS_H__
|
2010-04-12 12:33:18 +00:00
|
|
|
|
2010-04-30 08:11:17 +00:00
|
|
|
#include <gst/gst.h>
|
2018-03-13 11:08:34 +00:00
|
|
|
#include <gst/pbutils/pbutils-prelude.h>
|
2010-04-12 12:33:18 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-04-30 08:11:17 +00:00
|
|
|
/* AAC */
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 08:11:17 +00:00
|
|
|
guint gst_codec_utils_aac_get_sample_rate_from_index (guint sr_idx);
|
2017-05-15 23:55:25 +00:00
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-07-25 19:03:50 +00:00
|
|
|
gint gst_codec_utils_aac_get_index_from_sample_rate (guint rate);
|
2010-04-30 08:11:17 +00:00
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 09:42:04 +00:00
|
|
|
const gchar * gst_codec_utils_aac_get_profile (const guint8 * audio_config, guint len);
|
2010-04-30 08:11:17 +00:00
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 09:42:04 +00:00
|
|
|
const gchar * gst_codec_utils_aac_get_level (const guint8 * audio_config, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2016-03-22 02:25:49 +00:00
|
|
|
guint gst_codec_utils_aac_get_sample_rate (const guint8 * audio_config, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2016-03-22 02:25:49 +00:00
|
|
|
guint gst_codec_utils_aac_get_channels (const guint8 * audio_config, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 09:42:04 +00:00
|
|
|
gboolean gst_codec_utils_aac_caps_set_level_and_profile (GstCaps * caps,
|
|
|
|
const guint8 * audio_config,
|
|
|
|
guint len);
|
2010-04-12 12:33:18 +00:00
|
|
|
|
2010-04-30 15:20:09 +00:00
|
|
|
/* H.264 */
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 15:20:09 +00:00
|
|
|
const gchar * gst_codec_utils_h264_get_profile (const guint8 * sps, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 15:20:09 +00:00
|
|
|
const gchar * gst_codec_utils_h264_get_level (const guint8 * sps, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2011-03-07 22:55:48 +00:00
|
|
|
guint8 gst_codec_utils_h264_get_level_idc (const gchar * level);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 15:20:09 +00:00
|
|
|
gboolean gst_codec_utils_h264_caps_set_level_and_profile (GstCaps * caps,
|
|
|
|
const guint8 * sps,
|
|
|
|
guint len);
|
|
|
|
|
2013-10-02 09:26:59 +00:00
|
|
|
/* H.265 */
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-10-02 09:26:59 +00:00
|
|
|
const gchar * gst_codec_utils_h265_get_profile (const guint8 * profile_tier_level,
|
|
|
|
guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-10-02 09:26:59 +00:00
|
|
|
const gchar * gst_codec_utils_h265_get_tier (const guint8 * profile_tier_level,
|
|
|
|
guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-10-02 09:26:59 +00:00
|
|
|
const gchar * gst_codec_utils_h265_get_level (const guint8 * profile_tier_level,
|
|
|
|
guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-10-02 09:26:59 +00:00
|
|
|
guint8 gst_codec_utils_h265_get_level_idc (const gchar * level);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2013-10-02 09:26:59 +00:00
|
|
|
gboolean gst_codec_utils_h265_caps_set_level_tier_and_profile (GstCaps * caps,
|
|
|
|
const guint8 * profile_tier_level,
|
|
|
|
guint len);
|
2010-04-30 19:33:18 +00:00
|
|
|
/* MPEG-4 part 2 */
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 19:33:18 +00:00
|
|
|
const gchar * gst_codec_utils_mpeg4video_get_profile (const guint8 * vis_obj_seq, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 19:33:18 +00:00
|
|
|
const gchar * gst_codec_utils_mpeg4video_get_level (const guint8 * vis_obj_seq, guint len);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2010-04-30 19:33:18 +00:00
|
|
|
gboolean gst_codec_utils_mpeg4video_caps_set_level_and_profile (GstCaps * caps,
|
|
|
|
const guint8 * vis_obj_seq,
|
|
|
|
guint len);
|
|
|
|
|
2015-11-03 16:30:09 +00:00
|
|
|
/* Opus */
|
2017-05-15 23:55:25 +00:00
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2015-11-03 16:30:09 +00:00
|
|
|
gboolean gst_codec_utils_opus_parse_caps (GstCaps * caps,
|
|
|
|
guint32 * rate,
|
|
|
|
guint8 * channels,
|
|
|
|
guint8 * channel_mapping_family,
|
|
|
|
guint8 * stream_count,
|
|
|
|
guint8 * coupled_count,
|
|
|
|
guint8 channel_mapping[256]);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2015-11-03 16:30:09 +00:00
|
|
|
GstCaps * gst_codec_utils_opus_create_caps (guint32 rate,
|
|
|
|
guint8 channels,
|
|
|
|
guint8 channel_mapping_family,
|
|
|
|
guint8 stream_count,
|
|
|
|
guint8 coupled_count,
|
|
|
|
const guint8 * channel_mapping);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2015-11-03 16:30:09 +00:00
|
|
|
GstCaps * gst_codec_utils_opus_create_caps_from_header (GstBuffer * header, GstBuffer * comments);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2015-11-03 16:30:09 +00:00
|
|
|
GstBuffer * gst_codec_utils_opus_create_header (guint32 rate,
|
|
|
|
guint8 channels,
|
|
|
|
guint8 channel_mapping_family,
|
|
|
|
guint8 stream_count,
|
|
|
|
guint8 coupled_count,
|
|
|
|
const guint8 * channel_mapping,
|
|
|
|
guint16 pre_skip,
|
|
|
|
gint16 output_gain);
|
|
|
|
|
2018-03-13 11:08:34 +00:00
|
|
|
GST_PBUTILS_API
|
2015-11-03 16:30:09 +00:00
|
|
|
gboolean gst_codec_utils_opus_parse_header (GstBuffer * header,
|
|
|
|
guint32 * rate,
|
|
|
|
guint8 * channels,
|
|
|
|
guint8 * channel_mapping_family,
|
|
|
|
guint8 * stream_count,
|
|
|
|
guint8 * coupled_count,
|
|
|
|
guint8 channel_mapping[256],
|
|
|
|
guint16 * pre_skip,
|
|
|
|
gint16 * output_gain);
|
|
|
|
|
2010-04-12 12:33:18 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2010-04-30 08:11:17 +00:00
|
|
|
#endif /* __GST_PB_UTILS_CODEC_UTILS_H__ */
|