Skip to Content
  • Article
  • Open Access

21 February 2019

Efficient Transcoding and Encryption for Live 360 CCTV System

,
and
Department of Computer Engineering, Gachon University, Seongnam 13120, Korea
*
Author to whom correspondence should be addressed.

Abstract

In recent years, the rapid development of surveillance information in closed-circuit television (CCTV) has become an indispensable element in security systems. Several CCTV systems designed for video compression and encryption need to improve for the best performance and different security levels. Specially, the advent of 360 video makes the CCTV promising for surveillance without any blind areas. Compared to current systems, 360 CCTV requires the large bandwidth with low latency to run smoothly. Therefore, to improve the system performance, it needs to be more robust to run smoothly. Video transmission and transcoding is an essential process in converting codecs, changing bitrates or resizing the resolution for 360 videos. High-performance transcoding is one of the key factors of real time CCTV stream. Additionally, the security of video streams from cameras to endpoints is also an important priority in CCTV research. In this paper, a real-time transcoding system designed with the ARIA block cipher encryption algorithm is presented. Experimental results show that the proposed method achieved approximately 200% speedup compared to libx265 FFmpeg in transcoding task, and it could handle multiple transcoding sessions simultaneously at high performance for both live 360 CCTV system and existing 2D/3D CCTV system.

1. Introduction

Nowadays, closed-circuit television (CCTV) is widely deployed in the video surveillance systems and video analysis is a key factor to provide intelligent services. Previously, analog CCTV systems were used to search for intruders in the pre-recorded video by human. Currently, digital CCTV can process automatically using video analytic technologies in a computer system. To meet the necessity of CCTV systems video analytic, improving quality of service (QoS) of video CCTV is one indispensable element. Especially, the existing 2D CCTV system cannot provide high-resolution such as Ultra-HD 4K, or has difficulty adopting new video codec such as High-Efficiency Video Coding (HEVC) [1]. The video converting method is necessary to adapt the various requirements of CCTV systems.
Compared to the H.264/MPEG (Moving Picture Experts Group)-4 Advanced Video Coding (AVC), the HEVC video encoding has achieved approximately twice the compression [2]. It was developed and standardized by a joint team of MPEG known as the Joint Collaborative Team on Video Coding (JCT-VC) [3]. H.264/AVC standard (ITU-T Rec. H.264 | ISO/IEC 14496-10) is reviewed in [4]. HEVC is also standardized as ITU-T H.265 | ISO/IEC 23008-2 (MPEG-H Part 2). HEVC has quickly been deployed in many video services due to its high-performance in compression. Because of a large amount of existing video content encoded with the H.264/AVC format, transcoding H.264/AVC bitstream to HEVC bitstream is very demanding. In addition, most current 2D/3D CCTV systems only support H.264/AVC, thus a transcoder would help upgrade these CCTV systems at a lowest cost. The computational complexity of HEVC coding is extremely high compared to the H.264 standard. This makes it difficult to implement real-time high-quality HEVC encoder software in multimedia encoding and transcoding systems.
The emergence of 360 videos has brought new trends in video research. It promotes the change of the video experience of users. Moreover, it also opens up more opportunities for video processing area such as efficient encoding, high bandwidth transmission, high-resolution, real-time video interaction, etc. Due to above factors, 360 video technology is promising in changing the surveillance of CCTV systems in the near future. By using the 360 CCTV, the surveillance system will have many changes in monitoring methods as well as surveillance video analysis. However, 360 video streaming requires high bandwidth with low latency, so it is hardly compatible with existing systems. Therefore, a transcoder with the ability to change the bitrate, resolution, and codec is needed to meet the various demands of the terminals.
Encryption is an important factor to ensure user information is secure in security systems. There are many different methods to implement security features in CCTV systems. For example, the encryption can be performed at the Network Abstract Layer (NAL) unit level and affect all NAL units in whole bitstream file. The performance of the encoder is not significant as it will increase the complexity of the encoder and the transcoder. Therefore, in this paper, we propose a transcoding method for multi-core platforms. Moreover, the proposed system encrypts the Video Parameter Set (VPS), Picture Parameter Set (PPS) and Sequence Parameter Set (SPS) NAL units of the HEVC bitstream during transcoding process. The NAL encryption step occurs after NAL encoding step in a serial process. Based on Big O notation theory, the encryption process for each transcoding thread does not increase the complexity of the system. The experimental results show that the proposed system provided significant speed, corresponding to a bit rate for H.264 to HEVC real-time transcoding of 36.4 frames/s for 1080p with six simultaneous threads and 33.6 frames/s for 4K with two simultaneous threads. The conceptual architecture of the proposed system including various CCTV cameras is illustrated in Figure 1.
Figure 1. Conceptual architecture of live CCTV System with real-time transcoding.
The rest of the paper is organized as follows: Section 2 describes related works that were considered for proposed system. Section 3 addresses the challenges in real-time CCTV system with or without 360 cameras, and presents the proposed method. Section 4 shows the implemented demonstration and the performance evaluation. Finally, Section 5 presents conclusions about the proposed scheme and future work.

