1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(ffmpeg): don't use deprecated features

This commit is contained in:
sudden6 2017-10-19 00:37:08 +02:00
parent 6479b2c0e8
commit 2f13796acc
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -332,6 +332,8 @@ void CameraSource::openDevice()
emit openFailed();
return;
}
cctx->refcounted_frames = 1;
#else
// Create a context for our codec, using the existing parameters
cctx = avcodec_alloc_context3(codec);
@ -342,8 +344,6 @@ void CameraSource::openDevice()
}
#endif
cctx->refcounted_frames = 1;
// Open codec
if (avcodec_open2(cctx, codec, nullptr) < 0) {
qWarning() << "Can't open codec";