| 1 | |
package org.jaudiotagger.audio.asf.data; |
| 2 | |
|
| 3 | |
import java.math.BigInteger; |
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
public final class AsfExtendedHeader extends ChunkContainer |
| 12 | |
{ |
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
public AsfExtendedHeader(long pos, BigInteger length) |
| 21 | |
{ |
| 22 | 80 | super(GUID.GUID_HEADER_EXTENSION, pos, length); |
| 23 | 80 | } |
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
public ContentDescription getContentDescription() |
| 29 | |
{ |
| 30 | 54 | return (ContentDescription) getFirst(GUID.GUID_CONTENTDESCRIPTION, ContentDescription.class); |
| 31 | |
} |
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
public ExtendedContentDescription getExtendedContentDescription() |
| 37 | |
{ |
| 38 | 59 | return (ExtendedContentDescription) getFirst(GUID.GUID_EXTENDED_CONTENT_DESCRIPTION, ExtendedContentDescription.class); |
| 39 | |
} |
| 40 | |
|
| 41 | |
} |