| 1505 | } |
| 1506 | |
| 1507 | static void mpeg_decode_quant_matrix_extension(MpegEncContext *s) |
| 1508 | { |
| 1509 | dprintf(s->avctx, "matrix extension\n"); |
| 1510 | |
| 1511 | if(get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, s->intra_matrix, 1); |
| 1512 | if(get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, s->inter_matrix, 0); |
| 1513 | if(get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, NULL , 1); |
| 1514 | if(get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, NULL , 0); |
| 1515 | } |
| 1516 | |
| 1517 | static void mpeg_decode_picture_coding_extension(Mpeg1Context *s1) |
| 1518 | { |
no test coverage detected