summaryrefslogtreecommitdiff
path: root/src/cos_stream_filter.c
blob: 6f407de289adfc43cbf7a394fcb410cbefff2caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of libnspdf.
 *
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 */

#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include <nspdf/errors.h>

#include "cos_object.h"
#include "pdf_doc.h"

nspdferror
nspdf__cos_stream_filter(struct nspdf_doc *doc,
                         const char *filter_name,
                         struct cos_stream **stream_out)
{
    struct cos_stream *stream_in;

    stream_in = *stream_out;

    printf("applying filter %s\n", filter_name);
    return NSPDFERROR_OK;
}