fix memory leak in EncUT_GetIntraPredictor

This commit is contained in:
huili2 2014-06-09 18:12:03 -07:00
parent cc66c999b0
commit 01322d11ff

View File

@ -509,7 +509,9 @@ TEST(GetIntraPredictorTest, TestGetI16x16LumaPredPlane) {
}
pRef -= kiStride + 1;
pPred -= (iPredStride * 16);
delete []pRef;
delete []pPred;
}
TEST(GetIntraPredictorTest, TestGetI16x16LumaPredDc) {