X-Git-Url: http://git.maemo.org/git/?p=mafwsubrenderer;a=blobdiff_plain;f=gst-plugins-base-subtitles0.10%2Fgst-libs%2Fgst%2Fpbutils%2Fcodec-utils.h;fp=gst-plugins-base-subtitles0.10%2Fgst-libs%2Fgst%2Fpbutils%2Fcodec-utils.h;h=ae5a68b1f6dc029a00b8f434c653b8e4d10b612a;hp=0000000000000000000000000000000000000000;hb=57ba96e291a055f69dbfd4ae9f1ae2390e36986e;hpb=be2c98fb83895d10ac44af7b9a9c3e00ca54bf49 diff --git a/gst-plugins-base-subtitles0.10/gst-libs/gst/pbutils/codec-utils.h b/gst-plugins-base-subtitles0.10/gst-libs/gst/pbutils/codec-utils.h new file mode 100644 index 0000000..ae5a68b --- /dev/null +++ b/gst-plugins-base-subtitles0.10/gst-libs/gst/pbutils/codec-utils.h @@ -0,0 +1,63 @@ +/* GStreamer base utils library codec-specific utility functions + * Copyright (C) 2010 Arun Raghavan + * 2010 Collabora Multimedia + * 2010 Nokia Corporation + * + * 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 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef __GST_PB_UTILS_CODEC_UTILS_H__ +#define __GST_PB_UTILS_CODEC_UTILS_H__ + +#include + +G_BEGIN_DECLS + +/* AAC */ + +guint gst_codec_utils_aac_get_sample_rate_from_index (guint sr_idx); + +const gchar * gst_codec_utils_aac_get_profile (const guint8 * audio_config, guint len); + +const gchar * gst_codec_utils_aac_get_level (const guint8 * audio_config, guint len); + +gboolean gst_codec_utils_aac_caps_set_level_and_profile (GstCaps * caps, + const guint8 * audio_config, + guint len); + +/* H.264 */ + +const gchar * gst_codec_utils_h264_get_profile (const guint8 * sps, guint len); + +const gchar * gst_codec_utils_h264_get_level (const guint8 * sps, guint len); + +gboolean gst_codec_utils_h264_caps_set_level_and_profile (GstCaps * caps, + const guint8 * sps, + guint len); + +/* MPEG-4 part 2 */ + +const gchar * gst_codec_utils_mpeg4video_get_profile (const guint8 * vis_obj_seq, guint len); + +const gchar * gst_codec_utils_mpeg4video_get_level (const guint8 * vis_obj_seq, guint len); + +gboolean gst_codec_utils_mpeg4video_caps_set_level_and_profile (GstCaps * caps, + const guint8 * vis_obj_seq, + guint len); + +G_END_DECLS + +#endif /* __GST_PB_UTILS_CODEC_UTILS_H__ */