@@ -13287,7 +13287,7 @@ static void CuvidDestroySurfaces(CuvidDecoder * decoder)
13287
13287
if (EglEnabled) {
13288
13288
if(EglThreadContext){
13289
13289
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
13290
- EglCheck();;
13290
+ EglCheck();
13291
13291
}
13292
13292
}
13293
13293
#endif
@@ -13946,7 +13946,7 @@ static uint8_t *CuvidGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int
13946
13946
Debug(3, "video/cuvid: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
13947
13947
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
13948
13948
13949
- size = width * height * 4;;
13949
+ size = width * height * 4;
13950
13950
13951
13951
base = malloc(size*sizeof(uint8_t));
13952
13952
if (!base) {
@@ -15724,7 +15724,7 @@ void NVdecCreateGlTexture(NVdecDecoder * decoder, unsigned int size_x, unsigned
15724
15724
#ifdef USE_EGL
15725
15725
if (EglEnabled) {
15726
15726
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
15727
- EglCheck();;
15727
+ EglCheck();
15728
15728
}
15729
15729
#endif
15730
15730
// create texture planes
@@ -15861,7 +15861,7 @@ static void NVdecDestroySurfaces(NVdecDecoder * decoder)
15861
15861
if (EglEnabled) {
15862
15862
if(EglThreadContext){
15863
15863
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
15864
- EglCheck();;
15864
+ EglCheck();
15865
15865
}
15866
15866
}
15867
15867
#endif
@@ -16612,7 +16612,7 @@ static uint8_t *NVdecGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int
16612
16612
Debug(3, "video/nvdec: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
16613
16613
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
16614
16614
16615
- size = width * height * 4;;
16615
+ size = width * height * 4;
16616
16616
16617
16617
base = malloc(size*sizeof(uint8_t));
16618
16618
if (!base) {
@@ -18394,7 +18394,7 @@ void CpuCreateGlTexture(CpuDecoder * decoder, unsigned int size_x, unsigned int
18394
18394
#ifdef USE_EGL
18395
18395
if (EglEnabled) {
18396
18396
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
18397
- EglCheck();;
18397
+ EglCheck();
18398
18398
}
18399
18399
#endif
18400
18400
// create texture planes
@@ -19004,7 +19004,7 @@ static uint8_t *CpuGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int *r
19004
19004
Debug(3, "video/cpu: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
19005
19005
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
19006
19006
19007
- size = width * height * 4;;
19007
+ size = width * height * 4;
19008
19008
19009
19009
base = malloc(size*sizeof(uint8_t));
19010
19010
if (!base) {
0 commit comments