📄 umc_h264_status_defs.h
字号:
//// INTEL CORPORATION PROPRIETARY INFORMATION// This software is supplied under the terms of a license agreement or// nondisclosure agreement with Intel Corporation and may not be copied// or disclosed except in accordance with the terms of that agreement.// Copyright (c) 2004 - 2005 Intel Corporation. All Rights Reserved.//#if defined(DEFH264STATUS)// Everything is a-okay.DEFH264STATUS( UMC_OK , ICERR_OK , S_OK , PNR_OK )// A non-specific error.DEFH264STATUS( UMC_OPERATION_FAILED , ICERR_ERROR , E_FAIL , PNR_FAIL )// A memory allocation request failedDEFH264STATUS( UMC_FAILED_TO_ALLOCATE_BUFFER , ICERR_MEMORY , E_OUTOFMEMORY , PNR_OUTOFMEMORY )// An unsupported operation or feature was requested.DEFH264STATUS( UMC_UNSUPPORTED , ICERR_UNSUPPORTED , E_NOTIMPL , PNR_NOTIMPL )// User does not have the privileges to use a requested feature.DEFH264STATUS( H264_S_ACCESS_DENIED , ICERR_UNSUPPORTED , E_ACCESSDENIED , PNR_ACCESSDENIED )// A supported operation or feature was requested, but is not// available in the current state.DEFH264STATUS( H264_S_UNAVAILABLE , ICERR_UNSUPPORTED , E_ACCESSDENIED , PNR_ACCESSDENIED )// An unexpected NULL parameter was seen.DEFH264STATUS( H264_S_NULL_PARAM , ICERR_BADPARAM , E_INVALIDARG , PNR_POINTER )// The image dimensions are not supported.DEFH264STATUS( H264_S_BAD_DIMENSIONS , ICERR_BADIMAGESIZE , E_INVALIDARG , PNR_INVALID_PARAMETER )// The image format is not supported.DEFH264STATUS( H264_S_BAD_FORMAT , ICERR_BADFORMAT , VFW_E_INVALIDMEDIATYPE , PNR_BAD_FORMAT )// The requested functionality is not supported on the current CPU.DEFH264STATUS( H264_S_BAD_CPU , ICERR_UNSUPPORTED , VFW_E_PROCESSOR_NOT_SUITABLE , PNR_NOTIMPL )// A numerical parameter was not within a specified range of legal values.DEFH264STATUS( UMC_BAD_FORMAT , ICERR_BADPARAM , E_INVALIDARG , PNR_INVALID_PARAMETER )// The image is not prepared for display.DEFH264STATUS( H264_S_DONT_DRAW , ICERR_DONTDRAW , S_FALSE , PNR_OK // Sorry, there is no such concept in RealVideo. )#undef DEFH264STATUS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -