forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Encoding?
angerangel edited this page Mar 19, 2013
·
2 revisions
ENCODING? data
Returns the media codec name for given binary data. (identify)
ENCODING? is a function value.
- data (binary!)
#SOURCE
encoding?: make function! [ [
{Returns the media codec name for given binary data. (identify)}
data [binary!]
/local
][
foreach [name codec] system/codecs [
if do-codec codec/entry 'identify data [
return name
]
]
none
] ]