Merge branch 'storageareas' of github.com:ConnorTechnology/ZoneMinder into storageareas

This commit is contained in:
Isaac Connor 2019-01-30 15:17:32 -05:00
commit e90f49deb9
1 changed files with 4 additions and 0 deletions

View File

@ -285,7 +285,11 @@ void zm_dump_frame(const AVFrame *frame,const char *text) {
av_get_sample_fmt_name((AVSampleFormat)frame->format),
frame->sample_rate,
frame->nb_samples,
#if LIBAVCODEC_VERSION_CHECK(56, 8, 0, 60, 100)
frame->channels,
#else
0,
#endif
frame->channel_layout
);
}