| 42 | { |
| 43 | |
| 44 | std::string to_string(SliceType sliceType) |
| 45 | { |
| 46 | if (sliceType == SliceType::B) |
| 47 | return "B"; |
| 48 | if (sliceType == SliceType::P) |
| 49 | return "P"; |
| 50 | return "I"; |
| 51 | } |
| 52 | |
| 53 | using namespace parser::reader; |
| 54 |
no outgoing calls
no test coverage detected