mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-04 02:22:15 +02:00
add documentation for capsa and change parameter order and names for image loading
This commit is contained in:
parent
8b72f27c2d
commit
65717dc020
@ -21,41 +21,265 @@ Service* capsaGetServiceSession(void);
|
||||
/// Gets the Service for IAlbumAccessorSession, only initialized after \ref capsaOpenAlbumMovieStream was used (unaffected by using \ref capsaCloseAlbumMovieStream).
|
||||
Service* capsaGetServiceSession_Accessor(void);
|
||||
|
||||
/**
|
||||
* @brief Gets the amount of files at a AlbumStorage.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] count Amount of files.
|
||||
*/
|
||||
Result capsaGetAlbumFileCount(CapsAlbumStorage storage, u64* count);
|
||||
|
||||
/**
|
||||
* @brief Gets a listing of \ref CapsAlbumEntry, where the AlbumFile's storage matches the input one.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] count Total output entries.
|
||||
*/
|
||||
Result capsaGetAlbumFileList(CapsAlbumStorage storage, u64* count, CapsAlbumEntry* buffer, u64 size);
|
||||
|
||||
/**
|
||||
* @brief Loads a file into the specified buffer.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[out] out_size Size of the AlbumFile.
|
||||
* @param[out] workbuf File output buffer.
|
||||
* @param[in] workbuf_size Size of the workbuf.
|
||||
*/
|
||||
Result capsaLoadAlbumFile(const CapsAlbumFileId *file_id, u64 *out_size, void* workbuf, u64 workbuf_size);
|
||||
|
||||
/**
|
||||
* @brief Deletes an AlbumFile corresponding to the specified \ref CapsAlbumFileId.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
*/
|
||||
Result capsaDeleteAlbumFile(const CapsAlbumFileId *file_id);
|
||||
|
||||
/**
|
||||
* @brief Copies an AlbumFile to the specified \ref CapsAlbumStorage.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[in] dst_storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaStorageCopyAlbumFile(const CapsAlbumFileId *file_id, CapsAlbumStorage dst_storage);
|
||||
|
||||
/**
|
||||
* @brief Gets the mount status of the specified \ref CapsAlbumStorage.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] is_mounted
|
||||
*/
|
||||
Result capsaIsAlbumMounted(CapsAlbumStorage storage, bool* is_mounted);
|
||||
|
||||
/**
|
||||
* @brief Returns the AlbumUsage for a specified \ref CapsAlbumStorage.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] out \ref CapsAlbumUsage
|
||||
*/
|
||||
Result capsaGetAlbumUsage(CapsAlbumStorage storage, CapsAlbumUsage2 *out);
|
||||
|
||||
/**
|
||||
* @brief Gets the size for the specified AlbumFile.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[out] size Size of the file.
|
||||
*/
|
||||
Result capsaGetAlbumFileSize(const CapsAlbumFileId *file_id, u64* size);
|
||||
Result capsaLoadAlbumFileThumbnail(const CapsAlbumFileId *file_id, u64 *out_size, void* workbuf, u64 workbuf_size);
|
||||
/// Only available on [2.0.0+].
|
||||
Result capsaLoadAlbumScreenShotImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size);
|
||||
Result capsaLoadAlbumScreenShotThumbnailImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size);
|
||||
/// Only available on [3.0.0+].
|
||||
Result capsaLoadAlbumScreenShotImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size);
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size);
|
||||
/// Only available on [4.0.0+].
|
||||
|
||||
/**
|
||||
* @brief Load the Thumbnail for the specified AlbumFile.
|
||||
* @note Will always be 320x180.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[out] out_size Size of the Thumbnail.
|
||||
* @param[out] image JPEG image output buffer.
|
||||
* @param[in] image_size Image buffer size.
|
||||
*/
|
||||
Result capsaLoadAlbumFileThumbnail(const CapsAlbumFileId *file_id, u64 *out_size, void* image, u64 image_size);
|
||||
|
||||
/**
|
||||
* @brief Load the ScreenShotImage for the specified AlbumFile.
|
||||
* @note Only available on [2.0.0+].
|
||||
* @param[out] width Output image width. Optional, can be NULL.
|
||||
* @param[out] height Output image height. Optional, can be NULL.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 1280x720.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
*/
|
||||
Result capsaLoadAlbumScreenShotImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* image, u64 image_size, void* workbuf, u64 workbuf_size);
|
||||
|
||||
/**
|
||||
* @brief Load the ScreenShotThumbnailImage for the specified AlbumFile.
|
||||
* @note Only available on [2.0.0+].
|
||||
* @param[out] width Output image width. Optional, can be NULL.
|
||||
* @param[out] height Output image height. Optional, can be NULL.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 320x180.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
*/
|
||||
Result capsaLoadAlbumScreenShotThumbnailImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* image, u64 image_size, void* workbuf, u64 workbuf_size);
|
||||
|
||||
/**
|
||||
* @brief Load the ScreenShotImage for the specified AlbumFile.
|
||||
* @note Only available on [3.0.0+].
|
||||
* @param[out] width Output image width. Optional, can be NULL.
|
||||
* @param[out] height Output image height. Optional, can be NULL.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[in] opts \ref CapsScreenShotDecodeOption
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 1280x720.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
*/
|
||||
Result capsaLoadAlbumScreenShotImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size);
|
||||
|
||||
/**
|
||||
* @brief Load the ScreenShotThumbnailImage for the specified AlbumFile.
|
||||
* @note Only available on [3.0.0+].
|
||||
* @param[out] width Output image width. Optional, can be NULL.
|
||||
* @param[out] height Output image height. Optional, can be NULL.
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[in] opts \ref CapsScreenShotDecodeOption
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 320x180.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
*/
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size);
|
||||
|
||||
/**
|
||||
* @brief Returns the AlbumUsage for a specified \ref CapsAlbumStorage.
|
||||
* @note Only available on [4.0.0+].
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] out \ref CapsAlbumUsage
|
||||
*/
|
||||
Result capsaGetAlbumUsage3(CapsAlbumStorage storage, CapsAlbumUsage3 *out);
|
||||
|
||||
/**
|
||||
* @brief Returns the result for a AlbumStorage mount.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaGetAlbumMountResult(CapsAlbumStorage storage);
|
||||
|
||||
/**
|
||||
* @brief Returns the AlbumUsage for a specified \ref CapsAlbumStorage.
|
||||
* @note Only available on [4.0.0+].
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
* @param[out] out \ref CapsAlbumUsage
|
||||
*/
|
||||
Result capsaGetAlbumUsage16(CapsAlbumStorage storage, CapsAlbumUsage16 *out);
|
||||
|
||||
/**
|
||||
* @brief Gets the currently set autosaving storage.
|
||||
* @note Wrapper around setsysGetPrimaryAlbumStorage but defaults to NAND if SD isn't available.
|
||||
* @param[out] storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaGetAutoSavingStorage(CapsAlbumStorage* storage);
|
||||
Result capsaGetRequiredStorageSpaceSizeToCopyAll(CapsAlbumStorage dst_storage, CapsAlbumStorage src_storage, u64* out);
|
||||
/// Only available on [4.0.0+].
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx1(const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size, void* out, u64 out_size);
|
||||
|
||||
/**
|
||||
* @brief Gets required size to copy all files from one Storage to another.
|
||||
* @param[in] dst_storage \ref CapsAlbumStorage
|
||||
* @param[in] src_storage \ref CapsAlbumStorage
|
||||
* @param[out] out Required storage space size.
|
||||
*/
|
||||
Result capsaGetRequiredStorageSpaceSizeToCopyAll(CapsAlbumStorage dst_storage, CapsAlbumStorage src_storage, u64* out);
|
||||
|
||||
/**
|
||||
* @brief Load the ScreenShotThumbnailImage for the specified AlbumFile.
|
||||
* @note Only available on [4.0.0+].
|
||||
* @param[in] file_id \ref CapsAlbumFileId
|
||||
* @param[in] opts \ref CapsScreenShotDecodeOption
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 320x180.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
* @param[out] out Data buffer.
|
||||
* @param[in] out_size Size of the Data buffer.
|
||||
*/
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx1(const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size, void* out, u64 out_size);
|
||||
|
||||
/**
|
||||
* @brief Unmounts the specified AlbumStorage.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaForceAlbumUnmounted(CapsAlbumStorage storage);
|
||||
|
||||
/**
|
||||
* @brief Resets mount status for the specified AlbumStorage.
|
||||
* @note Mounts the Storage if available.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaResetAlbumMountStatus(CapsAlbumStorage storage);
|
||||
|
||||
/**
|
||||
* @brief Refreshs Album Cache for the specified AlbumStorage.
|
||||
* @param[in] storage \ref CapsAlbumStorage
|
||||
*/
|
||||
Result capsaRefreshAlbumCache(CapsAlbumStorage storage);
|
||||
|
||||
/// Only available on [4.0.0+]
|
||||
/**
|
||||
* @brief Opens an AlbumMovieStream.
|
||||
* @note This opens IAlbumAccessorSession if not previously opened, it's closed during \ref capsaExit.
|
||||
* @note Up to 4 streams can be open at the same time. Multiple streams can be open at the same time for the same \ref CapsAlbumFileId.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[out] stream Stream handle.
|
||||
* @param[in] entry \ref CapsAlbumFileId
|
||||
*/
|
||||
Result capsaOpenAlbumMovieStream(u64 *stream, const CapsAlbumFileId *file_id);
|
||||
|
||||
/**
|
||||
* @brief Closes an AlbumMovieStream.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
*/
|
||||
Result capsaCloseAlbumMovieStream(u64 stream);
|
||||
|
||||
/**
|
||||
* @brief Gets the data size of an AlbumMovieStream.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
* @param[out] size Size of the actual MP4, without the JPEG at the end.
|
||||
*/
|
||||
Result capsaGetAlbumMovieStreamSize(u64 stream, u64 *size);
|
||||
|
||||
/**
|
||||
* @brief Reads data from an AlbumMovieStream.
|
||||
* @note offset(+size) must not be negative. offset and size must be aligned to 0x40000-bytes.
|
||||
* @note When offset(+size) goes beyond the size from \ref capsaGetAlbumMovieStreamSize, the regions of the buffer which goes beyond that are cleared to 0, and actual_size is still set to the input size.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
* @param[in] offset Offset.
|
||||
* @param[out] Output data buffer.
|
||||
* @param[in] size Data buffer size.
|
||||
* @param[out] actual_size Actual read size.
|
||||
*/
|
||||
Result capsaReadMovieDataFromAlbumMovieReadStream(u64 stream, s64 offset, void* buffer, size_t size, u64 *actual_size);
|
||||
|
||||
/**
|
||||
* @brief Gets the BrokenReason for an AlbumMovieStream.
|
||||
* @note Official sw doesn't use this.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
*/
|
||||
Result capsaGetAlbumMovieReadStreamBrokenReason(u64 stream);
|
||||
|
||||
/**
|
||||
* @brief Gets the data size of an Image taken from an AlbumMovieStream.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
* @param[out] size Expected size of an Image.
|
||||
*/
|
||||
Result capsaGetAlbumMovieReadStreamImageDataSize(u64 stream, u64 *size);
|
||||
|
||||
/**
|
||||
* @brief Reads data of an Image taken from an AlbumMovieStream.
|
||||
* @note Only available on [4.0.0+]
|
||||
* @param[in] stream Stream handle.
|
||||
* @param[in] offset Offset.
|
||||
* @param[out] Output data buffer.
|
||||
* @param[in] size Data buffer size.
|
||||
* @param[out] actual_size Actual read size.
|
||||
*/
|
||||
Result capsaReadImageDataFromAlbumMovieReadStream(u64 stream, s64 offset, void* buffer, size_t size, u64 *actual_size);
|
||||
Result capsaReadFileAttributeFromAlbumMovieReadStream(u64 stream, CapsScreenShotAttributeForApplication* attribute);
|
||||
|
||||
/**
|
||||
* @brief Gets the file attribute of an AlbumMovieStream.
|
||||
* @param[in] stream Stream handle.
|
||||
* @param[out] attr \ref CapsScreenShotAttributeForApplication.
|
||||
*/
|
||||
Result capsaReadFileAttributeFromAlbumMovieReadStream(u64 stream, CapsScreenShotAttributeForApplication* attr);
|
||||
|
@ -98,9 +98,9 @@ Result capsuGetAlbumFileSize(const CapsApplicationAlbumFileEntry *entry, u64 *si
|
||||
* @param[in] userdata_maxsize Max size of the userdata buffer. Optional, can be 0.
|
||||
* @param[out] userdata_size Userdata size field, clamped to max size sizeof(CapsApplicationData::userdata) when needed.
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[out] image_size Image buffer size, should be at least large enough for RGBA8 1280x720.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 1280x720.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[out] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
* @param[in] entry \ref CapsApplicationAlbumFileEntry
|
||||
* @param[in] option \ref CapsScreenShotDecodeOption
|
||||
*/
|
||||
@ -115,9 +115,9 @@ Result capsuLoadAlbumScreenShotImage(s32 *width, s32 *height, CapsScreenShotAttr
|
||||
* @param[in] userdata_maxsize Max size of the userdata buffer. Optional, can be 0.
|
||||
* @param[out] userdata_size Userdata size field, clamped to max size sizeof(CapsApplicationData::userdata) when needed.
|
||||
* @param[out] image RGBA8 image output buffer.
|
||||
* @param[out] image_size Image buffer size, should be at least large enough for RGBA8 320x180.
|
||||
* @param[in] image_size Image buffer size, should be at least large enough for RGBA8 320x180.
|
||||
* @param[out] workbuf Work buffer, cleared to 0 by the cmd before it returns.
|
||||
* @param[out] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
* @param[in] workbuf_size Work buffer size, must be at least the size of the JPEG within the AlbumFile.
|
||||
* @param[in] entry \ref CapsApplicationAlbumFileEntry
|
||||
* @param[in] option \ref CapsScreenShotDecodeOption
|
||||
*/
|
||||
|
@ -79,14 +79,14 @@ Result capsaGetAlbumFileSize(const CapsAlbumFileId *file_id, u64* size) {
|
||||
return serviceDispatchInOut(&g_capsaSrv, 7, *file_id, *size);
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumFileThumbnail(const CapsAlbumFileId *file_id, u64 *out_size, void* workbuf, u64 workbuf_size) {
|
||||
Result capsaLoadAlbumFileThumbnail(const CapsAlbumFileId *file_id, u64 *out_size, void* image, u64 image_size) {
|
||||
return serviceDispatchInOut(&g_capsaSrv, 8, *file_id, *out_size,
|
||||
.buffer_attrs = { SfBufferAttr_HipcMapAlias | SfBufferAttr_Out },
|
||||
.buffers = { { workbuf, workbuf_size } },
|
||||
.buffers = { { image, image_size } },
|
||||
);
|
||||
}
|
||||
|
||||
static Result _capsaLoadAlbumScreenshot(u64* width, u64* height, const CapsAlbumFileId *file_id, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size, u32 cmd_id) {
|
||||
static Result _capsaLoadAlbumScreenshot(u64* width, u64* height, const CapsAlbumFileId *file_id, void* image, u64 image_size, void* workbuf, u64 workbuf_size, u32 cmd_id) {
|
||||
if (hosversionBefore(2,0,0))
|
||||
return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
|
||||
struct {
|
||||
@ -95,22 +95,22 @@ static Result _capsaLoadAlbumScreenshot(u64* width, u64* height, const CapsAlbum
|
||||
} out;
|
||||
Result rc = serviceDispatchInOut(&g_capsaSrv, cmd_id, *file_id, out,
|
||||
.buffer_attrs = { SfBufferAttr_HipcMapAlias | SfBufferAttr_Out | SfBufferAttr_HipcMapTransferAllowsNonSecure, SfBufferAttr_HipcMapAlias | SfBufferAttr_Out },
|
||||
.buffers = { { rawbuf, rawbuf_size }, { workbuf, workbuf_size } },
|
||||
.buffers = { { image, image_size }, { workbuf, workbuf_size } },
|
||||
);
|
||||
*width = out.width;
|
||||
*height = out.height;
|
||||
return rc;
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumScreenShotImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size) {
|
||||
return _capsaLoadAlbumScreenshot(width, height, file_id, workbuf, workbuf_size, rawbuf, rawbuf_size, 9);
|
||||
Result capsaLoadAlbumScreenShotImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* image, u64 image_size, void* workbuf, u64 workbuf_size) {
|
||||
return _capsaLoadAlbumScreenshot(width, height, file_id, image, image_size, workbuf, workbuf_size, 9);
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumScreenShotThumbnailImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size) {
|
||||
return _capsaLoadAlbumScreenshot(width, height, file_id, workbuf, workbuf_size, rawbuf, rawbuf_size, 10);
|
||||
Result capsaLoadAlbumScreenShotThumbnailImage(u64* width, u64* height, const CapsAlbumFileId *file_id, void* image, u64 image_size, void* workbuf, u64 workbuf_size) {
|
||||
return _capsaLoadAlbumScreenshot(width, height, file_id, image, image_size, workbuf, workbuf_size, 10);
|
||||
}
|
||||
|
||||
static Result _capsaLoadAlbumScreenshotEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size, u32 cmd_id) {
|
||||
static Result _capsaLoadAlbumScreenshotEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size, u32 cmd_id) {
|
||||
if (hosversionBefore(3,0,0))
|
||||
return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
|
||||
struct {
|
||||
@ -123,19 +123,19 @@ static Result _capsaLoadAlbumScreenshotEx(u64* width, u64* height, const CapsAlb
|
||||
} out;
|
||||
Result rc = serviceDispatchInOut(&g_capsaSrv, cmd_id, in, out,
|
||||
.buffer_attrs = { SfBufferAttr_HipcMapAlias | SfBufferAttr_Out | SfBufferAttr_HipcMapTransferAllowsNonSecure, SfBufferAttr_HipcMapAlias | SfBufferAttr_Out },
|
||||
.buffers = { { rawbuf, rawbuf_size }, { workbuf, workbuf_size } },
|
||||
.buffers = { { image, image_size }, { workbuf, workbuf_size } },
|
||||
);
|
||||
*width = out.width;
|
||||
*height = out.height;
|
||||
return rc;
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumScreenShotImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size) {
|
||||
return _capsaLoadAlbumScreenshotEx(width, height, file_id, opts, workbuf, workbuf_size, rawbuf, rawbuf_size, 12);
|
||||
Result capsaLoadAlbumScreenShotImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size) {
|
||||
return _capsaLoadAlbumScreenshotEx(width, height, file_id, opts, image, image_size, workbuf, workbuf_size, 12);
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* workbuf, u64 workbuf_size, void* rawbuf, u64 rawbuf_size) {
|
||||
return _capsaLoadAlbumScreenshotEx(width, height, file_id, opts, workbuf, workbuf_size, rawbuf, rawbuf_size, 13);
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx(u64* width, u64* height, const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size) {
|
||||
return _capsaLoadAlbumScreenshotEx(width, height, file_id, opts, image, image_size, workbuf, workbuf_size, 13);
|
||||
}
|
||||
|
||||
Result capsaGetAlbumUsage3(CapsAlbumStorage storage, CapsAlbumUsage3 *out) {
|
||||
@ -173,7 +173,7 @@ Result capsaGetRequiredStorageSpaceSizeToCopyAll(CapsAlbumStorage dst_storage, C
|
||||
return serviceDispatchInOut(&g_capsaSrv, 501, in, *out);
|
||||
}
|
||||
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx1(const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* work_buffer, u64 work_buffer_size, void* raw_buffer, u64 raw_buffer_size, void* out, u64 out_size) {
|
||||
Result capsaLoadAlbumScreenShotThumbnailImageEx1(const CapsAlbumFileId *file_id, const CapsScreenShotDecodeOption *opts, void* image, u64 image_size, void* workbuf, u64 workbuf_size, void* out, u64 out_size) {
|
||||
if (hosversionBefore(4,0,0))
|
||||
return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
|
||||
struct {
|
||||
@ -182,7 +182,7 @@ Result capsaLoadAlbumScreenShotThumbnailImageEx1(const CapsAlbumFileId *file_id,
|
||||
} in = { *file_id, *opts };
|
||||
return serviceDispatchIn(&g_capsaSrv, 1003, in,
|
||||
.buffer_attrs = { SfBufferAttr_HipcMapAlias | SfBufferAttr_Out | SfBufferAttr_FixedSize, SfBufferAttr_HipcMapAlias | SfBufferAttr_Out | SfBufferAttr_HipcMapTransferAllowsNonSecure, SfBufferAttr_HipcMapAlias | SfBufferAttr_Out },
|
||||
.buffers = { { out, out_size }, { raw_buffer, raw_buffer_size }, { work_buffer, work_buffer_size } },
|
||||
.buffers = { { out, out_size }, { image, image_size }, { workbuf, workbuf_size } },
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user