Download presentation
Presentation is loading. Please wait.
Published byJob Kennedy Modified over 9 years ago
1
Design and Implementation of an Electronic Service Guide for Mobile Video Systems Kaushik Choudhary Simon Fraser University Master’s Project Defense ● July 12, 2012
2
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
3
Introduction – Why Mobile Video? In recent years, smartphones have been enhanced with powerful hardware and sophisticated operating systems. Forecasts suggest that mobile devices will dominate internet data traffic contributing as much as 48% of all traffic. [Cisco 12] Video data contributed about 52% of all mobile data traffic. This number is expected to grow to 69% by 2016. [Cisco 12] Kaushik Choudhary | Electronic Service Guide for Mobile Video
4
Introduction – Why Mobile Video? Kaushik Choudhary | Electronic Service Guide for Mobile Video
5
Introduction – Why Mobile Video? Kaushik Choudhary | Electronic Service Guide for Mobile Video
6
To support this explosive growth in video traffic, service providers need to make massive investments to increase network capacity. Introduction – Why Mobile Video? Kaushik Choudhary | Electronic Service Guide for Mobile Video
7
A possible solution would be to use mobile broadcast networks (e.g. DMB, DVB-H, CMMB, ISDB-T, ATSC- M/H). Theoretically, broadcast networks support unlimited number of users in a given network area. Using broadcast networks reduces video traffic load by 60% in a given area during high-demand video programs. [BMCO 09] Introduction – Why Mobile Video? Kaushik Choudhary | Electronic Service Guide for Mobile Video
8
Problem: Design and implement a service layer, configurable, electronic service guide server. Validate the server in a real mobile TV testbed. Introduction – Problem Statement Kaushik Choudhary | Electronic Service Guide for Mobile Video
9
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
10
Widely used, open, international standard. It provisions for reducing energy consumption on mobile devices by broadcasting multimedia data in bursts. Defines Physical and Link Layer protocols and uses IP to interface with higher layer protocols such as RTP and UDP. Background – DVB-H Standard Kaushik Choudhary | Electronic Service Guide for Mobile Video
11
To complete an end-to-end mobile TV system, a set of service layer specification standards, DVB-IPDC have been defined. [ETSI 06] The DVB-IPDC standard – Defines higher layer protocols – Enables cooperation with cellular networks such as UMTS. – Enables bi-directional communication and supports services like Electronic Service Guide(ESG). – Defines XML based ESG Background – Electronic Service Guide Kaushik Choudhary | Electronic Service Guide for Mobile Video
12
ESG contains human readable information on the available multimedia services. ESG also contains media initialization information used by the mobile terminal to tune into the service selected by the user. From an implementation perspective, ESG operations require encoding of XML files containing program listings, descriptions and schedules and tuning information for transmission. These encoded XML files are transported over the FLUTE/IP protocol. Background – Electronic Service Guide Kaushik Choudhary | Electronic Service Guide for Mobile Video
13
We implemented ESG Server on top of the mobile TV testbed developed in Network Systems Lab. To support transmission of ESG files we also developed the link layer signaling mechanism for DVB-H. The signaling mechanism is implemented through PSI/SI tables – structures segmented into sections and inserted into MPEG-2 Transport Stream (TS) packets periodically. Background – ESG Operations Kaushik Choudhary | Electronic Service Guide for Mobile Video
14
Background – DVB-IPDC Stack Kaushik Choudhary | Electronic Service Guide for Mobile Video
15
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
16
Design and Implementation – PSI/SI Tables Kaushik Choudhary | Electronic Service Guide for Mobile Video We implement six essential PSI/SI tables configured through an XML configuration file. There are two types of tables – PSI tables - information about available services and programs – SI tables - network and tuning information for the available services. Each of these tables are abstracted by the Table class which stores the tables in a TS packet format generated by the corresponding Pack function for each table.
17
Design and Implementation – PSI/SI Tables Kaushik Choudhary | Electronic Service Guide for Mobile Video Sample code for population of Network Information Table using configuration file The Transmitter module of the testbed pops and transmits the next PSI/SI table from a priority queue on next broadcast time. 5 languageCode = ((lgI = lg.find(mtv.cfg_mgr->getLanguage())) ->second); // en 6 platformName = mtv.cfg_mgr->getPlatformName(); //SYTE-MTV-5 7 frequency = mtv.cfg_mgr -> getCarrierFrequency ();//690 MHz 8 bandwidth = (Bandwidth)mtv.cfg_mgr->getBandwidth();//MHZ8
18
Design and Implementation – ESG Server Kaushik Choudhary | Electronic Service Guide for Mobile Video ESG Operations – ESG Bootstrap – ESG available, acquire them – ESG Acquisition – Acquire and process ESG – ESG Update – Update to latest versions
19
ESG Operations - Bootstrap Kaushik Choudhary | Electronic Service Guide for Mobile Video The IP/MAC notification table signals announces well known IP address for an ESG Bootstrap stream. The stream contains the two descriptors required for tuning into an ESG session – ESGProviderDiscovery descriptor (XML file) – ESGAccessDescriptor (binary file)
20
ESG Operations - Bootstrap Kaushik Choudhary | Electronic Service Guide for Mobile Video 1 2 < ESGProviderDiscovery xmlns ="urn :dvb : ipdc : esgbs :2005 " xmlns : mpeg7 ="urn : mpeg : mpeg7 : schema :2001 "> 3 4 NSL Broadcast Service 5 NSL Broadcast Service 6 1 7 8
21
ESG Operations - Acquisition Kaushik Choudhary | Electronic Service Guide for Mobile Video To transport ESG acquisition information, the server implements two processing operations – ESG Representation – ESG Encapsulation ESG Representation describes which ESG fragments are transported in the current session and in what format.
22
ESG Operations - Acquisition Kaushik Choudhary | Electronic Service Guide for Mobile Video ESG information is constitutes of independent XML fragments. In the ESG Encapsulation process the XML fragments are encapsulated in aggregated containers for efficient transport. Each container structure has a header indicating number and type of structures and a body.
23
ESG Operations - Update Kaushik Choudhary | Electronic Service Guide for Mobile Video ESG information transported in containers can be updated in two ways – Update the container with a modification of the Transport Object Identifier value of the File Delivery Table (FLUTE). – Update an ESG XML fragment version individually (more efficient).
24
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
25
Validation Kaushik Choudhary | Electronic Service Guide for Mobile Video We use two different type of tools to validate our implementation – Offline TS file analyzers – Online TS stream analyzers We use dvbSAM and DVBInspector offline TS packet analyzers to verify our TS files.
26
Validation Kaushik Choudhary | Electronic Service Guide for Mobile Video We also use a real mobile TV testbed transmitting DVB-H signals with a real mobile device receiving those signals. In the testbed, aside from manual inspection of the mobile device, we use an online TS analyzer software to verify our implementation.
27
Validation – Experimental Setup Kaushik Choudhary | Electronic Service Guide for Mobile Video
28
Validation – Offline analysis Kaushik Choudhary | Electronic Service Guide for Mobile Video Offline TS packet analyzer DVBInspector Online TS stream analyzer DiviCatch
29
Validation – Online analysis Kaushik Choudhary | Electronic Service Guide for Mobile Video
30
Validation – Online analysis Kaushik Choudhary | Electronic Service Guide for Mobile Video
31
Validation – ESG Kaushik Choudhary | Electronic Service Guide for Mobile Video
32
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
33
Conclusion Kaushik Choudhary | Electronic Service Guide for Mobile Video We implemented a C++ based, open source ESG server for mobile TV testbed based on DVB-H. We chose DVB-IPDC standard for ESG as it has provisions to interoperate with cellular technologies like 3G/UMTS. We validated our implementation on a real mobile TV testbed.
34
Outline Introduction Background Design and Implementation of ESG Server Validation Conclusion Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video
35
Future Work Kaushik Choudhary | Electronic Service Guide for Mobile Video Ratification of DVB-IPDC 2.0 standard will allow us to extend this project to implement interactive services like video on demand. We could implement a hybrid delivery mechanism for using DVB-H along with 3G/UMTS, LTE, WiMAX or other network technologies. We could also implement a multiple technology multimedia testbed as an extension to this project.
36
Thank you!
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.