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