| 89 | { |
| 90 | |
| 91 | Subsampling convertFromInternalSubsampling(libHMDec_ChromaFormat fmt) |
| 92 | { |
| 93 | if (fmt == LIBHMDEC_CHROMA_400) |
| 94 | return Subsampling::YUV_400; |
| 95 | if (fmt == LIBHMDEC_CHROMA_420) |
| 96 | return Subsampling::YUV_420; |
| 97 | if (fmt == LIBHMDEC_CHROMA_422) |
| 98 | return Subsampling::YUV_422; |
| 99 | |
| 100 | return Subsampling::UNKNOWN; |
| 101 | } |
| 102 | |
| 103 | } // namespace |
| 104 |
no outgoing calls
no test coverage detected