Fixes deprecation warnings with newer GLib versions. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1279>
		
			
				
	
	
		
			223 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			223 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* ATSC Transport Stream muxer
 | |
|  * Copyright (C) 2019 Mathieu Duponchelle <mathieu@centricular.com>
 | |
|  *
 | |
|  * atscmux.c:
 | |
|  *
 | |
|  * 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., 51 Franklin St, Fifth Floor,
 | |
|  * Boston, MA 02110-1301, USA.
 | |
|  *
 | |
|  * SPDX-License-Identifier: LGPL-2.0-or-later
 | |
|  */
 | |
| #ifdef HAVE_CONFIG_H
 | |
| #include "config.h"
 | |
| #endif
 | |
| 
 | |
| #include "gstatscmux.h"
 | |
| 
 | |
| GST_DEBUG_CATEGORY (gst_atsc_mux_debug);
 | |
| #define GST_CAT_DEFAULT gst_atsc_mux_debug
 | |
| 
 | |
| G_DEFINE_TYPE (GstATSCMux, gst_atsc_mux, GST_TYPE_BASE_TS_MUX);
 | |
| GST_ELEMENT_REGISTER_DEFINE (atscmux, "atscmux", GST_RANK_PRIMARY,
 | |
|     gst_atsc_mux_get_type ());
 | |
| 
 | |
| #define parent_class gst_atsc_mux_parent_class
 | |
| #define ATSCMUX_ST_PS_AUDIO_EAC3 0x87
 | |
| 
 | |
| static GstStaticPadTemplate gst_atsc_mux_src_factory =
 | |
| GST_STATIC_PAD_TEMPLATE ("src",
 | |
|     GST_PAD_SRC,
 | |
|     GST_PAD_ALWAYS,
 | |
|     GST_STATIC_CAPS ("video/mpegts, "
 | |
|         "systemstream = (boolean) true, " "packetsize = (int) 188 ")
 | |
|     );
 | |
| 
 | |
| static GstStaticPadTemplate gst_atsc_mux_sink_factory =
 | |
|     GST_STATIC_PAD_TEMPLATE ("sink_%d",
 | |
|     GST_PAD_SINK,
 | |
|     GST_PAD_REQUEST,
 | |
|     GST_STATIC_CAPS ("video/mpeg, "
 | |
|         "parsed = (boolean) TRUE, "
 | |
|         "mpegversion = (int) 2, "
 | |
|         "systemstream = (boolean) false; "
 | |
|         "video/x-h264,stream-format=(string)byte-stream,"
 | |
|         "alignment=(string){au, nal}; "
 | |
|         "audio/x-ac3, framed = (boolean) TRUE;"
 | |
|         "audio/x-eac3, framed = (boolean) TRUE;"));
 | |
| 
 | |
| /* Internals */
 | |
| 
 | |
| static void
 | |
| gst_atsc_mux_stream_get_es_descrs (TsMuxStream * stream,
 | |
|     GstMpegtsPMTStream * pmt_stream, GstBaseTsMux * mpegtsmux)
 | |
| {
 | |
|   GstMpegtsDescriptor *descriptor;
 | |
| 
 | |
|   tsmux_stream_default_get_es_descrs (stream, pmt_stream);
 | |
| 
 | |
|   if (stream->stream_type == ATSCMUX_ST_PS_AUDIO_EAC3) {
 | |
|     guint8 add_info[4];
 | |
|     guint8 *pos;
 | |
| 
 | |
|     pos = add_info;
 | |
| 
 | |
|     /* audio_stream_descriptor () | ATSC A/52-2018 Annex G
 | |
|      *
 | |
|      * descriptor_tag     8 uimsbf
 | |
|      * descriptor_length  8 uimsbf
 | |
|      * reserved           1 '1'
 | |
|      * bsid_flag          1 bslbf
 | |
|      * mainid_flag        1 bslbf
 | |
|      * asvc_flag          1 bslbf
 | |
|      * mixinfoexists      1 bslbf
 | |
|      * substream1_flag    1 bslbf
 | |
|      * substream2_flag    1 bslbf
 | |
|      * substream3_flag    1 bslbf
 | |
|      * reserved           1 '1'
 | |
|      * full_service_flag  1 bslbf
 | |
|      * audio_service_type 3 uimsbf
 | |
|      * number_of_channels 3 uimsbf
 | |
|      * [...]
 | |
|      */
 | |
| 
 | |
|     *pos++ = 0xCC;
 | |
|     *pos++ = 2;
 | |
| 
 | |
|     /* 1 bit reserved, all other flags unset */
 | |
|     *pos++ = 0x80;
 | |
| 
 | |
|     /* 1 bit reserved,
 | |
|      * 1 bit set for full_service_flag,
 | |
|      * 3 bits hardcoded audio_service_type "Complete Main",
 | |
|      * 3 bits number_of_channels
 | |
|      */
 | |
|     switch (stream->audio_channels) {
 | |
|       case 1:
 | |
|         *pos++ = 0xC0;          /* Mono */
 | |
|         break;
 | |
|       case 2:
 | |
|         *pos++ = 0xC0 | 0x2;    /* 2-channel (stereo) */
 | |
|         break;
 | |
|       case 3:
 | |
|       case 4:
 | |
|       case 5:
 | |
|         *pos++ = 0xC0 | 0x4;    /* Multichannel audio (> 2 channels; <= 3/2 + LFE channels) */
 | |
|         break;
 | |
|       case 6:
 | |
|       default:
 | |
|         *pos++ = 0xC0 | 0x5;    /* Multichannel audio(> 3/2 + LFE channels) */
 | |
|     }
 | |
| 
 | |
|     descriptor = gst_mpegts_descriptor_from_registration ("EAC3", add_info, 4);
 | |
|     g_ptr_array_add (pmt_stream->descriptors, descriptor);
 | |
| 
 | |
|     descriptor =
 | |
|         gst_mpegts_descriptor_from_custom (GST_MTS_DESC_ATSC_EAC3, add_info, 4);
 | |
|     g_ptr_array_add (pmt_stream->descriptors, descriptor);
 | |
|   }
 | |
| }
 | |
