Mark api video timing classes with RTC_EXPORT

Bug: None
Change-Id: Icf99dcdef7278b6051f040c51583a5e164e8f22e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/316921
Auto-Submit: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Reviewed-by: Philip Eliasson <philipel@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#40584}
diff --git a/api/video/video_timing.h b/api/video/video_timing.h
index 2ba10da..772e795 100644
--- a/api/video/video_timing.h
+++ b/api/video/video_timing.h
@@ -17,12 +17,13 @@
 #include <string>
 
 #include "api/units/time_delta.h"
+#include "rtc_base/system/rtc_export.h"
 
 namespace webrtc {
 
 // 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 {
+struct RTC_EXPORT VideoSendTiming {
   enum TimingFrameFlags : uint8_t {
     kNotTriggered = 0,  // Timing info valid, but not to be transmitted.
                         // Used on send-side only.
@@ -51,7 +52,7 @@
 // timestamps for a lifetime of that specific frame. Reported as a string via
 // GetStats(). Only frame which took the longest between two GetStats calls is
 // reported.
-struct TimingFrameInfo {
+struct RTC_EXPORT TimingFrameInfo {
   TimingFrameInfo();
 
   // Returns end-to-end delay of a frame, if sender and receiver timestamps are
@@ -111,7 +112,7 @@
 //
 // min = x, max = y indicates that the receiver is free to adapt
 // in the range (x, y) based on network jitter.
-struct VideoPlayoutDelay {
+struct RTC_EXPORT VideoPlayoutDelay {
   // Maximum supported value for the delay limit.
   static constexpr TimeDelta kMax = TimeDelta::Millis(10) * 0xFFF;