Package javax.media.protocol

Examples of javax.media.protocol.Seekable.seek()


      if (TRACE) System.out.println(" return " + -1);
        logger.warning("seek: Invalid whence value: " + whence);
        return -1;
      }
     
      final long ret = seekable.seek(seekTo);
      curpos = ret;
      if (TRACE) System.out.println(" return " + ret);
      return ret;
    }
    catch (IOException e)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.