Lines Matching refs:codec
58 int aoa_codec_register(struct aoa_codec *codec) in aoa_codec_register() argument
66 err = attach_codec_to_fabric(codec); in aoa_codec_register()
68 list_add(&codec->list, &codec_list); in aoa_codec_register()
73 void aoa_codec_unregister(struct aoa_codec *codec) in aoa_codec_unregister() argument
75 list_del(&codec->list); in aoa_codec_unregister()
76 if (codec->fabric && codec->exit) in aoa_codec_unregister()
77 codec->exit(codec); in aoa_codec_unregister()
79 fabric->remove_codec(codec); in aoa_codec_unregister()
80 codec->fabric = NULL; in aoa_codec_unregister()
81 module_put(codec->owner); in aoa_codec_unregister()
134 void aoa_fabric_unlink_codec(struct aoa_codec *codec) in aoa_fabric_unlink_codec() argument
136 if (!codec->fabric) { in aoa_fabric_unlink_codec()
142 if (codec->exit) in aoa_fabric_unlink_codec()
143 codec->exit(codec); in aoa_fabric_unlink_codec()
144 if (codec->fabric->remove_codec) in aoa_fabric_unlink_codec()
145 codec->fabric->remove_codec(codec); in aoa_fabric_unlink_codec()
146 codec->fabric = NULL; in aoa_fabric_unlink_codec()
147 module_put(codec->owner); in aoa_fabric_unlink_codec()