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

Unified Diff: media/cast/cast_config.h

Issue 82593005: Cast: Switching recevier to use media::VideoFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing includes Created 7 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 | « media/cast/cast.gyp ('k') | media/cast/cast_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_config.h
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index 66d4c1df0d91a1272a68c5d68456b1b955c8d626..27cc67e5daeb499949e16054ad412ed18d4bcc35 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -140,24 +140,6 @@ struct VideoReceiverConfig {
std::string aes_iv_mask; // Binary string of size kAesKeySize.
};
-// DEPRECATED: Do not use in new code. Please migrate existing code to use
-// media::VideoFrame.
-struct I420VideoPlane {
- int stride;
- int length;
- uint8* data;
-};
-
-// DEPRECATED: Do not use in new code. Please migrate existing code to use
-// media::VideoFrame.
-struct I420VideoFrame {
- int width;
- int height;
- I420VideoPlane y_plane;
- I420VideoPlane u_plane;
- I420VideoPlane v_plane;
-};
-
struct EncodedVideoFrame {
EncodedVideoFrame();
~EncodedVideoFrame();
« no previous file with comments | « media/cast/cast.gyp ('k') | media/cast/cast_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698