company logo

MP3Header :: subVersion - MP3 header Sub version

The sub version is a number greater than or equal to 0 and less than 255 .

Return value:  Sub version number ( int32  )

Implementation overview

Implementation details

  1. Get current MP3 header sub version
    int32 MP3Header  :: subVersion (  )

    The function returns the current sub version number. When the header is invalid, the function throws an exception.

  2. to list
  3. Set MP3 header sub version
    int32 MP3Header  :: subVersion ( int32 iSubVersion )

    The function sets the MP3 header version to the value passed in iSubVersion . When the header is not valid or when the value is greater that 254 , the function throws an exception.

    • iSubVersion - Sub version number
  4. to list