OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
scherkus (not reviewing)
2014/07/07 22:41:11
nit: it's 2014 :)
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef MEDIA_BASE_VIDEO_ROTATION_H | |
scherkus (not reviewing)
2014/07/07 22:41:11
include guards end with a trailing _
| |
6 #define MEDIA_BASE_VIDEO_ROTATION_H | |
7 | |
8 namespace media { | |
9 | |
10 // Enumeration to rerpesent 90 degree video rotation for mov/mp4 videos | |
scherkus (not reviewing)
2014/07/07 22:41:11
typo: represent
| |
11 // where it can be rotated by 90 degree intervals | |
scherkus (not reviewing)
2014/07/07 22:41:11
nit: sentences should end with periods
| |
12 enum VideoRotation { | |
13 VIDEO_ROTATION_0 = 0, | |
14 VIDEO_ROTATION_90, | |
15 VIDEO_ROTATION_180, | |
16 VIDEO_ROTATION_270 | |
17 }; | |
scherkus (not reviewing)
2014/07/07 22:41:11
general comment on vertical whitespace formatting:
| |
18 } | |
scherkus (not reviewing)
2014/07/07 22:41:11
we close off namespaces with two spaces + a commen
| |
19 #endif | |
scherkus (not reviewing)
2014/07/07 22:41:11
ditto for include guards
#endif // MEDIA_BASE_VI
| |
OLD | NEW |