Lines Matching refs:bits_per_raw_sample
50 avctx->bits_per_raw_sample = 16;
53 if (avctx->bits_per_raw_sample > 20) {
54 if (avctx->bits_per_raw_sample > 24)
56 avctx->bits_per_raw_sample = 24;
57 } else if (!avctx->bits_per_raw_sample) {
58 avctx->bits_per_raw_sample = 24;
59 } else if (avctx->bits_per_raw_sample <= 20) {
60 avctx->bits_per_raw_sample = 20;
66 (avctx->bits_per_raw_sample + 4);
79 (avctx->bits_per_raw_sample + 4)) / 8;
97 put_bits(&pb, 2, (avctx->bits_per_raw_sample - 16) / 4); // bits per samples (0 = 16bit, 1 = 20bit, 2 = 24bit)
102 if (avctx->bits_per_raw_sample == 24) {
124 } else if (avctx->bits_per_raw_sample == 20) {
145 } else if (avctx->bits_per_raw_sample == 16) {