Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: webrtc/common_video/h264/h264_bitstream_parser.cc

Issue 2370853005: Move bitstream parser to more appropriate directory. (Closed)
Patch Set: remove moved files from gyp file Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/video_coding/utility/h264_bitstream_parser.h" 10 #include "webrtc/common_video/h264/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 18
19 #include "webrtc/common_video/h264/h264_common.h" 19 #include "webrtc/common_video/h264/h264_common.h"
20 #include "webrtc/base/logging.h" 20 #include "webrtc/base/logging.h"
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 } 284 }
285 285
286 bool H264BitstreamParser::GetLastSliceQp(int* qp) const { 286 bool H264BitstreamParser::GetLastSliceQp(int* qp) const {
287 if (!last_slice_qp_delta_ || !pps_) 287 if (!last_slice_qp_delta_ || !pps_)
288 return false; 288 return false;
289 *qp = 26 + pps_->pic_init_qp_minus26 + *last_slice_qp_delta_; 289 *qp = 26 + pps_->pic_init_qp_minus26 + *last_slice_qp_delta_;
290 return true; 290 return true;
291 } 291 }
292 292
293 } // namespace webrtc 293 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_video/h264/h264_bitstream_parser.h ('k') | webrtc/common_video/h264/h264_bitstream_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698