diff options
author | James Dong <jdong@google.com> | 2012-12-21 14:09:14 -0800 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2012-12-21 14:09:14 -0800 |
commit | 12834fe289e8173e94f31603fa6d313abe56ad70 (patch) | |
tree | 63289554db6ac52fdd4cc49975bd7b335cedc9a8 /libvideoeditor/vss/src | |
parent | b54cedabdf0261211241e2f3af09c75cffd911ed (diff) | |
parent | 437ced8a14944bf5450df50c5e7e7a6dfe20ea40 (diff) | |
download | frameworks_av-12834fe289e8173e94f31603fa6d313abe56ad70.zip frameworks_av-12834fe289e8173e94f31603fa6d313abe56ad70.tar.gz frameworks_av-12834fe289e8173e94f31603fa6d313abe56ad70.tar.bz2 |
Merge "libvideoeditor: fix code bugs when enabling all-level debugging macros"
Diffstat (limited to 'libvideoeditor/vss/src')
-rwxr-xr-x | libvideoeditor/vss/src/M4xVSS_internal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvideoeditor/vss/src/M4xVSS_internal.c b/libvideoeditor/vss/src/M4xVSS_internal.c index 5844115..64a6f40 100755 --- a/libvideoeditor/vss/src/M4xVSS_internal.c +++ b/libvideoeditor/vss/src/M4xVSS_internal.c @@ -4025,7 +4025,7 @@ M4OSA_ERR M4VSS3GPP_externalVideoEffectFifties( M4OSA_Void *pUserData, M4xVSS_FiftiesStruct* p_FiftiesData = (M4xVSS_FiftiesStruct *)pUserData; /* Check the inputs (debug only) */ - M4OSA_DEBUG_IF2((pFiftiesData == M4OSA_NULL),M4ERR_PARAMETER, + M4OSA_DEBUG_IF2((p_FiftiesData == M4OSA_NULL),M4ERR_PARAMETER, "xVSS: p_FiftiesData is M4OSA_NULL in M4VSS3GPP_externalVideoEffectFifties"); M4OSA_DEBUG_IF2((pPlaneOut == M4OSA_NULL),M4ERR_PARAMETER, "xVSS: p_PlaneOut is M4OSA_NULL in M4VSS3GPP_externalVideoEffectFifties"); |