CML
    Preparing search index...

    Type Alias ManifestBoxValidationResult

    The result of validating a single C2PA manifest-box live stream segment.

    Returned by validateC2paManifestBoxSegment.

    type ManifestBoxValidationResult = {
        bmffHashHex: string | null;
        continuityMethod: string | null;
        errorCodes: readonly (LiveVideoStatusCode | C2paStatusCode)[];
        issuer: string | null;
        isValid: boolean;
        manifest: C2paManifest | null;
        previousManifestId: string | null;
        sequenceNumber: number | null;
        streamId: string | null;
    }
    Index

    Properties

    bmffHashHex: string | null
    continuityMethod: string | null
    errorCodes: readonly (LiveVideoStatusCode | C2paStatusCode)[]
    issuer: string | null
    isValid: boolean
    manifest: C2paManifest | null
    previousManifestId: string | null
    sequenceNumber: number | null
    streamId: string | null