| 
 | |
| static TsMuxStream *
 | |
| gst_atsc_mux_create_new_stream (guint16 new_pid,
 | |
|     TsMuxStreamType stream_type, GstBaseTsMux * mpegtsmux)
 | |
| {
 | |
|   TsMuxStream *ret = tsmux_stream_new (new_pid, stream_type);
 | |
| 
 | |
|   if (stream_type == ATSCMUX_ST_PS_AUDIO_EAC3) {
 | |
|     ret->id = 0xBD;
 | |
|     ret->pi.flags |= TSMUX_PACKET_FLAG_PES_FULL_HEADER;
 | |
|     ret->is_audio = TRUE;
 | |
|   } else if (stream_type == TSMUX_ST_PS_AUDIO_AC3) {
 | |
|     ret->id = 0xBD;
 | |
|     ret->id_extended = 0;
 | |
|   }
 | |
| 
 | |
|   tsmux_stream_set_get_es_descriptors_func (ret,
 | |
|       (TsMuxStreamGetESDescriptorsFunc) gst_atsc_mux_stream_get_es_descrs,
 | |
|       mpegtsmux);
 | |
| 
 | |
|   return ret;
 | |
| }
 | |
| 
 | |
| /* GstBaseTsMux implementation */
 | |
| 
 | |
| static TsMux *
 | |
| gst_atsc_mux_create_ts_mux (GstBaseTsMux * mpegtsmux)
 | |
| {
 | |
|   TsMux *ret = ((GstBaseTsMuxClass *) parent_class)->create_ts_mux (mpegtsmux);
 | |
|   GstMpegtsAtscMGT *mgt;
 | |
|   GstMpegtsAtscSTT *stt;
 | |
|   GstMpegtsAtscRRT *rrt;
 | |
|   GstMpegtsSection *section;
 | |
| 
 | |
|   mgt = gst_mpegts_atsc_mgt_new ();
 | |
|   section = gst_mpegts_section_from_atsc_mgt (mgt);
 | |
|   tsmux_add_mpegts_si_section (ret, section);
 | |
| 
 | |
|   stt = gst_mpegts_atsc_stt_new ();
 | |
|   section = gst_mpegts_section_from_atsc_stt (stt);
 | |
|   tsmux_add_mpegts_si_section (ret, section);
 | |
| 
 | |
|   rrt = gst_mpegts_atsc_rrt_new ();
 | |
|   section = gst_mpegts_section_from_atsc_rrt (rrt);
 | |
|   tsmux_add_mpegts_si_section (ret, section);
 | |
| 
 | |
|   tsmux_set_new_stream_func (ret,
 | |
|       (TsMuxNewStreamFunc) gst_atsc_mux_create_new_stream, mpegtsmux);
 | |
| 
 | |
|   return ret;
 | |
| }
 | |
| 
 | |
| static guint
 | |
| gst_atsc_mux_handle_media_type (GstBaseTsMux * mux, const gchar * media_type,
 | |
|     GstBaseTsMuxPad * pad)
 | |
| {
 | |
|   guint ret = TSMUX_ST_RESERVED;
 | |
| 
 | |
|   if (!g_strcmp0 (media_type, "audio/x-eac3")) {
 | |
|     ret = ATSCMUX_ST_PS_AUDIO_EAC3;
 | |
|   }
 | |
| 
 | |
|   return ret;
 | |
| }
 | |
| 
 | |
| static void
 | |
| gst_atsc_mux_class_init (GstATSCMuxClass * klass)
 | |
| {
 | |
|   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
 | |
|   GstBaseTsMuxClass *mpegtsmux_class = (GstBaseTsMuxClass *) klass;
 | |
| 
 | |
|   GST_DEBUG_CATEGORY_INIT (gst_atsc_mux_debug, "atscmux", 0, "ATSC muxer");
 | |
| 
 | |
|   gst_element_class_set_static_metadata (gstelement_class,
 | |
|       "ATSC Transport Stream Muxer", "Codec/Muxer",
 | |
|       "Multiplexes media streams into an ATSC-compliant Transport Stream",
 | |
|       "Mathieu Duponchelle <mathieu@centricular.com>");
 | |
| 
 | |
|   mpegtsmux_class->create_ts_mux = gst_atsc_mux_create_ts_mux;
 | |
|   mpegtsmux_class->handle_media_type = gst_atsc_mux_handle_media_type;
 | |
| 
 | |
|   gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
 | |
|       &gst_atsc_mux_sink_factory, GST_TYPE_BASE_TS_MUX_PAD);
 | |
| 
 | |
|   gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
 | |
|       &gst_atsc_mux_src_factory, GST_TYPE_AGGREGATOR_PAD);
 | |
| }
 | |
| 
 | |
| static void
 | |
| gst_atsc_mux_init (GstATSCMux * mux)
 | |
| {
 | |
| }
 |