Coverage Report - org.jaudiotagger.audio.ogg.util.VorbisHeader
 
Classes in this File Line Coverage Branch Coverage Complexity
VorbisHeader
N/A
N/A
0
 
 1  
 package org.jaudiotagger.audio.ogg.util;
 2  
 
 3  
 /**
 4  
  * Defines variables common to all vorbis headers
 5  
  */
 6  
 public interface VorbisHeader
 7  
 {
 8  
     //Capture pattern at start of header
 9  
     public static final String CAPTURE_PATTERN = "vorbis";
 10  
 
 11  
     public static final byte[] CAPTURE_PATTERN_AS_BYTES = {'v', 'o', 'r', 'b', 'i', 's'};
 12  
 
 13  
     public static final int FIELD_PACKET_TYPE_POS = 0;
 14  
     public static final int FIELD_CAPTURE_PATTERN_POS = 1;
 15  
 
 16  
     public static final int FIELD_PACKET_TYPE_LENGTH = 1;
 17  
     public static final int FIELD_CAPTURE_PATTERN_LENGTH = 6;
 18  
 
 19  
     //Vorbis uses UTF-8 for all text
 20  
     public static final String CHARSET_UTF_8 = "UTF-8";
 21  
 
 22  
 }