Move logic for calculating needed bitrate overhead used by NACK and FEC to VideoSender.

This cl split the class MediaOptimization into two parts. One that deals with frame dropping and stats and one new class called ProtectionBitrateCalculator that deals with  calculating the needed FEC parameters and how much of the estimated network bitrate that can be used by an encoder

Note that the logic of how FEC and the needed bitrates is not changed.

BUG=webrtc:5687
R=asapersson@webrtc.org, stefan@webrtc.org

Review URL: https://codereview.webrtc.org/1972083002 .

Cr-Commit-Position: refs/heads/master@{#13018}
diff --git a/webrtc/modules/video_coding/video_coding.gypi b/webrtc/modules/video_coding/video_coding.gypi
index 27454a4..602f368 100644
--- a/webrtc/modules/video_coding/video_coding.gypi
+++ b/webrtc/modules/video_coding/video_coding.gypi
@@ -50,6 +50,7 @@
         'packet.h',
         'packet_buffer.h',
         'percentile_filter.h',
+        'protection_bitrate_calculator.h',
         'receiver.h',
         'rtt_filter.h',
         'session_info.h',
@@ -74,6 +75,7 @@
         'jitter_estimator.cc',
         'media_opt_util.cc',
         'media_optimization.cc',
+        'protection_bitrate_calculator.cc',
         'nack_module.cc',
         'packet.cc',
         'packet_buffer.cc',