Skip to content

Commit 1643d85

Browse files
committed
Add annotation to AudioSamples
1 parent 60f01d9 commit 1643d85

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

documentation/mxv-container.hexpat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ struct ChunkMXJVH264 {
171171
double AspectRatio; // Final image aspect ratio. If this ratio != FrameWidth / FrameHeight the video doesn't have square pixels.
172172
ColorFormat ColorFormat; // Color format.
173173
u32;
174-
u64 AudioSamples; // Total number of audio samples.
174+
u64 AudioSamples; // Total number of audio samples. It's possible that the audio and video length don't match. Older files have shown a mismatch of 1 frame here.
175175
};
176176

177177
struct ChunkMXJVHD64 {

mxriff64/chunk64-mxjvh264.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type Chunk64MXJVH264Data struct {
2929
AspectRatio float64 // Final image aspect ratio. If this ratio != FrameWidth / FrameHeight the video doesn't have square pixels.
3030
ColorFormat ColorFormat // Color format.
3131
Unknown4 uint32
32-
AudioSamples uint64 // Total number of audio samples.
32+
AudioSamples uint64 // Total number of audio samples. It's possible that the audio and video length don't match. Older files have shown a mismatch of 1 frame here.
3333
}
3434

3535
// Returns the identifier of the chunk.

0 commit comments

Comments
 (0)