diff options
author | anujk.sharma <anujk.sharma@samsung.com> | 2015-01-08 13:21:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-08 21:22:36 +0000 |
commit | 080a59d7e7691befd122564c73bb353050e3c1dc (patch) | |
tree | 73ab9ab16647e6929f980c588e3b5fa1de4c5bab /media/cast/cast_config.h | |
parent | 372d19064a31240d9808b2ea60d377e47f1e7295 (diff) | |
download | chromium_src-080a59d7e7691befd122564c73bb353050e3c1dc.zip chromium_src-080a59d7e7691befd122564c73bb353050e3c1dc.tar.gz chromium_src-080a59d7e7691befd122564c73bb353050e3c1dc.tar.bz2 |
Adding "target_frame_rate" variable in lieu of "max_frame_rate" for FrameReceiverConfig structure.
BUG=447205
Review URL: https://codereview.chromium.org/839983002
Cr-Commit-Position: refs/heads/master@{#310600}
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 868a149..446b1e0 100644 --- a/media/cast/cast_config.h +++ b/media/cast/cast_config.h @@ -145,7 +145,7 @@ struct FrameReceiverConfig { // The target frame rate. For audio, this is normally 100 (i.e., frames have // a duration of 10ms each). For video, this is normally 30, but any frame // rate is supported. - int max_frame_rate; // TODO(miu): Rename to target_frame_rate. + int target_frame_rate; // Codec used for the compression of signal data. // TODO(miu): Merge the AudioCodec and VideoCodec enums into one so this union |