blob: 585af2b4c7b31e504276b0033d3904a4d3de676d (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2013 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 MEDIA_BASE_ANDROID_DEMUXER_STREAM_PLAYER_PARAMS_H_
#define MEDIA_BASE_ANDROID_DEMUXER_STREAM_PLAYER_PARAMS_H_
#include <string>
#include <vector>
#include "media/base/audio_decoder_config.h"
#include "media/base/decrypt_config.h"
#include "media/base/demuxer_stream.h"
#include "media/base/media_export.h"
#include "media/base/video_decoder_config.h"
#include "ui/gfx/size.h"
namespace media {
struct MEDIA_EXPORT MediaPlayerHostMsg_DemuxerReady_Params {
MediaPlayerHostMsg_DemuxerReady_Params();
~MediaPlayerHostMsg_DemuxerReady_Params();
AudioCodec audio_codec;
int audio_channels;
int audio_sampling_rate;
bool is_audio_encrypted;
std::vector<uint8> audio_extra_data;
VideoCodec video_codec;
gfx::Size video_size;
bool is_video_encrypted;
std::vector<uint8> video_extra_data;
int duration_ms;
std::string key_system;
};
struct MEDIA_EXPORT MediaPlayerHostMsg_ReadFromDemuxerAck_Params {
struct MEDIA_EXPORT AccessUnit {
AccessUnit();
~AccessUnit();
DemuxerStream::Status status;
bool end_of_stream;
// TODO(ycheo): Use the shared memory to transfer the block data.
std::vector<uint8> data;
base::TimeDelta timestamp;
std::vector<char> key_id;
std::vector<char> iv;
std::vector<media::SubsampleEntry> subsamples;
};
MediaPlayerHostMsg_ReadFromDemuxerAck_Params();
~MediaPlayerHostMsg_ReadFromDemuxerAck_Params();
DemuxerStream::Type type;
std::vector<AccessUnit> access_units;
};
}; // namespace media
#endif // MEDIA_BASE_ANDROID_DEMUXER_STREAM_PLAYER_PARAMS_H_
|