summaryrefslogtreecommitdiffstats
path: root/video/out/bitmap_packer.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-07-01 20:29:45 +0200
committerwm4 <wm4@nowhere>2016-07-01 20:29:45 +0200
commit3738bfb451c8558ed6f3710a72d418e7c68f7f5b (patch)
tree0930f7e1d110e0d3d4108d0f1a933e4c39816f27 /video/out/bitmap_packer.h
parent8523e1fd95e9f701e19c82ee2f74b811e6b3c004 (diff)
downloadmpv-3738bfb451c8558ed6f3710a72d418e7c68f7f5b.tar.bz2
mpv-3738bfb451c8558ed6f3710a72d418e7c68f7f5b.tar.xz
bitmap_packer: remove some unused functions
Diffstat (limited to 'video/out/bitmap_packer.h')
-rw-r--r--video/out/bitmap_packer.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/video/out/bitmap_packer.h b/video/out/bitmap_packer.h
index 8fd2fce599..97bf88f3e2 100644
--- a/video/out/bitmap_packer.h
+++ b/video/out/bitmap_packer.h
@@ -48,20 +48,4 @@ void packer_set_size(struct bitmap_packer *packer, int size);
*/
int packer_pack(struct bitmap_packer *packer);
-/* Like above, but packer->count will be automatically set and
- * packer->in will be reallocated if needed and filled from the
- * given image list.
- */
-int packer_pack_from_subbitmaps(struct bitmap_packer *packer,
- struct sub_bitmaps *b);
-
-// Copy the (already packed) sub-bitmaps from b to the image in data.
-// data must point to an image that is at least (packer->w, packer->h) big.
-// The image has the given stride (bytes between (x, y) to (x, y + 1)), and the
-// pixel format used by both the sub-bitmaps and the image uses pixel_stride
-// bytes per pixel (bytes between (x, y) to (x + 1, y)).
-// If packer->padding is set, the padding borders are cleared with 0.
-void packer_copy_subbitmaps(struct bitmap_packer *packer, struct sub_bitmaps *b,
- void *data, int pixel_stride, int stride);
-
#endif