diff options
author | anujk.sharma <anujk.sharma@samsung.com> | 2015-01-14 12:50:43 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-14 20:51:37 +0000 |
commit | ff366f5da32f0db5817b1b72274632e95daba77e (patch) | |
tree | 11497a4f75cd3a95620637e7340c284c9fdb4e89 /media/cast/cast_config.h | |
parent | c3d19a5c7e9295d436e0d16f45f0ca0d1583facb (diff) | |
download | chromium_src-ff366f5da32f0db5817b1b72274632e95daba77e.zip chromium_src-ff366f5da32f0db5817b1b72274632e95daba77e.tar.gz chromium_src-ff366f5da32f0db5817b1b72274632e95daba77e.tar.bz2 |
Adding "rtp_timebase" variable in lieu of "frequency" for FrameReceiverConfig structure.
BUG=448025
Review URL: https://codereview.chromium.org/845993002
Cr-Commit-Position: refs/heads/master@{#311541}
Diffstat (limited to 'media/cast/cast_config.h')
-rw-r--r-- | media/cast/cast_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h index 446b1e0..02f38f2 100644 --- a/media/cast/cast_config.h +++ b/media/cast/cast_config.h @@ -136,7 +136,7 @@ struct FrameReceiverConfig { // RTP timebase: The number of RTP units advanced per one second. For audio, // this is the sampling rate. For video, by convention, this is 90 kHz. - int frequency; // TODO(miu): Rename to rtp_timebase for clarity. + int rtp_timebase; // Number of channels. For audio, this is normally 2. For video, this must // be 1 as Cast does not have support for stereoscopic video. |