3. Fast Multiple Transcoding and Encryption

3.1. Multiple Transcoding

Instead of using a multiplexer to aggregate various video streams, the proposed method provides a parallel-processing mechanism for transcoding based on Intel Media Software Development Kit (Intel Media SDK), ARIA block cypher encryption and FFmpeg library. Additionally, Real-Time Streaming Protocol (RTSP) is used to handle input/output real-time streams from CCTV cameras to RTSP clients. As shown in Figure 6, each video transcoding session was handled by a CPU-core within one or more threads. One thread can process a number of video frames as a batching or all frames of a video stream. Figure 7 shows an example of parsing input streams, pipelining and multi-threading techniques handle the input streams as parallel processing. Each input stream could be attached to one session. Then, all sessions will be joined together to work simultaneously.
Figure 6. Multiple real-time streaming over transcoder box.
Figure 7. Transcoding and encryption for video streaming on multi-core platforms.
To handle multiple transcoding sessions, FFmpeg library software [16] can also provide a mixing mechanism to multiplex video streams. However, the outputting, re-encoding and decoding multiple times in the same FFmpeg process will slow down some encoders. A few video encoders such libx264 [15] perform the encoding as threading, so they allow for parallel processing. However, audio encoding may be serial and become the bottleneck issue. This leads to FFmpeg treating them as real serial-processing. Thus, FFmpeg may not use all available cores. Another available solution can be achieved by using multiple FFmpeg instances running in parallel or piping from one FFmpeg to another encoding session. All these reasons lead to FFmpeg not working effectively for parallel encoding.
Even though Intel Quick Sync Video technology [17] integrated into FFmpeg can handle multiple sessions, it can only support two sessions of 1080p video streams at the same time with high-latency for the second streaming. Therefore, the proposed method suggests directly using video and audio processing acceleration application programming interfaces (APIs) to improve the parallel processing for the encoders. As shown in Figure 7, to optimize CPU cores and graphics power, the proposed method uses Intel Media Software Development Kit (SDK) APIs to accelerate the video transcoding application as in parallel processing. The main architecture of Intel Media SDK is illustrated in Figure 8.
Figure 8. Intel Media SDK architecture.
To encrypt the video and audio simultaneously, we propose a model to transcode multiple audio and video sessions. The audio sessions are classified into two categories. First, audio data from video sessions are demuxed, and then the transcoder convert audio codec into AAC codec, as shown in Figure 9. After that, the muxer combines video and audio elementary stream into one output bitstream. Second, another audio transcoder is designed to adopt independent audio sessions based on importance in emergency situations. These audio microphones are set up near the CCTV camera to provide voice call. The audio transcoder allows converting multiple audio sessions simultaneously.
Figure 9. Video transcoding—elementary streams.

3.2. ARIA Encryption

