summaryrefslogtreecommitdiffstats
path: root/chromecast/media/cma/ipc_streamer/encryption_scheme_marshaller.h
blob: 0b3371b5d873299481fa51dbb7da3debff4db20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROMECAST_MEDIA_CMA_IPC_STREAMER_ENCRYPTION_SCHEME_MARSHALLER_H_
#define CHROMECAST_MEDIA_CMA_IPC_STREAMER_ENCRYPTION_SCHEME_MARSHALLER_H_

#include "media/base/encryption_scheme.h"

namespace chromecast {
namespace media {
class MediaMessage;

class EncryptionSchemeMarshaller {
 public:
  // Writes the serialized structure of |encryption_scheme| into |msg|.
  static void Write(
      const ::media::EncryptionScheme& encryption_scheme, MediaMessage* msg);

  // Returns an EncryptionScheme from its serialized structure.
  static ::media::EncryptionScheme Read(MediaMessage* msg);
};

}  // namespace media
}  // namespace chromecast

#endif  // CHROMECAST_MEDIA_CMA_IPC_STREAMER_ENCRYPTION_SCHEME_MARSHALLER_H_