Lines Matching refs:pmode
830 int pmode, int add_coeffs, int size, int plane)
837 switch (pmode) {
952 int x, int y, int pmode, int has_coeffs, int plane)
959 if (pmode < 0)
960 pmode = get_prediction(avctx, x, y, 8);
961 return predict_intra(avctx, frame, x, y, pmode, 0, 8, plane);
969 if (pmode < 0)
970 pmode = get_prediction(avctx, x, y, 8);
971 ret = predict_intra(avctx, frame, x, y, pmode, 1, 8, plane);
977 int new_pmode = pmode;
1023 int pmode = get_bits(gb, 3);
1025 if (pmode == 2) {
1026 ret = predict_intra(avctx, frame, x, y, pmode, 0, 16, 0);
1029 pmode = 9;
1032 ret = process_block(avctx, frame, x, y, pmode, flags & 1, 0);
1036 ret = process_block(avctx, frame, x + 8, y, pmode, flags & 1, 0);
1040 ret = process_block(avctx, frame, x, y + 8, pmode, flags & 1, 0);
1044 ret = process_block(avctx, frame, x + 8, y + 8, pmode, flags & 1, 0);