| 103 | } |
| 104 | |
| 105 | Subsampling convertFromInternalSubsampling(vvdecColorFormat fmt) |
| 106 | { |
| 107 | if (fmt == VVDEC_CF_YUV400_PLANAR) |
| 108 | return Subsampling::YUV_400; |
| 109 | if (fmt == VVDEC_CF_YUV420_PLANAR) |
| 110 | return Subsampling::YUV_420; |
| 111 | if (fmt == VVDEC_CF_YUV422_PLANAR) |
| 112 | return Subsampling::YUV_422; |
| 113 | if (fmt == VVDEC_CF_YUV444_PLANAR) |
| 114 | return Subsampling::YUV_444; |
| 115 | |
| 116 | return Subsampling::UNKNOWN; |
| 117 | } |
| 118 | |
| 119 | Size calculateChromaSize(Size lumaSize, vvdecColorFormat fmt) |
| 120 | { |
no outgoing calls
no test coverage detected