Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: remoting/base/encoder_row_based.cc

Issue 5581007: Revert 68434 - Reenable encoder/decoder tests.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/encoder_row_based.h ('k') | remoting/base/encoder_row_based_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/encoder_row_based.cc
===================================================================
--- remoting/base/encoder_row_based.cc (revision 68436)
+++ remoting/base/encoder_row_based.cc (working copy)
@@ -21,23 +21,11 @@
VideoPacketFormat::ENCODING_ZLIB);
}
-EncoderRowBased* EncoderRowBased::CreateZlibEncoder(int packet_size) {
- return new EncoderRowBased(new CompressorZlib(),
- VideoPacketFormat::ENCODING_ZLIB,
- packet_size);
-}
-
EncoderRowBased* EncoderRowBased::CreateVerbatimEncoder() {
return new EncoderRowBased(new CompressorVerbatim(),
VideoPacketFormat::ENCODING_VERBATIM);
}
-EncoderRowBased* EncoderRowBased::CreateVerbatimEncoder(int packet_size) {
- return new EncoderRowBased(new CompressorVerbatim(),
- VideoPacketFormat::ENCODING_VERBATIM,
- packet_size);
-}
-
EncoderRowBased::EncoderRowBased(Compressor* compressor,
VideoPacketFormat::Encoding encoding)
: encoding_(encoding),
« no previous file with comments | « remoting/base/encoder_row_based.h ('k') | remoting/base/encoder_row_based_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698