To adapt secured video transmission over the Internet, an encryption algorithm is applied to encrypt the transcoded video bitstream. From the security point of view, various well known encryption algorithms can be used, such as Advanced Encryption Standard (AES), Digital Signature Algorithm (DSA), etc. Additionally, to provide a real solution for CCTV system specially in Korea, the ARIA encryption algorithm is used, which implemented the first version under the government’s standard. The proposed system was considered using cryptographic and plaintext attacks on ARIA to check the secured capability. Moreover, some related studies were verified to estimate the performance of ARIA. Alex Biryukov et al. [18] provided the security and performance of ARIA encryption in specified report. S. Li et al. [19] showed some cryptanalysis analytics on ARIA. A. Pandey et al. [20] showed the comparative survey of different cryptographic algorithms, which included ARIA cryptographic algorithm.
ARIA algorithm is a block cipher designed by a large group of researchers from South Korea. Additionally, the Korean Agency for Technology and Standards voted and selected it as an efficient standard cryptographic technique in 2004. More information about ARIA encryption can be reviewed in [21,22,23]. The ARIA algorithm provides a mechanism that uses a substitution-permutation network structure based on the well-known AES encryption. The interface is similar to AES encryption such as the key size of 128, 192, or 256 bits with 128 bits block size. Moreover, the number of rounds depends on the key size with possible values of 12, 14, or 16. The ARIA encryption algorithm uses two 8 × 8 -bit S-boxes, and their inverses in alternate rounds; one of these boxes is the Rijndael S-box [21].
To achieve real-time transcoding/encryption, the proposed system uses ARIA to encrypt each output video stream from the transcoder, as shown in Figure 6 and Figure 7. Instead of encrypting whole output stream, ARIA crypto library [24] was used to encrypt a few special frames of video streams. For example, to perform encryption while transcoding to HEVC, the proposed system only encrypts VPS, PPS and SPS slices. Additionally, the encryption mechanism also allows the transcoder encrypting a part of the video stream as the length of the multiple of 16 bytes. As shown in Figure 10, “encDataLen” is required as multiple of 16 bytes because of the “padding” issue. The padding issue leads to hard work of decryption in client-side or control center. In this paper, we propose the encryption for both video and audio data.
Figure 10. Output encrypted HEVC stream—Type 1.
The master key and round-key can be pre-generated and stored at both client and server sides. The other option is that all keys are attached to full name (RTSP) stream at the server side, as shown in Figure 11. Then, clients can interact with some particular points inside RTSP stream to detach master key and round-key. In this case, the location and length of these keys are stored in a secret process, which is only shared between server and client by another communication channel.
Figure 11. Output encrypted HEVC stream—Type 2.

3.3. RTSP Streaming

Real-time transmission protocol (RTSP) is a network control protocol designed for use in entertainment and communication systems to control streaming media servers. The protocol is used to establish and control communication sessions between endpoints. The transmission of data online is not the task of RTSP. Most RTSP servers use real-time transmission protocols in combination with real-time control protocols to distribute streaming media. However, some vendors implement proprietary transmission protocols. More information about RTSP is extensively explained in [25,26].
To provide live streaming services from CCTV camera to clients, the proposed method is a server–client model using RTSP protocol. This model consists of two part:
  • RTSP server side: Provides multiple real-time RTSP streams at the same time. Each RTSP stream is transcoded and encrypted by transcoder box.
  • RTSP client side: Customer’s devices or control center uses computer, smartphone or tablet to decrypt/decode RTSP stream.
As shown in Figure 12, RTSP server functionality was merged into transcoding to avoid overhead of computational complexity of system while adding more functionalities. Client-side consists of two main functionalities: decryption and decoding RTP stream and rendering video. Regarding multiple live streaming sessions, an optimized RTSP based FFmpeg library was implemented to support multiple streaming simultaneously.
Figure 12. Testbed for live CCTV system.

4. Performance Evaluation

4.1. Testbed Scenario

