From: sb1066 Date: Wed, 7 Jul 2010 20:20:30 +0000 (+0000) Subject: Remeber the pcr pid the program comes from X-Git-Tag: 2.12~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c0f240e5eae1ae4edb3d3ba37a752a287f6df06;p=thirdparty%2Ftvheadend.git Remeber the pcr pid the program comes from --- diff --git a/src/streaming.h b/src/streaming.h index cb0587baa..783b228a5 100644 --- a/src/streaming.h +++ b/src/streaming.h @@ -51,6 +51,8 @@ typedef struct streaming_start { source_info_t ss_si; + uint16_t ss_pcr_pid; + streaming_start_component_t ss_components[0]; } streaming_start_t; diff --git a/src/transports.c b/src/transports.c index f6134d950..4775a55ca 100644 --- a/src/transports.c +++ b/src/transports.c @@ -813,6 +813,7 @@ transport_build_stream_start(th_transport_t *t) t->tht_setsourceinfo(t, &ss->ss_si); ss->ss_refcount = 1; + ss->ss_pcr_pid = t->tht_pcr_pid; return ss; }