diff options
author | Sven Gothel <[email protected]> | 2014-06-11 01:28:14 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-06-11 01:28:14 +0200 |
commit | bc905a107d83d291f6ea34391768d16a9842bfc1 (patch) | |
tree | 5524dd1445d356a07e501dddcaaffe4e1a2e9564 /src/jogl/native | |
parent | 021735487716f15cef8d7d8d317b9cabbacea9dd (diff) |
Bug 1011 / Bug 1012: GLMediaPlayer Audio/Video stuttering w/ OSX and OpenAL/JOAL (works using openal-soft default on all platforms now)
Diffstat (limited to 'src/jogl/native')
-rw-r--r-- | src/jogl/native/libav/ffmpeg_impl_template.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/jogl/native/libav/ffmpeg_impl_template.c b/src/jogl/native/libav/ffmpeg_impl_template.c index a7e9f4857..3077070db 100644 --- a/src/jogl/native/libav/ffmpeg_impl_template.c +++ b/src/jogl/native/libav/ffmpeg_impl_template.c @@ -572,7 +572,7 @@ JNIEXPORT jlong JNICALL FF_FUNC(createInstance0) pAV->aid=AV_STREAM_ID_AUTO; if(pAV->verbose) { - fprintf(stderr, "Info: Use avresample %d, swresample %d, device %d, refCount %d\n", + fprintf(stderr, "Info: Has avresample %d, swresample %d, device %d, refCount %d\n", AV_HAS_API_AVRESAMPLE(pAV), AV_HAS_API_SWRESAMPLE(pAV), HAS_FUNC(sp_avdevice_register_all), pAV->useRefCountedFrames); } return (jlong) (intptr_t) pAV; @@ -991,6 +991,10 @@ JNIEXPORT void JNICALL FF_FUNC(setStream0) } } } + if(pAV->verbose) { + fprintf(stderr, "Info: Need resample %d, Use avresample %d, swresample %d\n", + pAV->aSinkSupport, NULL!=pAV->avResampleCtx, NULL!=pAV->swResampleCtx); + } // Allocate audio frames // FIXME: Libav Binary compatibility! JAU01 |