Changeset 96479 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 25, 2022 6:57:49 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/RecordingUtils.cpp
r96478 r96479 155 155 * 156 156 * @returns IPRT status code. 157 * @param uPixelFormatPixel format to use for conversion.157 * @param enmPixelFormat Pixel format to use for conversion. 158 158 * @param paDst Pointer to destination buffer. 159 159 * @param uDstWidth Width (X, in pixels) of destination buffer. … … 163 163 * @param uSrcHeight Height (Y, in pixels) of source buffer. 164 164 */ 165 int RecordingUtilsRGBToYUV( uint32_t uPixelFormat,165 int RecordingUtilsRGBToYUV(RECORDINGPIXELFMT enmPixelFormat, 166 166 uint8_t *paDst, uint32_t uDstWidth, uint32_t uDstHeight, 167 167 uint8_t *paSrc, uint32_t uSrcWidth, uint32_t uSrcHeight) 168 168 { 169 switch ( uPixelFormat)169 switch (enmPixelFormat) 170 170 { 171 171 case RECORDINGPIXELFMT_RGB32:
Note:
See TracChangeset
for help on using the changeset viewer.