コード例 #1
0
 private static long tell(final AudioStreamProvider stream) {
   if (!stream.isSeekable()) {
     return 0L;
   }
   try {
     return stream.tell();
   } catch (IOException e) {
     JOrbisStream.m_logger.debug(
         (Object) "Probl\u00e8me lors du tell sur le stream !", (Throwable) e);
     return 0L;
   }
 }