Remove a few meaningless TODOs

R=asapersson@webrtc.org

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

Cr-Commit-Position: refs/heads/master@{#13624}
This commit is contained in:
mflodman 2016-08-03 15:38:06 +02:00
parent e51e11910f
commit 997684079e
3 changed files with 1 additions and 5 deletions

View File

@ -220,7 +220,6 @@ using namespace videocapturemodule;
- (void)captureOutput:(QTCaptureOutput *)captureOutput
didDropVideoFrameWithSampleBuffer:(QTSampleBuffer *)sampleBuffer
fromConnection:(QTCaptureConnection *)connection {
// TODO(mflodman) Experiment more when this happens.
}
- (void)captureOutput:(QTCaptureOutput *)captureOutput

View File

@ -63,7 +63,6 @@ class NetworkPacket {
// capacity and adding an extra transport delay in addition to the capacity
// introduced delay.
// TODO(mflodman) Add random and bursty packet loss.
class FakeNetworkPipe {
public:
struct Config {

View File

@ -24,10 +24,8 @@ VideoRenderer* VideoRenderer::Create(const char* window_title,
size_t width,
size_t height) {
VideoRenderer* renderer = CreatePlatformRenderer(window_title, width, height);
if (renderer != NULL) {
// TODO(mflodman) Add a warning log.
if (renderer != nullptr)
return renderer;
}
return new NullRenderer();
}