Lines Matching refs:bits_per_raw_sample
142 if (s->avctx->bits_per_raw_sample <= 8) {
149 int ret = decode_line(s, w, sample, plane_index, s->avctx->bits_per_raw_sample);
158 ((uint16_t*)(src + stride*y))[x*pixel_stride] = sample[1][x] << (16 - s->avctx->bits_per_raw_sample) | ((uint16_t **)sample)[1][x] >> (2 * s->avctx->bits_per_raw_sample - 16);
458 f->avctx->bits_per_raw_sample = get_symbol(c, state, 0);
535 f->avctx->bits_per_raw_sample,
556 int chroma_planes, chroma_h_shift, chroma_v_shift, transparency, colorspace, bits_per_raw_sample;
577 bits_per_raw_sample = f->version > 0 ? get_symbol(c, state, 0) : f->avctx->bits_per_raw_sample;
587 bits_per_raw_sample != f->avctx->bits_per_raw_sample ||
604 f->avctx->bits_per_raw_sample = bits_per_raw_sample;
615 if (f->avctx->bits_per_raw_sample <= 8)
617 else if (f->avctx->bits_per_raw_sample == 9) {
620 } else if (f->avctx->bits_per_raw_sample == 10) {
623 } else if (f->avctx->bits_per_raw_sample == 12) {
626 } else if (f->avctx->bits_per_raw_sample == 16) {
629 } else if (f->avctx->bits_per_raw_sample < 16) {
634 if (f->avctx->bits_per_raw_sample <= 8)
638 } else if (f->avctx->bits_per_raw_sample<=8 && !f->transparency) {
647 } else if (f->avctx->bits_per_raw_sample <= 8 && f->transparency) {
653 } else if (f->avctx->bits_per_raw_sample == 9 && !f->transparency) {
660 } else if (f->avctx->bits_per_raw_sample == 9 && f->transparency) {
667 } else if (f->avctx->bits_per_raw_sample == 10 && !f->transparency) {
675 } else if (f->avctx->bits_per_raw_sample == 10 && f->transparency) {
682 } else if (f->avctx->bits_per_raw_sample == 12 && !f->transparency) {
690 } else if (f->avctx->bits_per_raw_sample == 14 && !f->transparency) {
697 } else if (f->avctx->bits_per_raw_sample == 16 && !f->transparency){
704 } else if (f->avctx->bits_per_raw_sample == 16 && f->transparency){
718 if ( f->avctx->bits_per_raw_sample <= 8 && !f->transparency)
720 else if (f->avctx->bits_per_raw_sample <= 8 && f->transparency)
722 else if (f->avctx->bits_per_raw_sample == 9 && !f->transparency)
724 else if (f->avctx->bits_per_raw_sample == 10 && !f->transparency)
726 else if (f->avctx->bits_per_raw_sample == 10 && f->transparency)
728 else if (f->avctx->bits_per_raw_sample == 12 && !f->transparency)
730 else if (f->avctx->bits_per_raw_sample == 12 && f->transparency)
732 else if (f->avctx->bits_per_raw_sample == 14 && !f->transparency)
734 else if (f->avctx->bits_per_raw_sample == 16 && !f->transparency) {
738 else if (f->avctx->bits_per_raw_sample == 16 && f->transparency) {
922 f->version, p->key_frame, f->ac, f->ec, f->slice_count, f->avctx->bits_per_raw_sample);