Lines Matching defs:version
11 * version 2.1 of the License, or (at your option) any later version.
29 * Codec algorithm for version 0 is taken from Transcode <www.transcoding.org>
143 unsigned int version,header_size;
159 version = header & 0xff;
160 is_pal = buf[1] == 2 && version == 1;
163 if (version > 5) {
164 avpriv_report_missing_feature(avctx, "Fraps version %u", version);
179 } else if (version < 2) {
181 if (version == 0) needed_size /= 2;
222 avctx->pix_fmt = version & 1 ? is_pal ? AV_PIX_FMT_PAL8 : AV_PIX_FMT_BGR24 : AV_PIX_FMT_YUVJ420P;
223 avctx->color_range = version & 1 ? AVCOL_RANGE_UNSPECIFIED
225 avctx->colorspace = version & 1 ? AVCOL_SPC_UNSPECIFIED : AVCOL_SPC_BT709;
230 switch (version) {
299 /* Virtually the same as version 4, but is for RGB24 */