misc/coverity_model.c
author Vittorio Giovara <vittorio.giovara@gmail.com>
Tue, 10 Nov 2015 13:53:15 +0100
branch0.9.22
changeset 11597 4575b6990348
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
videorec: Appropriately rescale timestamps and duration Applies to both audio and video for them to be in sync.

void fpcrtl_halt(int num) {
    __coverity_panic__();
}

int fpcrtl_abs(int num) {
    return num >= 0 ? num : -num;
}