| 390 | } |
| 391 | |
| 392 | static inline int get_dmv(Mpeg12SliceContext *const s) |
| 393 | { |
| 394 | if (get_bits1(&s->gb)) |
| 395 | return 1 - (get_bits1(&s->gb) << 1); |
| 396 | else |
| 397 | return 0; |
| 398 | } |
| 399 | |
| 400 | /* motion type (for MPEG-2) */ |
| 401 | #define MT_FIELD 1 |
no test coverage detected