You are here

function video_filter_get_codec_enabled in Video Filter 7.3

Get a list of enabled video codecs.

3 calls to video_filter_get_codec_enabled()
_video_filter_instructions in ./video_filter.module
Parses Codec into instructions for WYSIWYG popup.
_video_filter_process in ./video_filter.module
_video_filter_tips in ./video_filter.module

File

./video_filter.module, line 343

Code

function video_filter_get_codec_enabled($video_filter_codecs) {
  $codecs = array_intersect_key(video_filter_get_codec_info(), array_filter($video_filter_codecs));
  return $codecs;
}