|
|
|
@@ -108,7 +108,7 @@ extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; |
|
|
|
* component c in data[1] to dst, rather than the palette indexes in |
|
|
|
* data[0]. The behavior is undefined if the format is not paletted. |
|
|
|
*/ |
|
|
|
void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], |
|
|
|
void av_read_image_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], |
|
|
|
const AVPixFmtDescriptor *desc, int x, int y, int c, int w, int read_pal_component); |
|
|
|
|
|
|
|
/** |
|
|
|
@@ -125,7 +125,7 @@ void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], |
|
|
|
* @param w the width of the line to write, that is the number of |
|
|
|
* values to write to the image line |
|
|
|
*/ |
|
|
|
void write_line(const uint16_t *src, uint8_t *data[4], const int linesize[4], |
|
|
|
void av_write_image_line(const uint16_t *src, uint8_t *data[4], const int linesize[4], |
|
|
|
const AVPixFmtDescriptor *desc, int x, int y, int c, int w); |
|
|
|
|
|
|
|
/** |
|
|
|
|