public StreamInfo()

in src/main/java/com/amazonaws/kinesisvideo/producer/StreamInfo.java [253:291]


    public StreamInfo(final int version, @Nullable final String name, @Nonnull final StreamingType streamingType,
                      @Nonnull final String contentType, @Nullable final String kmsKeyId, final long retentionPeriod,
                      final boolean adaptive, final long maxLatency, final long fragmentDuration,
                      final boolean keyFrameFragmentation, final boolean frameTimecodes,
                      final boolean absoluteFragmentTimes, final boolean fragmentAcks, final boolean recoverOnError,
                      final int avgBandwidthBps, final int frameRate, final long bufferDuration,
                      final long replayDuration, final long connectionStalenessDuration, final long timecodeScale,
                      final boolean recalculateMetrics, @Nullable final Tag[] tags,
                      @Nonnull final NalAdaptationFlags nalAdaptationFlags,
                      @Nullable final UUID segmentUuid,
                      @Nonnull final TrackInfo[] trackInfoList,
                      FrameOrderMode frameOrderMode) {
        mVersion = version;
        mName = name;
        mStreamingType = streamingType;
        mContentType = contentType;
        mKmsKeyId = kmsKeyId;
        mRetentionPeriod = retentionPeriod;
        mAdaptive = adaptive;
        mMaxLatency = maxLatency;
        mFragmentDuration = fragmentDuration;
        mKeyFrameFragmentation = keyFrameFragmentation;
        mFrameTimecodes = frameTimecodes;
        mAbsoluteFragmentTimes = absoluteFragmentTimes;
        mFragmentAcks = fragmentAcks;
        mRecoverOnError = recoverOnError;
        mAvgBandwidthBps = avgBandwidthBps;
        mFrameRate = frameRate;
        mBufferDuration = bufferDuration;
        mReplayDuration = replayDuration;
        mConnectionStalenessDuration = connectionStalenessDuration;
        mTimecodeScale = timecodeScale;
        mRecalculateMetrics = recalculateMetrics;
        mTags = tags;
        mNalAdaptationFlags = nalAdaptationFlags;
        mSegmentUuid = segmentUuid;
        mTrackInfoList = trackInfoList;
        mFrameOrderMode = frameOrderMode;
    }