add version test to get rid of deprecation warning for refcounted_frames

This commit is contained in:
Isaac Connor 2018-05-26 13:01:51 -04:00
parent 39db8136b3
commit 84db1be31d
1 changed files with 3 additions and 0 deletions

View File

@ -524,7 +524,10 @@ bool VideoStore::setup_resampler() {
audio_out_ctx->channels = audio_in_ctx->channels;
audio_out_ctx->channel_layout = audio_in_ctx->channel_layout;
audio_out_ctx->sample_fmt = audio_in_ctx->sample_fmt;
#if LIBAVCODEC_VERSION_CHECK(57, 64, 0, 64, 0)
#else
audio_out_ctx->refcounted_frames = 1;
#endif
if (audio_out_codec->supported_samplerates) {
int found = 0;