| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "nacl_io/kernel_intercept.h" | 5 #ifndef MEDIA_MPEG2_MPEG2TS_COMMON_H_ |
| 6 #include "nacl_io/ostermios.h" | 6 #define MEDIA_MPEG2_MPEG2TS_COMMON_H_ |
| 7 | 7 |
| 8 int tcflush(int fd, int queue_selector) { | 8 #define LOG_LEVEL_TS 5 |
| 9 return ki_tcflush(fd, queue_selector); | 9 #define LOG_LEVEL_PES 4 |
| 10 } | 10 #define LOG_LEVEL_ES 3 |
| 11 | 11 |
| 12 #endif |
| OLD | NEW |