iopacket.hpp 671 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
// Copyright (c) 2012-2017 VideoStitch SAS
// Copyright (c) 2018 stitchEm

#pragma once

#include "libvideostitch/config.hpp"
#include "libvideostitch/span.hpp"

namespace VideoStitch {
namespace IO {

/**
 * Data Packet.
 */
struct Packet {
  /**
   * Span to the packet data.
   */
  Span<unsigned char> data;

  /**
   * decoding timestamp in microseconds of the data packet.
   */
  mtime_t dts;
  /**
   * Presentation timestamp in microseconds of the data packet.
   */
  mtime_t pts;
};
}  // namespace IO

namespace Output {
enum class MuxerThreadStatus { OK = 0, CreateError, WriteError, EncodeError, NetworkError, TimeOutError };

}
}  // namespace VideoStitch