1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

added new cabac value

This commit is contained in:
Luke Pulverenti 2014-10-23 00:26:01 -04:00
parent ab4fd843d3
commit f2358f0a65
15 changed files with 310 additions and 279 deletions

View file

@ -1282,6 +1282,10 @@
attributes.push(createAttribute(Globalize.translate('MediaInfoTimestamp'), version.Timestamp));
}
if (stream.IsCabac != null) {
attributes.push(createAttribute(Globalize.translate('CABAC'), (stream.IsCabac ? 'Yes' : 'No')));
}
html += attributes.join('<br/>');
html += '</div>';