Package com.aelitis.azureus.core.devices

Examples of com.aelitis.azureus.core.devices.TranscodeProfile


   
    DeviceManagerImpl dm = getManager();
   
    TranscodeManagerImpl tm = dm.getTranscodeManager();

    TranscodeProfile profile = tm.getProfileFromUID( uid );
   
    if ( profile != null ){
     
      return( profile );
    }
View Full Code Here


    if ( ipc == null ){
     
      return;
    }
   
    TranscodeProfile default_profile = getDefaultTranscodeProfile();
   
    if ( default_profile == null ){
     
      TranscodeProfile[] profiles = getTranscodeProfiles();
     
      for ( TranscodeProfile p: profiles ){
       
        if ( p.isStreamable()){
         
          default_profile = p;
         
          break;
        }
      }
    }
   
    synchronized( this ){
     
      if ( upnpav_ipc != null ){
       
        return;
      }
     
      upnpav_ipc = ipc;
     
      if ( default_profile != null && default_profile.isStreamable()){
       
        dynamic_transcode_profile  = default_profile;
      }
    }
   
View Full Code Here

   
  protected void
  addDynamicXCode(
    final DiskManagerFileInfo    source )
  {
    final TranscodeProfile profile = dynamic_transcode_profile;
   
    IPCInterface      ipc  = upnpav_ipc;
   
    if ( profile == null || ipc == null ){
     
View Full Code Here

 
  protected void
  removeDynamicXCode(
    final DiskManagerFileInfo    source )
  {
    final TranscodeProfile profile = dynamic_transcode_profile;
   
    IPCInterface      ipc  = upnpav_ipc;
   
    if ( profile == null || ipc == null ){
     
View Full Code Here

              }
            }
           
            TranscodeProfile[] profiles = dmr.getTranscodeProfiles();
           
            TranscodeProfile profile = null;
           
            for (TranscodeProfile p : profiles) {
             
              if ( p.getName().equals( "Generic MP4" )){
               
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.core.devices.TranscodeProfile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.