allow ffmpeg video to resample curr_pos, add bluray format
[goodguy/history.git] / cinelerra-5.0 / quicktime / workarounds.c
1 #include "qtprivate.h"
2 #include "workarounds.h"
3
4 int64_t quicktime_add(int64_t a, int64_t b)
5 {
6         return a + b;
7 }
8
9 int64_t quicktime_add3(int64_t a, int64_t b, int64_t c)
10 {
11         return a + b + c;
12 }
13
14 uint16_t quicktime_copy(int value)
15 {
16         return value;
17 }