diff options
author | Danny Fernandes <dannyfernandes@google.com> | 2011-02-04 16:00:39 -0800 |
---|---|---|
committer | Danny Fernandes <dannyfernandes@google.com> | 2011-02-04 16:00:39 -0800 |
commit | aa05e8c760d5c2b228cbc1a0aeacbf058ae40978 (patch) | |
tree | 21fddc90f6a6bd1049f2c48e97cc0f76db230011 /libvideoeditor/vss/mcs/inc | |
parent | 4e28768b7a8d6a376c95d35e9060603431636bda (diff) | |
download | frameworks_av-aa05e8c760d5c2b228cbc1a0aeacbf058ae40978.zip frameworks_av-aa05e8c760d5c2b228cbc1a0aeacbf058ae40978.tar.gz frameworks_av-aa05e8c760d5c2b228cbc1a0aeacbf058ae40978.tar.bz2 |
Fixed Issue 3423072: Imported 1080x720 video clips present distorted view in preview
Change-Id: I38f2a042d66f7b639510d503321296e915689f7a
Diffstat (limited to 'libvideoeditor/vss/mcs/inc')
-rwxr-xr-x | libvideoeditor/vss/mcs/inc/M4MCS_ErrorCodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libvideoeditor/vss/mcs/inc/M4MCS_ErrorCodes.h b/libvideoeditor/vss/mcs/inc/M4MCS_ErrorCodes.h index 1c66a75..b9d60d2 100755 --- a/libvideoeditor/vss/mcs/inc/M4MCS_ErrorCodes.h +++ b/libvideoeditor/vss/mcs/inc/M4MCS_ErrorCodes.h @@ -59,6 +59,10 @@ #define M4MCS_ERR_INPUT_FILE_CONTAINS_NO_SUPPORTED_STREAM M4OSA_ERR_CREATE( M4_ERR, M4MCS, 0x01) /* The input file is invalid/corrupted */ #define M4MCS_ERR_INVALID_INPUT_FILE M4OSA_ERR_CREATE( M4_ERR, M4MCS, 0x02) +/* The input video frame size parameter is undefined */ +#define M4MCS_ERR_INVALID_INPUT_VIDEO_FRAME_SIZE M4OSA_ERR_CREATE( M4_ERR, M4MCS, 0x03) +/* The input video frame size is non multiple of 16 */ +#define M4MCS_ERR_INPUT_VIDEO_SIZE_NON_X16 M4OSA_ERR_CREATE( M4_ERR, M4MCS, 0x04) /* ----- SET OUTPUT PARAMS ERRORS ----- */ |