| 338 | } |
| 339 | |
| 340 | static int read_code012(GetBitContext * gb) |
| 341 | { |
| 342 | if (!get_bits1(gb)) |
| 343 | return 0; |
| 344 | return get_bits1(gb) + 1; |
| 345 | } |
| 346 | |
| 347 | static int read_frame_header(RV60Context *s, GetBitContext *gb, int * width, int * height) |
| 348 | { |
no test coverage detected