int test2();
#endif
-
-
- static inline OMX_TICKS intToOMXTicks(long long pts) {
- OMX_TICKS temp;
- temp.nLowPart=pts;
- temp.nHighPart=pts>>32;
- return temp;
+ static inline OMX_TICKS intToOMXTicks(long long pts)
+ {
+ OMX_TICKS temp;
+ // Assigning a long long int to an int drops the MSBs which is what we want here
+ // But to avoid a -Wconversion warning, cast it
+ temp.nLowPart = static_cast<OMX_U32>(pts);
+ temp.nHighPart = static_cast<OMX_U32>(pts >> 32);
+ return temp;
}
-
-
private:
int EnterIframePlayback();
bool iframemode;