diff --git a/api/video/video_timing.h b/api/video/video_timing.h index c593a8708e..e787a4541f 100644 --- a/api/video/video_timing.h +++ b/api/video/video_timing.h @@ -21,16 +21,6 @@ namespace webrtc { -// Deprecated. use VideoSendTiming::TimingFrameFlags instead. -// TODO(ilnik): remove after some time. -enum TimingFrameFlags : uint8_t { - kNotTriggered = 0, // Timing info valid, but not to be transmitted. - // Used on send-side only. - kTriggeredByTimer = 1 << 0, // Frame marked for tracing by periodic timer. - kTriggeredBySize = 1 << 1, // Frame marked for tracing due to size. - kInvalid = std::numeric_limits::max() // Invalid, ignore! -}; - // Video timing timestamps in ms counted from capture_time_ms of a frame. // This structure represents data sent in video-timing RTP header extension. struct VideoSendTiming {