blob: 464129bfdfcac176693387d0027c4e9ceae3f4e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef ISTREAM_QP_H
#define ISTREAM_QP_H
#include "qp-encoder.h"
#define ISTREAM_QP_ENCODER_MAX_LINE_LENGTH 75
struct istream *i_stream_create_qp_decoder(struct istream *input);
struct istream *i_stream_create_qp_encoder(struct istream *input,
enum qp_encoder_flag flags);
#endif
|