/**
  * Converts the video orientation into the byte used to transmit int RTP header
  *
  * @return Byte representing the video orientation
  */
 public byte getVideoOrientation() {
   return (byte) ((camera.getValue() << 3) | orientation.getValue());
 }