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

Side by Side Diff: content/common/media/media_param_traits.cc

Issue 1204063005: Reland: Video Capture: extract storage info from pixel format in VideoCaptureFormat. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheng@ nit on DCHECK_EQ(expected, actual) Created 5 years, 5 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/media/media_param_traits.h" 5 #include "content/common/media/media_param_traits.h"
6 6
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "content/common/media/video_capture_messages.h"
9 #include "ipc/ipc_message_utils.h"
8 #include "media/audio/audio_parameters.h" 10 #include "media/audio/audio_parameters.h"
9 #include "media/base/limits.h" 11 #include "media/base/limits.h"
10 #include "media/base/video_capture_types.h" 12 #include "ui/gfx/ipc/gfx_param_traits.h"
11 13
12 using media::AudioParameters; 14 using media::AudioParameters;
13 using media::ChannelLayout; 15 using media::ChannelLayout;
14 using media::VideoCaptureFormat; 16 using media::VideoCaptureFormat;
15 using media::VideoPixelFormat;
16 17
17 namespace IPC { 18 namespace IPC {
18 19
19 void ParamTraits<AudioParameters>::Write(Message* m, 20 void ParamTraits<AudioParameters>::Write(Message* m,
20 const AudioParameters& p) { 21 const AudioParameters& p) {
21 m->WriteInt(static_cast<int>(p.format())); 22 m->WriteInt(static_cast<int>(p.format()));
22 m->WriteInt(static_cast<int>(p.channel_layout())); 23 m->WriteInt(static_cast<int>(p.channel_layout()));
23 m->WriteInt(p.sample_rate()); 24 m->WriteInt(p.sample_rate());
24 m->WriteInt(p.bits_per_sample()); 25 m->WriteInt(p.bits_per_sample());
25 m->WriteInt(p.frames_per_buffer()); 26 m->WriteInt(p.frames_per_buffer());
26 m->WriteInt(p.channels()); 27 m->WriteInt(p.channels());
27 m->WriteInt(p.effects()); 28 m->WriteInt(p.effects());
28 } 29 }
29 30
30 bool ParamTraits<AudioParameters>::Read(const Message* m, 31 bool ParamTraits<AudioParameters>::Read(const Message* m,
31 base::PickleIterator* iter, 32 base::PickleIterator* iter,
32 AudioParameters* r) { 33 AudioParameters* r) {
33 int format, channel_layout, sample_rate, bits_per_sample, 34 int format, channel_layout, sample_rate, bits_per_sample,
34 frames_per_buffer, channels, effects; 35 frames_per_buffer, channels, effects;
35 36
36 if (!iter->ReadInt(&format) || 37 if (!iter->ReadInt(&format) ||
37 !iter->ReadInt(&channel_layout) || 38 !iter->ReadInt(&channel_layout) ||
38 !iter->ReadInt(&sample_rate) || 39 !iter->ReadInt(&sample_rate) ||
39 !iter->ReadInt(&bits_per_sample) || 40 !iter->ReadInt(&bits_per_sample) ||
40 !iter->ReadInt(&frames_per_buffer) || 41 !iter->ReadInt(&frames_per_buffer) ||
41 !iter->ReadInt(&channels) || 42 !iter->ReadInt(&channels) ||
42 !iter->ReadInt(&effects)) 43 !iter->ReadInt(&effects)) {
43 return false; 44 return false;
45 }
44 46
45 AudioParameters params(static_cast<AudioParameters::Format>(format), 47 AudioParameters params(static_cast<AudioParameters::Format>(format),
46 static_cast<ChannelLayout>(channel_layout), channels, 48 static_cast<ChannelLayout>(channel_layout), channels,
47 sample_rate, bits_per_sample, frames_per_buffer, effects); 49 sample_rate, bits_per_sample, frames_per_buffer, effects);
48 *r = params; 50 *r = params;
49 if (!r->IsValid()) 51 return r->IsValid();
50 return false;
51 return true;
52 } 52 }
53 53
54 void ParamTraits<AudioParameters>::Log(const AudioParameters& p, 54 void ParamTraits<AudioParameters>::Log(const AudioParameters& p,
55 std::string* l) { 55 std::string* l) {
56 l->append(base::StringPrintf("<AudioParameters>")); 56 l->append(base::StringPrintf("<AudioParameters>"));
57 } 57 }
58 58
59 void ParamTraits<VideoCaptureFormat>::Write(Message* m, 59 void ParamTraits<VideoCaptureFormat>::Write(Message* m,
60 const VideoCaptureFormat& p) { 60 const VideoCaptureFormat& p) {
61 // Crash during Send rather than have a failure at the message handler. 61 WriteParam(m, p.frame_size);
62 m->WriteInt(p.frame_size.width()); 62 WriteParam(m, p.frame_rate);
63 m->WriteInt(p.frame_size.height()); 63 WriteParam(m, p.pixel_format);
64 m->WriteFloat(p.frame_rate); 64 WriteParam(m, p.pixel_storage);
65 m->WriteInt(static_cast<int>(p.pixel_format));
66 } 65 }
67 66
68 bool ParamTraits<VideoCaptureFormat>::Read(const Message* m, 67 bool ParamTraits<VideoCaptureFormat>::Read(const Message* m,
69 base::PickleIterator* iter, 68 base::PickleIterator* iter,
70 VideoCaptureFormat* r) { 69 VideoCaptureFormat* r) {
71 int frame_size_width, frame_size_height, pixel_format; 70 if (!ReadParam(m, iter, &r->frame_size) ||
72 if (!iter->ReadInt(&frame_size_width) || 71 !ReadParam(m, iter, &r->frame_rate) ||
73 !iter->ReadInt(&frame_size_height) || 72 !ReadParam(m, iter, &r->pixel_format) ||
74 !iter->ReadFloat(&r->frame_rate) || 73 !ReadParam(m, iter, &r->pixel_storage)) {
75 !iter->ReadInt(&pixel_format))
76 return false; 74 return false;
77 75 }
78 r->frame_size.SetSize(frame_size_width, frame_size_height); 76 return r->IsValid();
79 r->pixel_format = static_cast<VideoPixelFormat>(pixel_format);
80 if (!r->IsValid())
81 return false;
82 return true;
83 } 77 }
84 78
85 void ParamTraits<VideoCaptureFormat>::Log(const VideoCaptureFormat& p, 79 void ParamTraits<VideoCaptureFormat>::Log(const VideoCaptureFormat& p,
86 std::string* l) { 80 std::string* l) {
87 l->append(base::StringPrintf("<VideoCaptureFormat>")); 81 l->append(
82 base::StringPrintf("<VideoCaptureFormat> %s", p.ToString().c_str()));
88 } 83 }
89 84
90 } 85 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/common/media/video_capture_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698