To demonstrate the operation of the proposed method in a real environment, we implemented a testbed to verify the ability of real-time transcoding and encryption. For experimental measurements, we set up a testbed scenario, as shown in Figure 12. We set up a transcoder box with a Intel(R) Core(TM) i7-7500U 2.70GHz processor (Intel Corporation, Santa Clara, CA, USA), 16 GB of memory with Linux Centos 64-bits version 3.10.0-862.9.1.el7.x86_64 (gcc version 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)) OS. We also used mobile virtual reality-based bead-mounted-device, desktop, and laptop as clients in the control center. Additionally, we installed two Hanwha CCTV cameras [27] as 2D cameras and a Samsung 360 camera as 360 CCTV camera. Table 1 shows the standard 360 4K video test sequences in detail. These video test sequences were released by JCT-VC, as shown in Figure 13.
Table 1. The 360 videos bitstreams by JCT-VC.
Figure 13. The 360 video test sequences: (a) DrivingInCity; (b) Harbor; (c) KiteFlite; (d) Trolley; and (e) GasLamp.
Regarding software, HM software with 360 libraries [24] was used as video encoder and openHEVC software [28] as video decoder. Intel Media SDK [29] was used to accelerate transcoding by multiple threads. Crypto++ crypto library [30] was used for bitstream encryption/decryption. The hevcbrowser software [31] was used to perform the status of HEVC bitstream. To evaluate performance, ERP Peak Signal-to-Noise Ratio (PSNR) software [32] and FFmpeg were used as estimation tools. Additionally, HM and 360 libraries were used to process a spherical 360 video with ERP projection [33]. The ERP projection is described in detail in Table A1. The encoding configuration parameters of 360 bitstreams are listed in Table A2. The 2D video test sequences were also encoded using HM version 16.15 within standard configurations for 8 bits.
To evaluate the quality of the output 360 videos, we calculated the distortion in the sphere to properly respond to our view of the 360 videos, instead of calculating the PSNR in rectangle plane. We used PSNR sphere (WS-PSNR) [33] weighted index method for calculating distortion of 360 videos reproduced in the sphere domain to show the difference between the reconstructed video and the original 360 video. The WS-PSNR software [32] provides WS-PSNR calculations for both ERP window and entire ERP system, as shown in Figure 14. To perform performance evaluations for the proposed method, we used a video test sequences as representation data for both 360 CCTV camera and the 2D CCTV camera.
Figure 14. Full equirectangular projection (ERP) and windowed ERP.

4.2. Evaluation

As shown in Figure 15, the input video bitstream had a duration of 10.03 s, and the average transcoding time for the six sessions was approximately 7.05 s. In six transcoding sessions, there were three sessions using ARIA encryption and three sessions without encryption. In sessions with encryption, transcoding was approximately equivalent to non-encryption sessions, and, in Session 1, the total time was only 7.02 s. For example, for larger videos, a concatenated video from DrivingInCity test sequence was 100.3 s, and transcoding and encryption averaged only 69.04 s, as shown in Table 2. Through the transcoding and encryption of different lengths of various 360 videos, we conclude that the transcoding and encryption system could process two 4K sessions or six 1080p sessions, and only took up around 70–75% of the video duration. The average transcoding rate was 36.4 frames/s for 1080p and 33.6 frames/s for 4K resolution video. Table 3 shows that the proposed method could also transcode 2D video in real-time, and the transcoding time was approximately 60% of 2D video duration.
Figure 15. The DrivingInCity test sequence H.264/AVC to HEVC—six 1080p transcoding sessions.
Table 2. The 360 test sequences—common transcoding time.
Table 3. JCT-VC 2D test sequences—common transcoding time.
As shown in Table 4 and Table 5, a comparison between x265 and proposed transcoding was processed based on measurements of 2D and 360 video test-sequences. We used libx265 [34] with FFmpeg to verify all transcoding sessions for these test sequences. Consequently, we conclude that the proposed method could speed up the transcoding by up to 195% when compared to x265. The highest achievement was 7.03 s for 360 transcoding time with a speed of 42.8 frames/s, and 2D video transcoding speed could achieve up to 42.88 frames/s.
Table 4. The 2D transcoding comparison.
Table 5. The 360 transcoding comparison.
To evaluate the efficiency of ARIA encryption, we used FFprobe (a tool of FFmpeg software) and hevcbrowser software to verify output HEVC bitstreams for both HEVC only and HEVC within encryption. As shown in Figure 16a, FFmpeg tools showed that HEVC bitstream of Session 0 was easy to parse or decode. Figure 16b shows that output HEVC encrypted bitstream of Session 1 could not be parsed or decoded. The reason was the first NAL units were encrypted to a different format. The output 360 DrivingIncCity video was decoded by openHEVC decoder, as shown in Figure 16c. Additionally, by using hevcbrowser software, as shown in Figure 17b, we can confirm that VPS, PPS, and SPS NAL units were encrypted successfully, while Figure 17a shows the output HEVC bitstream of Session 0 without encryption. In Table 6, the WS-PSNR values show unsatisfactory performance compared to other quality metrics when it comes to estimating the quality of images and videos as perceived by humans. We verified the comparison for both 1080p and 4K video. All WS-PSNR values of three channels were higher than 38 (dB), thus the quality of 360 videos at control center was reasonable to feel fully immersed in 360 videos.
Figure 16. FFmpeg parsing: (a) unencrypted HEVC bitstream; (b) encrypted HEVC bitstream; (c) decoded output video.
Figure 17. Hevcbrowser parsing: (a) unencrypted HEVC bitstream; (b) encrypted HEVC bitstream.
Table 6. WS-PSNR (Peak Signal-to-Noise Ratio) comparison.
Figure 18 shows the video decryption and video client display. Here, the transcoder box will encrypt the entire video. With correct ARIA keys, as shown in Figure 18a, the video client can show the video after the decryption process. As shown in Figure 18b, video client cannot decrypt the VPS, SPS and PPS NAL units. Thus, it could not find correct video stream info while parsing the RTSP stream. To verify the encryption efficiency, the proposed system was used for experiments with AES and ARIA algorithms. Table 7 shows the comparison between AES and ARIA on the transcoder box with the master key sizes of 128 bits and 256 bits. The results prove that the AES algorithm could provide the encryption speed up to 33.4 times when compared to the ARIA algorithm. Additionally, transcoding and AES encryption process could reduce the total processing time by around 5–10% when compared to the ARIA algorithm, as shown in Table 8. The percentage of AES encryption time over the total processing time decreases when the CCTV video duration time increases. The ARIA encryption gives the result in the same way with higher percentage than AES encryption. Finally, from the security point of view, AES encryption was one of the best choices to secure data.
Figure 18. Video client decrypts encrypted CCTV video bitstream: (a) with correct keys; and (b) without correct keys.
Table 7. Secure algorithm benchmark on proposed system using Crypto++.
Table 8. Processing time comparison between ARIA and AES algorithms.

