29 #define CLIP(v) av_clip(v, 4, 1019)
30 #define CLIP8(v) av_clip(v, 1, 254)
32 #define WRITE_PIXELS(a, b, c) \
35 val |= (CLIP(*b++) << 10) | \
41 #define WRITE_PIXELS8(a, b, c) \
43 val = (CLIP8(*a++) << 2); \
44 val |= (CLIP8(*b++) << 12) | \
45 (CLIP8(*c++) << 22); \
57 for( i = 0; i < width-11; i += 12 ){
75 for( i = 0; i < width-5; i += 6 ){
87 if (avctx->
width & 1) {
108 const AVFrame *pic,
int *got_packet)
112 int aligned_width = ((avctx->
width + 47) / 48) * 48;
113 int stride = aligned_width * 8 / 3;
114 int line_padding = stride - ((avctx->
width * 8 + 11) / 12) * 4;
126 const uint16_t *
y = (
const uint16_t*)pic->
data[0];
127 const uint16_t *
u = (
const uint16_t*)pic->
data[1];
128 const uint16_t *
v = (
const uint16_t*)pic->
data[2];
131 w = (avctx->
width / 6) * 6;
138 if (w < avctx->
width - 1) {
142 if (w == avctx->
width - 2) {
147 if (w < avctx->
width - 3) {
148 val |= (
CLIP(*
u++) << 10) | (
CLIP(*y++) << 20);
152 val =
CLIP(*v++) | (
CLIP(*y++) << 10);
157 memset(dst, 0, line_padding);
169 for (h = 0; h < avctx->
height; h++) {
171 w = (avctx->
width / 12) * 12;
177 dst += (w / 12) * 32;
179 for( ; w < avctx->
width-5; w += 6 ){
185 if (w < avctx->
width - 1) {
188 val =
CLIP8(*y++) << 2;
189 if (w == avctx->
width - 2) {
194 if (w < avctx->
width - 3) {
195 val |= (
CLIP8(*u++) << 12) | (
CLIP8(*y++) << 22);
199 val = (
CLIP8(*v++) << 2) | (
CLIP8(*y++) << 12);
204 memset(dst, 0, line_padding);