All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scodec.protocols.mpeg.transport.TransportStreamId.scala Maven / Gradle / Ivy

The newest version!
package scodec.protocols.mpeg
package transport

import scodec.Codec
import scodec.codecs.uint16

case class TransportStreamId(value: Int) {
  require(value >= TransportStreamId.MinValue && value <= TransportStreamId.MaxValue)
}

object TransportStreamId {
  val MinValue = 0
  val MaxValue = 65535

  implicit val codec: Codec[TransportStreamId] = uint16.xmap(TransportStreamId.apply, _.value)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy