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

This commit is contained in:
Isaac Connor 2019-01-22 13:36:21 -05:00
commit 932ab62200
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), av_get_sample_fmt_name((AVSampleFormat)frame->format),
frame->sample_rate, frame->sample_rate,
frame->nb_samples, frame->nb_samples,
#if LIBAVCODEC_VERSION_CHECK(56, 8, 0, 60, 100)
frame->channels, frame->channels,
#else
0,
#endif
frame->channel_layout frame->channel_layout
); );
} }