Ignore:
Timestamp:
08/24/10 07:51:02 (21 months ago)
Author:
shiretu
Message:

-- android related

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/applications/applestreamingclient/src/protocols/m3u8/childm3u8protocol.cpp

    r56 r96  
    6868        return true; 
    6969} 
     70 
     71bool ChildM3U8Protocol::SignalPlaylistFailed() { 
     72        //1. Get the context 
     73        ClientContext *pContext = GetContext(); 
     74        if (pContext == NULL) { 
     75                FATAL("Unable to get the context"); 
     76                return false; 
     77        } 
     78 
     79        //2. Signal the context about the new playlist 
     80        if (!pContext->SignalChildPlaylistNotAvailable(_bw)) { 
     81                FATAL("Unable to signal master M3U8 playlist available"); 
     82                return false; 
     83        } 
     84 
     85        //3. Done 
     86        return true; 
     87} 
Note: See TracChangeset for help on using the changeset viewer.