5. Conclusions

The development of 360 video technology has led to the promised development of CCTV system, which has been maintained with long-standing technologies. In this paper, we propose the transcoding and encryption scheme for live CCTV video streams in real-time. The proposed method can be used for low bandwidth and capacity for 2D/3D CCTV systems that only support H.264 and earlier codecs. Experimental results show that the combination of parallel video processing and encryption enhances the security without increasing the overall complexity of the system, while still ensuring the real-time live streams from CCTV cameras to control center. The proposed system optimized real-time transcoding for six 1080p sessions and two 4K sessions with speeds of 36.4 FPS and 33.6 FPS, respectively.
In the future, we intend to apply cubemap projection extensively into 360 CCTV cameras to improve the quality of video input. Additionally, the application of cubemap projection also offers many advantages in optimizing the encoding of the 360 CCTV cameras. In addition, perfecting the encoding/decoding mechanism is also an important factor in improving the performance of CCTV systems in the coming years. Regarding security issue, we also plan to experiment with applying cryptographic attack and plaintext attack to check the security feature.

Author Contributions

Conceptualization, Data curation and Writing—original draft, T.T.L.; Data curation and Investigation, J.J.; and Project administration, Supervision and Writing—review and editing, E.-S.R.

Funding

This work was supported by Institute for Information & communications Technology Promotion (IITP) grant funded by the Korea government (MSIP) (No. 2017-0-00307, Development of Tiled Streaming Technology for High Quality VR Contents Real Time Service). It also was supported by the MSIT (Ministry of Science and ICT), Korea, under the ITRC (Information Technology Research Center) support program (IITP-2018-2017-0-01630) supervised by the IITP (Institute for Information & Communications Technology Promotion).

Conflicts of Interest

The authors declare no conflict of interest.

Appendix A

Table A1 and Table A2 are for 360 video encoding using ERP projection.
Table A1. Equirectangular projection for 360 video.
Table A2. Coding configuration of 4K 360 video.

