| 188 | } |
| 189 | |
| 190 | int CLAVPixFmtConverter::GetFilteredFormatCount() |
| 191 | { |
| 192 | LAV_INOUT_PIXFMT_MAP *pixFmtMap = lookupFormatMap(m_InputPixFmt, m_InBpp); |
| 193 | int count = 0; |
| 194 | for (int i = 0; i < LAVOutPixFmt_NB; ++i) |
| 195 | { |
| 196 | if (m_pSettings->GetPixelFormat(pixFmtMap->lav_pix_fmts[i])) |
| 197 | count++; |
| 198 | } |
| 199 | |
| 200 | if (count == 0) |
| 201 | count = LAVOutPixFmt_NB; |
| 202 | |
| 203 | return count; |
| 204 | } |
| 205 | |
| 206 | LAVOutPixFmts CLAVPixFmtConverter::GetFilteredFormat(int index) |
| 207 | { |
nothing calls this directly
no test coverage detected