Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/dav1d/picture.h')
-rw-r--r--include/dav1d/picture.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/dav1d/picture.h b/include/dav1d/picture.h
index e9d6541..f8e1025 100644
--- a/include/dav1d/picture.h
+++ b/include/dav1d/picture.h
@@ -192,14 +192,10 @@ typedef struct Dav1dPicAllocator {
/**
* Release the picture buffer.
*
- * @param buf The buffer that was returned by
- * alloc_picture_callback().
- * @param allocator_tag The Dav1dPicture.allocator_data that was filled by
- * alloc_picture_callback()
- * @param cookie Custom pointer passed to all calls.
+ * @param pic The picture that was filled by alloc_picture_callback().
+ * @param cookie Custom pointer passed to all calls.
*/
- void (*release_picture_callback)(uint8_t *buf, void *allocator_data,
- void *cookie);
+ void (*release_picture_callback)(Dav1dPicture *pic, void *cookie);
} Dav1dPicAllocator;
/**