References

  1. JCT-VC. High Efficiency Video Coding (HEVC). Available online: https://hevc.hhi.fraunhofer.de/ (accessed on 17 February 2019).
  2. Ohm, J.-R.; Sullivan, G.J.; Schwarz, H.; Tan, T.K.; Wiegand, T. Comparison of the coding efficiency of video coding standards—Including High Efficiency Video Coding (HEVC). IEEE Trans. Circuits Syst. Video Technol. 2012, 22, 1669–1684. [Google Scholar] [CrossRef]
  3. JCT-VC—Joint Collaborative Team on Video Coding. Available online: https://www.itu.int/en/ITU-T/studygroups/2013-2016/16/Pages/video/jctvc.aspx (accessed on 18 February 2019).
  4. Wiegand, T.; Sullivan, G.J. Overview of the H.264/AVC video coding standard. IEEE Trans. Circuits Syst. Video Technol. 2003, 13, 560–576. [Google Scholar] [CrossRef]
  5. WG11 (MPEG). MPEG Strategic Standardisation Roadmap; Technical Report ISO/IEC JTC1/WG11; MovingPicture Experts Group (MPEG): Villar Dora, Italy, 2016. [Google Scholar]
  6. Champel, M.L.; Koenen, R.; Lafruit, G.; Budagavi, M. Working Draft 0.4 of TR: Technical Report on Architectures for Immersive Media; Technical Report ISO/IEC JTC1/WG11; Moving Picture Experts Group (MPEG): Villar Dora, Italy, 2017. [Google Scholar]
  7. Wang, X.; Chen, L.; Zhao, S.; Lei, S. From OMAF for 3DoF VR to MPEG-I media format for 3DoF+, windowed 6DoF and 6DoF VR. In Proceedings of the 119th MPEG Meeting of ISO/IEC JTC1/SC29/ WG11, MPEG 119/m44197, Torino, Italy, 17–21 July 2017. [Google Scholar]
  8. Kalva, H. Issues in H.264/MPEG-2 video transcoding. In Proceedings of the 1st IEEE Consumer Communications and Networking Conference, Las Vegas, NV, USA, 5–8 January 2004; pp. 657–659. [Google Scholar]
  9. Zhou, Z.; Sun, S.; Lei, S.; Sun, M.-T. Motion information and coding mode reuse for MPEG-2 to H.264 transcoding. In Proceedings of the 2006 IEEE International Symposium on Circuits and Systems, Kobe, Japan, 23–26 May 2005; pp. 1230–1233. [Google Scholar]
  10. Chen, Y.; Wen, Z.; Wen, J.; Tang, M.; Tao, P. Efficient software H.264/AVC to HEVC transcoding on distributed multicore processors. IEEE Trans. Circuits Syst. Video Technol. 2015, 25, 1423–1434. [Google Scholar] [CrossRef]
  11. Luong, P.V.; De Praeter, J.; Van Wallendael, G.; Van Leuven, S.; De Cock, J.; de WalleE, R.V. Efficient bit rate transcoding for high efficiency video coding. IEEE Trans. Multimed. 2016, 18, 364–378. [Google Scholar]
  12. Díaz-Honrubia, A.J.; Martínez, J.L.; Cuenca, P.; Gamez, J.A.; Puerta, J.M. Adaptive fast quadtree level decision algorithm for H.264 to HEVC video transcoding. IEEE Trans. Circuits Syst. Video Technol. 2016, 26, 154–168. [Google Scholar] [CrossRef]
  13. Zhang, X.; Seo, S.H.; Wang, C. A lightweight encryption method for privacy protection in surveillance videos. IEEE Access 2018, 6, 18074–18087. [Google Scholar] [CrossRef]
  14. Wampler, C.; Uluagac, S.; Beyah, R. Information leakage in encrypted IP video traffic. In Proceedings of the 2015 IEEE Global Communications Conference (GLOBECOM), San Diego, CA, USA, 6–10 December 2015. [Google Scholar]
  15. VLC x264 Library. Available online: https://www.videolan.org/developers/x264.html (accessed on 17 February 2019).
  16. FFmpeg Software. Available online: https://www.ffmpeg.org/ (accessed on 17 February 2019).
  17. Intel. Quick Sync Video Technology. Available online: https://www.intel.com/content/www/us/en/architecture-and-technology/quick-sync-video/quick-sync-video-general.html (accessed on 17 February 2019).
  18. Security and Performance Analysis of Aria. Available online: https://www.esat.kuleuven.be/cosic/publications/article-500.ps (accessed on 17 February 2019).
  19. Li, S.; Song, C. Improved impossible differential cryptanalysis of ARIA. In Proceedings of the 2008 International Conference on Information Security and Assurance (isa 2008), Busan, Korea, 24–26 April 2008. [Google Scholar]
  20. Pandey, A.; Rizvi, M.A. Comparative survey of different cryptographic algorithm. Int. J. Sci. Eng. Res. 2017, 8, 41–44. [Google Scholar]
  21. Lee, J.; Kwon, D.; Kim, C. IETF RFC: ARIA Encryption Algorithm; NRSI: Syosset, NY, USA, 2010; Available online: https://tools.ietf.org/html/rfc5794 (accessed on 20 February 2019).
  22. Kwon, D.; Kim, J.; Park, S.; Soong, S.H.; Sohn, Y.; Song, J.H.; Yeom, Y.; Yoon, E.-J.; Lee, S.; Le, J.; et al. Aria Encryption KISA. In Proceedings of the Information Security and Cryptology (ICISC 2003), Seoul, Korea, 27–28 November 2003; LNCS 2971. pp. 432–445. Available online: http://www.math.snu.ac.kr/~jinhong/04Aria.pdf (accessed on 20 February 2019).
  23. Kim, W.; Lee, J.; Park, J.; Kwon, D. IETF RFC: ARIA Cipher Suites to Transport Layer Security (TLS); NRSI: Syosset, NY, USA, 2011; Available online: https://tools.ietf.org/html/rfc6209 (accessed on 20 February 2019).
  24. HM Software and 360 Library. Available online: https://hevc.hhi.fraunhofer.de/ (accessed on 18 February 2019).
  25. Schulzrinne, H.; Rao, A.; Lanphier, R. IETF RFC: Real Time Streaming Protocol; RealNetworks: Seattle, WA, USA, 1998; Available online: https://tools.ietf.org/html/rfc2326 (accessed on 20 February 2019).
  26. Schulzrinne, H.; Rao, A.; Lanphier, R.; Westerlund, M.; Stiemerling, M. IETF RFC: Real-Time Streaming Protocol Version 2.0; Westerlund Ericsson, M., Stiemerling, M., Eds.; University of Applied Sciences Darmstadt: Darmstadt, Germany, 2016; Available online: https://tools.ietf.org/html/rfc7826 (accessed on 20 February 2019).
  27. Hanwha CCTV Camera—Model LNO-6010R. Available online: https://www.hanwha-security.com/en/products/camera/network/bullet/LNO-6010R/overview/ (accessed on 19 February 2019).
  28. Open HEVC Decoder. Available online: Available:http://openhevc.github.io/openHEVC/ (accessed on 17 February 2019).
  29. Intel Media SDK. Available online: https://software.intel.com/en-us/media-sdk (accessed on 17 February 2019).
  30. Crypto++ Library. Available online: https://www.cryptopp.com/ (accessed on 17 February 2019).
  31. Hevcbrowser Software. Available online: https://github.com/virinext/hevcesbrowser/projects (accessed on 19 February 2019).
  32. ERP WS-PSNR Software. Available online: http://mpegx.int-evry.fr/software/MPEG/Explorations/3DoFplus/ERP_WS-PSNR (accessed on 19 February 2019).
  33. Yu, M.; Lakshman, H.; Girod, B. A framework to evaluate omnidirectional video coding schemes. In Proceedings of the 2015 IEEE International Symposium on Mixed and Augmented Reality (ISMAR), Fukuoka, Japan, 29 September–3 October 2015. [Google Scholar]
  34. VLC x265 Library. Available online: https://www.videolan.org/developers/x265.html (accessed on 19 February 2019).

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.