You should find tables in the database that reference this table using the FK constraint:
Define the foreign key constraints for the table. Or use
SHOW CREATE TABLE `table_in_db_film`\G;
or
USE db_of_film_table;
SHOW TABLE STATUS LIKE 'film'\G
then follow the necessary instructions
ALTER TABLE film DROP FOREIGN KEY `ibfk_something`;
until you drop all restrictions (naturally replace ibfk_something with your restriction names). After that, you can change the table engine.