rust-ffmpeg
rust-ffmpeg copied to clipboard
115 - Handle unsupported pixel formats properly
As for now, if ffmpeg-sys package receives symbols that are not supported by rust-ffmpeg package, the build fail. I have met that situation when tried to build the package for Raspberry Pi without rpi feature (with rpi feature the build is also fails, it is another issue). Adding unimplemented!() match hand allows building the package properly. The library will fail in the runtime when the unsupported features are used.
Related to #115