mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

- Run analysis after all frames are processed. Before part of it was done at bitrate change points; - Analysis is done for whole stream as well as for each rate update interval; - Changed units from number of frames to time units for some metrics and thresholds. E.g. 'num frames to hit tagret bitrate' is changed to 'time to reach target bitrate, sec'; - Changed data type of FrameStatistic::max_nalu_length (renamed to max_nalu_size_bytes) from rtc::Optional to size_t. There it no need to use such advanced data type in such low level data structure. Bug: webrtc:8524 Change-Id: Ic9f6eab5b15ee12a80324b1f9c101de1bf3c702f Reviewed-on: https://webrtc-review.googlesource.com/31901 Commit-Queue: Sergey Silkin <ssilkin@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21653}
158 lines
5.5 KiB
C++
158 lines
5.5 KiB
C++
/*
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H_
|
|
#define MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H_
|
|
|
|
#include <cmath>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common_types.h" // NOLINT(build/include)
|
|
#include "common_video/h264/h264_common.h"
|
|
#include "media/engine/webrtcvideodecoderfactory.h"
|
|
#include "media/engine/webrtcvideoencoderfactory.h"
|
|
#include "modules/video_coding/codecs/test/packet_manipulator.h"
|
|
#include "modules/video_coding/codecs/test/stats.h"
|
|
#include "modules/video_coding/codecs/test/test_config.h"
|
|
#include "modules/video_coding/codecs/test/videoprocessor.h"
|
|
#include "modules/video_coding/utility/ivf_file_writer.h"
|
|
#include "test/gtest.h"
|
|
#include "test/testsupport/frame_reader.h"
|
|
#include "test/testsupport/frame_writer.h"
|
|
#include "test/testsupport/packet_reader.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
// Rates for the encoder and the frame number when to change profile.
|
|
struct RateProfile {
|
|
size_t target_kbps;
|
|
size_t input_fps;
|
|
size_t frame_index_rate_update;
|
|
};
|
|
|
|
struct RateControlThresholds {
|
|
double max_avg_bitrate_mismatch_percent;
|
|
double max_time_to_reach_target_bitrate_sec;
|
|
// TODO(ssilkin): Use absolute threshold for framerate.
|
|
double max_avg_framerate_mismatch_percent;
|
|
double max_avg_buffer_level_sec;
|
|
double max_max_key_frame_delay_sec;
|
|
double max_max_delta_frame_delay_sec;
|
|
size_t max_num_spatial_resizes;
|
|
size_t max_num_key_frames;
|
|
};
|
|
|
|
struct QualityThresholds {
|
|
double min_avg_psnr;
|
|
double min_min_psnr;
|
|
double min_avg_ssim;
|
|
double min_min_ssim;
|
|
};
|
|
|
|
struct BitstreamThresholds {
|
|
size_t max_max_nalu_size_bytes;
|
|
};
|
|
|
|
// Should video files be saved persistently to disk for post-run visualization?
|
|
struct VisualizationParams {
|
|
bool save_encoded_ivf;
|
|
bool save_decoded_y4m;
|
|
};
|
|
|
|
// Integration test for video processor. It does rate control and frame quality
|
|
// analysis using frame statistics collected by video processor and logs the
|
|
// results. If thresholds are specified it checks that corresponding metrics
|
|
// are in desirable range.
|
|
class VideoProcessorIntegrationTest : public testing::Test {
|
|
protected:
|
|
// Verifies that all H.264 keyframes contain SPS/PPS/IDR NALUs.
|
|
class H264KeyframeChecker : public TestConfig::EncodedFrameChecker {
|
|
public:
|
|
void CheckEncodedFrame(webrtc::VideoCodecType codec,
|
|
const EncodedImage& encoded_frame) const override;
|
|
};
|
|
|
|
VideoProcessorIntegrationTest();
|
|
~VideoProcessorIntegrationTest() override;
|
|
|
|
void ProcessFramesAndMaybeVerify(
|
|
const std::vector<RateProfile>& rate_profiles,
|
|
const std::vector<RateControlThresholds>* rc_thresholds,
|
|
const std::vector<QualityThresholds>* quality_thresholds,
|
|
const BitstreamThresholds* bs_thresholds,
|
|
const VisualizationParams* visualization_params);
|
|
|
|
// Config.
|
|
TestConfig config_;
|
|
|
|
// Can be used by all H.264 tests.
|
|
const H264KeyframeChecker h264_keyframe_checker_;
|
|
|
|
private:
|
|
class CpuProcessTime;
|
|
|
|
void CreateEncoderAndDecoder();
|
|
void DestroyEncoderAndDecoder();
|
|
void SetUpAndInitObjects(rtc::TaskQueue* task_queue,
|
|
const int initial_bitrate_kbps,
|
|
const int initial_framerate_fps,
|
|
const VisualizationParams* visualization_params);
|
|
void ReleaseAndCloseObjects(rtc::TaskQueue* task_queue);
|
|
|
|
void ProcessAllFrames(rtc::TaskQueue* task_queue,
|
|
const std::vector<RateProfile>& rate_profiles);
|
|
void AnalyzeAllFrames(
|
|
const std::vector<RateProfile>& rate_profiles,
|
|
const std::vector<RateControlThresholds>* rc_thresholds,
|
|
const std::vector<QualityThresholds>* quality_thresholds,
|
|
const BitstreamThresholds* bs_thresholds);
|
|
|
|
std::vector<FrameStatistic> ExtractLayerStats(
|
|
size_t target_spatial_layer_number,
|
|
size_t target_temporal_layer_number,
|
|
size_t first_frame_number,
|
|
size_t last_frame_number,
|
|
bool combine_layers);
|
|
|
|
void AnalyzeAndPrintStats(const std::vector<FrameStatistic>& stats,
|
|
float target_bitrate_kbps,
|
|
float target_framerate_fps,
|
|
float input_duration_sec,
|
|
const RateControlThresholds* rc_thresholds,
|
|
const QualityThresholds* quality_thresholds,
|
|
const BitstreamThresholds* bs_thresholds);
|
|
void PrintFrameLevelStats(const std::vector<FrameStatistic>& stats) const;
|
|
|
|
void PrintSettings() const;
|
|
|
|
// Codecs.
|
|
std::unique_ptr<VideoEncoder> encoder_;
|
|
std::unique_ptr<VideoDecoder> decoder_;
|
|
|
|
// Helper objects.
|
|
std::unique_ptr<FrameReader> analysis_frame_reader_;
|
|
std::unique_ptr<FrameWriter> analysis_frame_writer_;
|
|
std::unique_ptr<IvfFileWriter> encoded_frame_writer_;
|
|
std::unique_ptr<FrameWriter> decoded_frame_writer_;
|
|
PacketReader packet_reader_;
|
|
std::unique_ptr<PacketManipulator> packet_manipulator_;
|
|
Stats stats_;
|
|
std::unique_ptr<VideoProcessor> processor_;
|
|
std::unique_ptr<CpuProcessTime> cpu_process_time_;
|
|
};
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_VIDEO_CODING_CODECS_TEST_VIDEOPROCESSOR_INTEGRATIONTEST_H_
|