Ignore:
Timestamp:
08/20/10 04:21:17 (21 months ago)
Author:
shiretu
Message:

-- added event-based signaling to android apple streaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/applications/applestreamingclient/src/applestreamingclientapplication.cpp

    r56 r85  
    4949        _pVariantHandler = NULL; 
    5050        _pFactory = NULL; 
     51#ifdef ANDROID 
     52        _ci.pEnv = NULL; 
     53        _ci.pInterface = NULL; 
     54#endif /* ANDROID */ 
    5155} 
    5256 
     
    161165} 
    162166 
     167void AppleStreamingClientApplication::SetJavaCallBackInterface(CallBackInfo ci) { 
     168        _ci.pEnv = ci.pEnv; 
     169        _ci.pInterface = ci.pInterface; 
     170        _ci.clazz = ci.clazz; 
     171        _ci.method = ci.method; 
     172} 
     173 
     174CallBackInfo &AppleStreamingClientApplication::GetJavaCallBackInterface() { 
     175        return _ci; 
     176} 
     177 
    163178void AppleStreamingClientApplication::SignalStreamRegistered(BaseStream *pStream) { 
    164179        if (pStream->GetType() != ST_IN_NET_TS) 
Note: See TracChangeset for help on using the changeset viewer.