]> git.proxmox.com Git - mirror_qemu.git/blame - migration/xbzrle.h
Merge tag 'pull-aspeed-20240201' of https://github.com/legoater/qemu into staging
[mirror_qemu.git] / migration / xbzrle.h
CommitLineData
709e3fe8
JQ
1/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef QEMU_MIGRATION_XBZRLE_H
15#define QEMU_MIGRATION_XBZRLE_H
16
17int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
18 uint8_t *dst, int dlen);
19
20int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen);
7ba7db9f 21
709e3fe8 22#endif