X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=x264_encoder.h;h=7a155e341bd0e64b0f0153b8a2977058cd001bf3;hb=afe163c940b7239cab0577fa390796175cdc94a6;hp=2f9c81c4f51e91748680bb8f84234b4f313414e1;hpb=1df7849fad1d0647a02951abaa60f9e4f40ce360;p=nageru diff --git a/x264_encoder.h b/x264_encoder.h index 2f9c81c..7a155e3 100644 --- a/x264_encoder.h +++ b/x264_encoder.h @@ -115,16 +115,6 @@ private: // Key is the pts of the frame. std::unordered_map frames_being_encoded; - - // Metrics. - std::atomic metric_x264_queued_frames{0}; - std::atomic metric_x264_max_queued_frames{X264_QUEUE_LENGTH}; - std::atomic metric_x264_dropped_frames{0}; - std::atomic metric_x264_output_frames_i{0}; - std::atomic metric_x264_output_frames_p{0}; - std::atomic metric_x264_output_frames_b{0}; - Histogram metric_x264_crf; - LatencyHistogram latency_histogram; }; #endif // !defined(_X264ENCODE_H)