Skip to content

Commit 96eb88a

Browse files
authored
Merge pull request pesintta#87 from j1rie/latest
tell VideoSoftStartSync, cosmetics
2 parents 45a4f30 + 4324351 commit 96eb88a

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

audio.c

+1
Original file line numberDiff line numberDiff line change
@@ -2455,6 +2455,7 @@ void AudioVideoReady(int64_t pts)
24552455
int first = 1;
24562456
int loop_max = 800; // 8s
24572457

2458+
Debug(3, "audio: VideoSoftStartSync: %d\n", VideoSoftStartSync);
24582459
if (pts == (int64_t) INT64_C(0x8000000000000000)) {
24592460
Debug(3, "audio: a/v start, no valid video\n");
24602461
return;

video.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -13287,7 +13287,7 @@ static void CuvidDestroySurfaces(CuvidDecoder * decoder)
1328713287
if (EglEnabled) {
1328813288
if(EglThreadContext){
1328913289
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
13290-
EglCheck();;
13290+
EglCheck();
1329113291
}
1329213292
}
1329313293
#endif
@@ -13946,7 +13946,7 @@ static uint8_t *CuvidGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int
1394613946
Debug(3, "video/cuvid: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
1394713947
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
1394813948

13949-
size = width * height * 4;;
13949+
size = width * height * 4;
1395013950

1395113951
base = malloc(size*sizeof(uint8_t));
1395213952
if (!base) {
@@ -15724,7 +15724,7 @@ void NVdecCreateGlTexture(NVdecDecoder * decoder, unsigned int size_x, unsigned
1572415724
#ifdef USE_EGL
1572515725
if (EglEnabled) {
1572615726
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
15727-
EglCheck();;
15727+
EglCheck();
1572815728
}
1572915729
#endif
1573015730
// create texture planes
@@ -15861,7 +15861,7 @@ static void NVdecDestroySurfaces(NVdecDecoder * decoder)
1586115861
if (EglEnabled) {
1586215862
if(EglThreadContext){
1586315863
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
15864-
EglCheck();;
15864+
EglCheck();
1586515865
}
1586615866
}
1586715867
#endif
@@ -16612,7 +16612,7 @@ static uint8_t *NVdecGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int
1661216612
Debug(3, "video/nvdec: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
1661316613
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
1661416614

16615-
size = width * height * 4;;
16615+
size = width * height * 4;
1661616616

1661716617
base = malloc(size*sizeof(uint8_t));
1661816618
if (!base) {
@@ -18394,7 +18394,7 @@ void CpuCreateGlTexture(CpuDecoder * decoder, unsigned int size_x, unsigned int
1839418394
#ifdef USE_EGL
1839518395
if (EglEnabled) {
1839618396
eglMakeCurrent(EglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EglThreadContext);
18397-
EglCheck();;
18397+
EglCheck();
1839818398
}
1839918399
#endif
1840018400
// create texture planes
@@ -19004,7 +19004,7 @@ static uint8_t *CpuGrabOutputSurfaceLocked(int *ret_size, int *ret_width, int *r
1900419004
Debug(3, "video/cpu: grab source rect %d,%d:%d,%d dest dim %dx%d\n",
1900519005
source_rect.x0, source_rect.y0, source_rect.x1, source_rect.y1, width, height);
1900619006

19007-
size = width * height * 4;;
19007+
size = width * height * 4;
1900819008

1900919009
base = malloc(size*sizeof(uint8_t));
1901019010
if (!base) {

0 commit comments

Comments
 (0)