Add send frame rate statistics callback

BUG=2235
R=mflodman@webrtc.org, pbos@webrtc.org, stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/4479005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5213 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/common_types.h b/webrtc/common_types.h
index 7138b05..a45cf06 100644
--- a/webrtc/common_types.h
+++ b/webrtc/common_types.h
@@ -138,7 +138,6 @@
     kFileFormatPcm32kHzFile   = 9
 };
 
-
 enum ProcessingTypes
 {
     kPlaybackPerChannel = 0,
@@ -148,6 +147,15 @@
     kRecordingPreprocessing
 };
 
+enum FrameType
+{
+    kFrameEmpty            = 0,
+    kAudioFrameSpeech      = 1,
+    kAudioFrameCN          = 2,
+    kVideoFrameKey         = 3,    // independent frame
+    kVideoFrameDelta       = 4,    // depends on the previus frame
+};
+
 // Interface for encrypting and decrypting regular data and rtp/rtcp packets.
 // Implement this interface if you wish to provide an encryption scheme to
 // the voice or video engines.
@@ -302,9 +310,9 @@
 class FrameCountObserver {
  public:
   virtual ~FrameCountObserver() {}
-  virtual void Notify(const unsigned int key_frames,
-                      const unsigned int delta_frames,
-                      const unsigned int ssrc) = 0;
+  virtual void FrameCountUpdated(FrameType frame_type,
+                                 uint32_t frame_count,
+                                 const unsigned int ssrc) = 0;
 };
 
 // ==================================================================
@@ -322,17 +330,6 @@
     int rate;  // bits/sec unlike {start,min,max}Bitrate elsewhere in this file!
 };
 
-enum FrameType
-{
-    kFrameEmpty            = 0,
-    kAudioFrameSpeech      = 1,
-    kAudioFrameCN          = 2,
-    kVideoFrameKey         = 3,    // independent frame
-    kVideoFrameDelta       = 4,    // depends on the previus frame
-    kVideoFrameGolden      = 5,    // depends on a old known previus frame
-    kVideoFrameAltRef      = 6
-};
-
 // RTP
 enum {kRtpCsrcSize = 15}; // RFC 3550 page 13