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

Unified Diff: webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h

Issue 2649133007: Add QP for FFmpeg H264 decoder. (Closed)
Patch Set: Rebase. Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h
diff --git a/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h b/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h
index fc730a4f4d898aa81efca9ca18f1b20d7237fbfb..44c2acb2e075046c1504df2bcec06bee0666ffb0 100644
--- a/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h
+++ b/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h
@@ -20,6 +20,7 @@ extern "C" {
#include "third_party/ffmpeg/libavcodec/avcodec.h"
} // extern "C"
+#include "webrtc/common_video/h264/h264_bitstream_parser.h"
#include "webrtc/common_video/include/i420_buffer_pool.h"
namespace webrtc {
@@ -77,6 +78,8 @@ class H264DecoderImpl : public H264Decoder {
bool has_reported_init_;
bool has_reported_error_;
+
+ webrtc::H264BitstreamParser h264_bitstream_parser_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698