OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #include "webrtc/modules/rtp_rtcp/source/h264_bitstream_parser.h" | 10 #include "webrtc/modules/video_coding/utility/h264_bitstream_parser.h" |
11 | 11 |
12 #include <memory> | 12 #include <memory> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "webrtc/base/bitbuffer.h" | 15 #include "webrtc/base/bitbuffer.h" |
16 #include "webrtc/base/bytebuffer.h" | 16 #include "webrtc/base/bytebuffer.h" |
17 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
18 #include "webrtc/base/logging.h" | 18 #include "webrtc/base/logging.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 } | 556 } |
557 | 557 |
558 bool H264BitstreamParser::GetLastSliceQp(int* qp) const { | 558 bool H264BitstreamParser::GetLastSliceQp(int* qp) const { |
559 if (!last_slice_qp_delta_parsed_) | 559 if (!last_slice_qp_delta_parsed_) |
560 return false; | 560 return false; |
561 *qp = 26 + pps_.pic_init_qp_minus26 + last_slice_qp_delta_; | 561 *qp = 26 + pps_.pic_init_qp_minus26 + last_slice_qp_delta_; |
562 return true; | 562 return true; |
563 } | 563 } |
564 | 564 |
565 } // namespace webrtc | 565 } // namespace webrtc |
OLD | NEW |