Chromium Code Reviews| 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 e464ffbcddf457d9ac9d653d0450bd5480a1e0b5..442f4331edfe5290cf2c8556a7b72531a02079b1 100644 |
| --- a/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h |
| +++ b/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h |
| @@ -62,6 +62,11 @@ class H264DecoderImpl : public H264Decoder { |
| bool IsInitialized() const; |
| + bool has_reported_init_; |
| + bool has_reported_error_; |
| + void ReportInit(); |
|
hlundin-webrtc
2016/02/23 13:55:53
Methods should be declared before data members.
hbos
2016/02/23 14:43:26
Done.
|
| + void ReportError(); |
| + |
| I420BufferPool pool_; |
| rtc::scoped_ptr<AVCodecContext, AVCodecContextDeleter> av_context_; |
| rtc::scoped_ptr<AVFrame, AVFrameDeleter> av_frame_; |