/third_party/gstreamer/gstplugins_bad/gst-libs/gst/mpegts/ |
D | gst-dvb-section.c | 835 _gst_mpegts_sdt_service_copy (GstMpegtsSDTService * sdt) in _gst_mpegts_sdt_service_copy() argument 837 GstMpegtsSDTService *copy = g_slice_dup (GstMpegtsSDTService, sdt); in _gst_mpegts_sdt_service_copy() 839 copy->descriptors = g_ptr_array_ref (sdt->descriptors); in _gst_mpegts_sdt_service_copy() 845 _gst_mpegts_sdt_service_free (GstMpegtsSDTService * sdt) in _gst_mpegts_sdt_service_free() argument 847 if (sdt->descriptors) in _gst_mpegts_sdt_service_free() 848 g_ptr_array_unref (sdt->descriptors); in _gst_mpegts_sdt_service_free() 849 g_slice_free (GstMpegtsSDTService, sdt); in _gst_mpegts_sdt_service_free() 857 _gst_mpegts_sdt_copy (GstMpegtsSDT * sdt) in _gst_mpegts_sdt_copy() argument 859 GstMpegtsSDT *copy = g_slice_dup (GstMpegtsSDT, sdt); in _gst_mpegts_sdt_copy() 861 copy->services = g_ptr_array_ref (sdt->services); in _gst_mpegts_sdt_copy() [all …]
|
D | gst-dvb-section.h | 343 GstMpegtsSection *gst_mpegts_section_from_sdt (GstMpegtsSDT * sdt);
|
/third_party/gstreamer/gstplugins_bad/tests/examples/mpegts/ |
D | ts-section-writer.c | 23 GstMpegtsSDT *sdt; in advertise_service() local 27 sdt = gst_mpegts_sdt_new (); in advertise_service() 29 sdt->actual_ts = TRUE; in advertise_service() 30 sdt->transport_stream_id = 42; in advertise_service() 44 g_ptr_array_add (sdt->services, service); in advertise_service() 46 section = gst_mpegts_section_from_sdt (sdt); in advertise_service()
|
D | ts-parser.c | 1047 const GstMpegtsSDT *sdt = gst_mpegts_section_get_sdt (section); in dump_sdt() local 1050 g_assert (sdt); in dump_sdt() 1052 g_printf (" original_network_id : 0x%04x\n", sdt->original_network_id); in dump_sdt() 1054 sdt->actual_ts ? "TRUE" : "FALSE"); in dump_sdt() 1055 len = sdt->services->len; in dump_sdt() 1058 GstMpegtsSDTService *service = g_ptr_array_index (sdt->services, i); in dump_sdt()
|
/third_party/gstreamer/gstplugins_bad/tests/check/libs/ |
D | mpegts.c | 422 GstMpegtsSDT *sdt; in GST_START_TEST() local 430 sdt = gst_mpegts_sdt_new (); in GST_START_TEST() 432 sdt->actual_ts = TRUE; in GST_START_TEST() 433 sdt->original_network_id = 0x1FFF; in GST_START_TEST() 434 sdt->transport_stream_id = 0x1FFF; in GST_START_TEST() 448 g_ptr_array_add (sdt->services, service); in GST_START_TEST() 451 sdt_section = gst_mpegts_section_from_sdt (sdt); in GST_START_TEST() 455 sdt = (GstMpegtsSDT *) gst_mpegts_section_get_sdt (sdt_section); in GST_START_TEST() 457 fail_unless (sdt->services->len == 2); in GST_START_TEST() 458 fail_unless (sdt->actual_ts == TRUE); in GST_START_TEST() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | mpegtsenc.c | 78 MpegTSSection sdt; /* MPEG-2 SDT table context */ member 796 mpegts_write_section1(&ts->sdt, SDT_TID, ts->transport_stream_id, ts->tables_version, 0, 0, in mpegts_write_sdt() 1020 ts->sdt.pid = SDT_PID; in mpegts_init() 1021 ts->sdt.cc = 15; in mpegts_init() 1022 ts->sdt.discontinuity= ts->flags & MPEGTS_FLAG_DISCONT; in mpegts_init() 1023 ts->sdt.write_packet = section_write_packet; in mpegts_init() 1024 ts->sdt.opaque = s; in mpegts_init()
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/ |
D | mpegtsbase.h | 249 void (*sdt_info) (GstStructure *sdt);
|
/third_party/python/Doc/howto/ |
D | instrumentation.rst | 42 $ yum install systemtap-sdt-devel 46 $ sudo apt-get install systemtap-sdt-dev
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | id.txt | 1776 dnam{"sdt"} 1777 other{"{0} sdt"}
|
/third_party/glib/ |
D | glib2.spec | 84 BuildRequires: systemtap-sdt-devel pkgconfig(libelf) pkgconfig(libffi)
|
/third_party/icu/icu4c/source/data/unit/ |
D | id.txt | 1973 dnam{"sdt"} 1974 other{"{0} sdt"}
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
D | code-generator-arm.cc | 446 #define ASSEMBLE_NEON_NARROWING_OP(dt, sdt) \ argument 452 __ vqmovn(dt, sdt, dst.low(), src0); \ 455 __ vqmovn(dt, sdt, dst.low(), src0); \ 456 __ vqmovn(dt, sdt, dst.high(), src1); \ 458 __ vqmovn(dt, sdt, dst.high(), src1); \ 459 __ vqmovn(dt, sdt, dst.low(), src0); \
|
/third_party/node/deps/v8/src/wasm/baseline/arm/ |
D | liftoff-assembler-arm.h | 259 NeonDataType sdt, LiftoffRegister dst, in S128NarrowOp() argument 262 assm->vqmovn(dt, sdt, dst.low_fp(), liftoff::GetSimd128Register(lhs)); in S128NarrowOp() 263 assm->vqmovn(dt, sdt, dst.high_fp(), liftoff::GetSimd128Register(rhs)); in S128NarrowOp() 265 assm->vqmovn(dt, sdt, dst.high_fp(), liftoff::GetSimd128Register(rhs)); in S128NarrowOp() 266 assm->vqmovn(dt, sdt, dst.low_fp(), liftoff::GetSimd128Register(lhs)); in S128NarrowOp()
|
/third_party/python/Lib/test/ |
D | datetimetester.py | 5884 sdt = datetime.fromtimestamp(s) 5886 self.assertEquivDatetimes(sdt, tzdt) 5887 s1 = sdt.timestamp()
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 116639 mpegts: fix sdt length check 194209 mpegtsparse: fix sdt parsing. 215598 …gst/mpegtsparse/mpegtspacketizer.c: Add flag to both sdt and nit structures to say whether the tab… 215601 Add flag to both sdt and nit structures to say 216514 Add channel name and provider to the sdt structure sent in the 218245 gst/mpegtsparse/: Remove signals for pat, pmt, nit, eit, sdt. Replace with bus messages. 218250 Remove signals for pat, pmt, nit, eit, sdt. Replace with bus 218547 New signals: nit-info, sdt-info, eit-info for DVB SI information
|
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/ |
D | hdr-rgb-riverwalk.hdr | 6347 …���҉��ۀ�����윹������촻����Иڥ�������������Æ�����݉��Ȓߑ�һŖ��~��������}�g�p_nK�`�sdt��YWHJ?>��Ӏ�����Ų���…
|