diff options
| author | 2024-01-15 20:52:07 -0500 | |
|---|---|---|
| committer | 2024-01-15 20:52:07 -0500 | |
| commit | 863eda6c45a0ed0bf5f460dde6177c257d57cff8 (patch) | |
| tree | 231d1e7a4dc62e365152a205de82feab3dcb11cd /src/codec/spng | |
| parent | be3367fdbfaf7b62b94105cd55d1b9f1e30e9e58 (diff) | |
| download | camu-863eda6c45a0ed0bf5f460dde6177c257d57cff8.tar.gz camu-863eda6c45a0ed0bf5f460dde6177c257d57cff8.tar.bz2 camu-863eda6c45a0ed0bf5f460dde6177c257d57cff8.zip | |
Major build improvments (Windows sink)
- This commit won't run correctly because the signedness change is not handled by bimu server yet.
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/codec/spng')
| -rw-r--r-- | src/codec/spng/impl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codec/spng/impl.c b/src/codec/spng/impl.c index d090bdc..9089e99 100644 --- a/src/codec/spng/impl.c +++ b/src/codec/spng/impl.c @@ -53,13 +53,13 @@ static s32 spng_demuxer_get_packet(struct camu_demuxer *demux, struct camu_packe return CAMU_OK; } -static s64 spng_demuxer_get_duration(struct camu_demuxer *demux) +static u64 spng_demuxer_get_duration(struct camu_demuxer *demux) { (void)demux; return 0; } -static bool spng_demuxer_seek(struct camu_demuxer *demux, s64 pos) +static bool spng_demuxer_seek(struct camu_demuxer *demux, u64 pos) { (void)demux; (void)pos; |