summaryrefslogtreecommitdiffstats
path: root/stream/stream_libarchive.h
blob: 5d10eb33c5cfb9a772edbc96b729dd0e6ec2e7ad (plain)
1
2
3
4
5
6
7
8
9
10
struct mp_log;

struct mp_archive {
    struct archive *arch;
    struct stream *src;
    char buffer[4096];
};

void mp_archive_free(struct mp_archive *mpa);
struct mp_archive *mp_archive_new(struct mp_log *log, struct stream *src);