When compiling against FFmpeg 7.1, we get deprecation warnings because [`AVCodec`](https://ffmpeg.org/doxygen/7.1/structAVCodec.html) has deprecated the field [`ch_layouts`](https://ffmpeg.org/doxygen/7.1/structAVCodec.html#a3aa4a57d42f9b9dfc867fe3fbcad4539). We'll need to deal with it here: https://github.com/pytorch/torchcodec/blob/da3eddaa6746d093b09ad1413a42d7244686c58e/src/torchcodec/_core/FFMPEGCommon.cpp#L111-L133 One wrinkle is that this code is already dealing with FFmpeg > 4 versions switching from `channel_layout` to `ch_layouts`, so this will likely need to become a three-armed `#if`.