allow ffmpeg video to resample curr_pos, add bluray format
[goodguy/history.git] / cinelerra-5.0 / quicktime / mdat.c
1 #include <stdio.h>
2 #include "funcprotos.h"
3 #include "quicktime.h"
4
5 void quicktime_mdat_delete(quicktime_mdat_t *mdat)
6 {
7 }
8
9 void quicktime_read_mdat(quicktime_t *file, quicktime_mdat_t *mdat, quicktime_atom_t *parent_atom)
10 {
11         mdat->atom.size = parent_atom->size;
12 // Relative to start of the mdat string
13         mdat->atom.start = parent_atom->start;
14         quicktime_atom_skip(file, parent_atom);
15 }