SlideShare a Scribd company logo
1 of 7
Download to read offline
International Journal of Engineering Research and Development
e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com
Volume 10, Issue 3 (March 2014), PP.22-28
22
Emerging Vp8 Video Codec For Mobile Devices
#1
Basavaraju.S, #2
Dr B .Siva Kumar
#1
Assist prof, ECE Dept SCE, Bangalore
#2
Prof and HOD of Telecom Dept, Dr AIT, Bangalore
Abstract:- Multimedia has become an inevitable part of our daily lives. It finds application in various areas,
from education to entertainment. The growth of internet and mobile communication has also increased the use
of multimedia applications. Digital video applications for network, wireless-enabled and mobile devices pose a
range of constraints such as low channel bandwidth, limited storage capacity and low cost. This has created a
need for high quality video at low bitrates. To meet this need, several compression algorithms have been
developed for coding video content. Depending upon the desired quality and information throughput,
compression techniques call for a large amount of processing and complex coding tools. This increase in
complexity calls for an aggressive optimization of video codec’s in order to meet the real time targets on low-
power and cost sensitive devices. Real-time software-based video codec has been widely used onPCs with
relatively strong computing capability. However,mobile devices, such as Pocket PCs and Handheld PCs, still
suffer from weak computational power, short battery lifetime and limited display capability. We developed a
practical lowcomplexity real-time video codec for mobile devices. Several methods that can significantly reduce
the computational cost are adopted in this codec and described in this paper, including apredictive algorithm for
motion estimation, the integer discrete cosine transform (IntDCT), and a DCT/Quantizer bypass technique. A
real-time video communication implementation of the proposed codec is also introduced. Experiments show that
substantial computation reduction is achieved while the loss in video quality is negligible. The proposed codec
is very suitable for scenarios where low-complexity computing is required..
Keywords:- VP8, Video, ARM, NEON, SIMD, ME, MC
I. INTRODUCTION
Recent years have witnessed the rapid development of the mobile devices with wireless connections.
With the continuing improvement of storage capacity and computing capability, software-based video coding on
mobile devices is becoming economically viable. The emergence of digital cameras for mobile devices also
provides conditions for real-time video communication.Earlier H.263 [1] is an ITU-T recommended video
coding standard and has been broadly used in video conferencing on PCs. However, the conventional H.263
encoder is still computationally expensive and practically not feasible for mobile devices. Simillarly H.264 its
improved version but still facing same kind of problem in several scenarios.In the past years, research on video
compression is focused on improving rate-distortion performance. In order to achieve higher coding efficiency,
video coding techniques trend to be more elaborate and complex. This leads to higher requirements of the
computing capability. More and more users are seeking real-time video communication services with the rapid
development of wired and wireless networks. However, real-time software-based video encoding introduces a
tradeoff between compression efficiency and complexity. How to reduce the computational requirements as
much as possible without obviously compromising the video compression efficiency is one of the key issues in
research on video communication.
For this reason, we investigated the google-ON2 technology released new video codec VP8, And also
analyze the resource distribution of the VP8 video encoder which uses integer-pixel full search on motion
estimation and floating-point DCT. Figure 1 shows the distribution of the execution time for a testing sequence.
In this figure, motion estimation, DCT/IDCT and quantization which utilize 73%, 16% and 4% of the execution
time respectively are the three primary computationally-intensive components. Thus, the goal of this work
clearly is to improve these three components.
Fig 1: Exectution time distribution for test sequence
Emerging Vp8 Video Codec For Mobile Devices
23
II. APPROACHES
Figure 2 shows the diagram of the proposed VP8 video encoder. The structure is similar to that of the
any video encoder and is compatible with the VP8 Video bitstream syntax. The Rate Control component enables
the output bit rates to be adaptive to the target. Motion estimation, DCT/IDCT and Quantizer are three critical
modules which consume the majority of the execution time in this architecture. The rest of this section will
introduce approaches that can speed up the execution of these three modules.
2.1 Low-Complexity Motion Estimation Algorithm
Motion estimation (ME) is efficient in eliminating temporal redundancy between adjacent frames. At
the same time, motion estimation is also regarded as a vital component in a video encoder as it consumes the
largest amount of computational resources. There are significant advances in fast motion estimation techniques
in recent years for alleviating the heavy computation load, such as the diamond search (DS) [2], the small-cross-
diamond search (SCSD) [3] and the predictive algorithm (PA) [4]. The complexity of the PA algorithm is the
lowest among these fast motion estimation approaches, and its time is relatively constant as there is no recursive
searches in this algorithm. We analyze the PA algorithm and propose an appropriate number of candidate
predictors and an adaptive motion vector (MV) refinement method. The algorithm utilizes the characteristics
that macroblocks (MB) close to the current MB, in time and in space, are highly probable to have the same
motion. Instead of testing all possible MVs as full search (FS) does, the previously calculated MVs of the
contiguous MBs comprise a set of candidate predictors, then the best candidate predictor, i.e. the MV with the
lowest sum of absolute differences (SAD), is corrected by the refinement phase. In our investigation, the
candidate predictors set which is composed of three MVs plus a null vector, as shown in Figure 3, achieved a
good trade-off between computational savings and performance loss
Fig 2: The structure of the proposed Encoder
Fig 3: The candidate predictors set: two spatial predictors belonging to the same frame,
one temporal predictor belonging to the previous frame and a null vector.
The goal of the refinement phase is to make the best predictor approximate to the real motion. The
method of PA is to search the optimal MV at the eight points around the best predictor. An adaptive search
approach is proposed in this paper. The SAD of the best predictor is evaluated for choosing the testing points.
The refinement processes are divided into the following three cases according to the comparison results of the
SAD and two thresholds, TH1 and TH2, as shown in Figure 4.
Case 1: SAD <= TH1, only four points on the cross directions are tested;
Case 2: TH1 < SAD <= TH2, eight points around the best Predictor are covered;
Case 3: SAD > TH2, eight points which are two pixels away from the best predictor are involved.
In some circumstances, for example when scene changes or there is a sudden motion change, the best
predictor is not reliable, which can be indicated by a large SAD value. Increasing the search area, as shown in
case 3, addresses this issue. Suitable values are TH1=4000 and TH2=6000 according to our experiments on
Emerging Vp8 Video Codec For Mobile Devices
24
many sample sequences. Table 1 shows the distribution of refinement vectors, which indicates that case 1 covers
over 95% of the cases.
Figure 4: Refinement vectors in three different cases
Consequently, the average number of SAD operations per MB shown in this table is fairly small.
Table 2 compares the performance between PA and FS. Using the PA method, a 18.5 to 20-fold speed increase
on motion estimation is achieved whilst the average Peak Signal-to-Noise Ratio (PSNR) degradation is
marginal.
Table 1: Distribution of refinement vectors and average number of SAD operations per MB for the QCIF
sequences coded at 15 fps and 56 kbps
Table 2: Average PSNR degradation and speed improvement ratio of the ME module comparing to FS with a
search distance of 15 pixels
2.2 Integer DCT and inverse DCT
The discrete cosine transform (DCT) is widely used in video coding standards such asVP8,
H.263,H264 and MPEG-4 [5]. The conventional floating-point DCT (FloatDCT) contains substantial floating-
point operations, especially the multiplications which require heavy computation and power resources in mobile
devices. An Integer DCT (IntDCT) [6] method that can greatly increase the efficiency is adopted in the proposed
codec. The implementation of IntDCT is in the form of shift operations and additions, and all internal nodes
have finite precision. An 8-pt IntDCT scheme with a complexity of 45 additions and 18 shift operations
provides comparable performance to FloatDCT and is suitable for mobile scenarios. In the proposed codec, the
forward IntDCT is used in the encoder followed by the inverse IntDCT in the decoder. The PSNR degradation
of this scheme is only about 0.2 to 0.5 dB in contrast to FloatDCT and inverse FloatDCT, whereas about 2.6 to
3.5-fold speed increase is achieved as shown in Table 3.
2.3 DCT/Quantizer Bypass Algorithm
Besides the motion estimation and DCT components, quantization which involves multiplications also
requires significant computations
It is possible to skip some of the DCT and quantization calculations [7] [8]. The DCT/Quantizer.
Bypass algorithm is a straightforward and efficient method to reduce computations with virtually no visible loss
in video fidelity.
Table 3: Average PSNR degradation and speed improvement ratio of DCT/IDCT module for the QCIF
samples coded at 15 fps and 56 kbps
Emerging Vp8 Video Codec For Mobile Devices
25
The algorithm is based on two observations: first, for most sequences at low bit rates, a significant
portion of MBs have DCT coefficients that are all reduced to zero after quantization; secondly, in the majority
of the inter-macroblocks, the DC coefficient of DCT has a larger magnitude than all the other coefficients in a
transformed block. Since the coefficients in a block will quantize to zeros only if their magnitudes are less than
2Q, where the variable Q is the quantization parameter, it is possible to predict all-zero quantized (AZQ) MBs
using the DC coefficient, and the DCT and quantization calculations associated with those MBs can be
eliminated. A substantial saving can be achieved in this way.In the original algorithm, a macroblock is regarded
as AZQ if all DC coefficients of four 8x8 luminance blocks in the MB have magnitudes less than 2Q. As
concluded in that paper, under a few conditions, the fidelity degradation is visible and manifests itself as
chrominance changes while no distortion appears in the luminance. This is because AZQ blocks are predicted
solely on luminance values, which may be an inaccurate indicator for chrominance blocks. In our proposed
scheme, chrominance values are taken into account to make the criterion more stringent. Since the DC term
corresponds to 1/8 sum of the values in the 8x8 block, two criterions are defined as follows.
A macroblock is identified as AZQ only when all four luminance blocks satisfy criterion 1 and two
chrominance blocks satisfy criterion 2. Suitable parameters in practice are α=8 and β=16, which tighten the
condition slightly. Although these more stringent criteria will miss some macroblocks that should be identified
as AZQ, they also reduce the number of incorrectly selected macroblocks, which can degrade the final picture
fidelity. Meanwhile, the chrominance quality can also be preserved.The DCT/Quantizer bypass process is only
performed on inter-macroblocks, because intra-macroblocks are less likely to satisfy the condition that the DC
coefficient has the largest magnitude. Table 4 shows that substantial DCT and quantization calculations are
skipped while the PSNR degradation is marginal. In the table, a negative degradation actually means PSNR
improvement. This is possible because not only computations are reduced but also the bits required to code
those macroblocks are reduced, and then the saved bits improve the overall PSNR.
Table 4: Percentage of DCT/Quantizer bypassed and average PSNR degradation for the
QCIF samples coded at 15 fps and 56 kbps
III. EXPERIMENTAL RESULTS
To examine the effectiveness of the above mentioned algorithms on reducing computation time and
preserving video quality, we chose sequences with vastly varying content from standard VP8 test video clips to
test the performance of the overall encoder. The results of the Miss_america and Carphone sequences are shown
in this paper. The Miss_america sequence represents scenes with little head-and-shoulder movements and a still
background. The Carphone sequence has large facial motion and a fast moving background. Both sequences are
in QCIF format and encoded at 15 frames per second and 56 kbps. Figure 5 shows the PSNR performance of the
proposed encoder and an unoptimized encoder which uses full search on motion estimation and the FloatDCT
without DCT/Quantizer bypass method. From the experimental result, the two PSNR curves are close in each
figure and the proposed encoder provides relatively satisfactory performance in different video sequences with
low and high motion activities
Emerging Vp8 Video Codec For Mobile Devices
26
Figure 5: PSNR comparison between the unoptimized encoder and the proposed encoder, average PSNR
degradations are 0.68 dB and 0.47 dB respectively
Four reconstructed frames encoded by the unoptimized encoder and by the proposed encoder are
shown in Figure 6 for subjective evaluation. No significant subjective degradation is present using the proposed
encoder.
The unoptimized encoder and the proposed encoder were also tested on mobile devices. Table 5 shows the
maximum frames rates achieved on platform which possesses a 206 MHz Strong ARM processor and 32MB
RAM. From the experimental results, we can see that the computational cost has been significantly reduced
using the proposed methods and the resultant frame rate is worthy of consideration for mobile devices.
Table 5: Maximum frame rates (fps) obtained on ARM platform
Emerging Vp8 Video Codec For Mobile Devices
27
(e) (f)
Figure 6: Miss_am frame number 50 and carphone frame number 58 coded by unoptimized encoder (a)
(c) and by proposed encoder (b) (d), PSNR degradations are 0.51 dB and 0.45 dB respectively.
Simmilarly VP8 Video test steam VP80-00-comprehensive-011 also shown in (e) and (f)
Fig 7: Profiling results for VP8 Video Decoder operations
Simmilarly also analyse the VP8N decoder with its profiling data which is show in fig 7.
IV. A PRACTICAL VIDEO COMMUNICATION IMPLEMENTATION ON MOBILE
DEVICES
We have modified VP8 Video Codec for video communication system, for both PCs and mobile
devices using the complexity-reduction algorithms presented in the previous section. Currently, the Mobile
Device versions support the majority of the Handheld PCs and Pocket PCs which are based on Strong ARM,
XScale, MIPS or SH3 processors, and support several types of digital cameras, including HP Jornada pocket
camera, FlyCAM-CF camera, FlyJacket iCAM, and Pretec CompactCamera.VP8 Video codec is suitable for
this mobile multimedia communication applications.
Figure 8: Video communication system architecture
V. CONCLUSIONS
In this paper, a low-complexity VP8 video coding scheme is proposed for practical video
communication applications. Similar to the other Video codecs encoder, motion estimation, DCT and
quantization are the three primary computation-consuming modules in the video encoder. In this VP8
architecture, the complexity of motion estimation is significantly reduced by the predictive algorithm in
comparison to other fast motion estimation methods, the integer DCT approach is much faster than conventional
Emerging Vp8 Video Codec For Mobile Devices
28
floating-point DCT, and the DCT/Quantizer bypass algorithm can substantially save resources by skipping some
of the DCT and quantization calculations. Experimental results show that the PSNR degradation is small and
significant computation reduction is achieved. The proposed techniques have applications where low-
complexity computing is required, and is especially suitable for mobile devices. Future directions may include
offering error resilience for wireless or unreliable packet-based transport networks and improvements in
compression efficiency and picture quality
REFERENCES
[1] J. Bankoski, P. Wilkins, Y.Xu, “VP8 Data format and Decoding Guide,” http://www.ietf.org/internet-
draft/draft-bankoski-vp8-bitstream-01.txt,Jan 2011
[2] S. Zhu and K.K Ma, A new diamond search algorithm for fast block-matching motion estimation, IEEE
Trans. On Image Processing, vol. 9, no. 2, pp.287-290, Feb 2000.
[3] M.T. Sun, I.M. Pao, Statistical Computation of Discrete Cosine Transform in Video Encoders, Journal
of Visual Communication and Image Representation, vol. 9, no. 2, Jun 1998, pp.163-170
[4] ISO/IEC JTC1/SC29/WG11 N3312 Coding of moving pictures and audio March
2000/Noordwijkerhout
[5] Bankoski, J., Wilkins, P., and Xu, Y., Technical overview of vp8, an open source video codec for the
web," (2011).
[6] “Video Coding for Low Bit Rate Communication,” ITU-T, ITU-T Recommendation H.263 version 1,
1995.
[7] Francesca De Simone, Lutz Goldmann, Jong-Seok Lee, and Touradj Ebrahimi Ecole Polytechnique
F_ed_erale de Lausanne (EPFL), Lausanne, Switzerland “Performance analysis of VP8 image and
video compression based on subjective evaluations”
[8] http://www.compression.ru/video/codec comparison/h264 2010/vp8 vs h264.html."
[9] Sean A. Cassidy “An Analysis of VP8, a New Video Codec for the Web”
[10] Y.J. Chen, S. Oraintara and T. Nguyen, VIDEO COMPRESSION USING INTEGER DCT, ICIP 2000,
Vancouver, Canada.
Basavaraju.S holds the Master degree from VTU, Karnataka, and currently pursuing PhD at PRIST
University Thanjavur, India, and Earlier worked at several software industries in signal and multimedia
processing domain and currently working as Assistant professor in Sapthagiri College of engineering,
Bangalore.
Dr B Sivakumar holds PhD degree from Anna University Tamilnadu, and currently working as
Professor and head of the Telecom dept at Dr AIT.

More Related Content

What's hot

Fpga based efficient multiplier for image processing applications using recur...
Fpga based efficient multiplier for image processing applications using recur...Fpga based efficient multiplier for image processing applications using recur...
Fpga based efficient multiplier for image processing applications using recur...VLSICS Design
 
IRJET-Error Detection and Correction using Turbo Codes
IRJET-Error Detection and Correction using Turbo CodesIRJET-Error Detection and Correction using Turbo Codes
IRJET-Error Detection and Correction using Turbo CodesIRJET Journal
 
haffman coding DCT transform
haffman coding DCT transformhaffman coding DCT transform
haffman coding DCT transformaniruddh Tyagi
 
A New Bit Split and Interleaved Channel Coding for MIMO Decoder
A New Bit Split and Interleaved Channel Coding for MIMO DecoderA New Bit Split and Interleaved Channel Coding for MIMO Decoder
A New Bit Split and Interleaved Channel Coding for MIMO DecoderIJARBEST JOURNAL
 
Hardware Architecture of Complex K-best MIMO Decoder
Hardware Architecture of Complex K-best MIMO DecoderHardware Architecture of Complex K-best MIMO Decoder
Hardware Architecture of Complex K-best MIMO DecoderCSCJournals
 
FPGA Implementation of Efficient Viterbi Decoder for Multi-Carrier Systems
FPGA Implementation of Efficient Viterbi Decoder for  Multi-Carrier SystemsFPGA Implementation of Efficient Viterbi Decoder for  Multi-Carrier Systems
FPGA Implementation of Efficient Viterbi Decoder for Multi-Carrier SystemsIJMER
 
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODER
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODERHARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODER
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODERcscpconf
 
IRJET- Color Image Compression using Canonic Signed Digit and Block based...
IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...
IRJET- Color Image Compression using Canonic Signed Digit and Block based...IRJET Journal
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_Efficiencyaniruddh Tyagi
 
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...IJERD Editor
 
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP Networks
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP NetworksMulticasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP Networks
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP NetworksEditor IJMTER
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Building impedance matching network based on s parameter from manufacturer
Building impedance matching network based on s parameter from manufacturerBuilding impedance matching network based on s parameter from manufacturer
Building impedance matching network based on s parameter from manufacturerJournal Papers
 
06 ijece anil kumar_sahu edit sat
06 ijece anil kumar_sahu edit sat06 ijece anil kumar_sahu edit sat
06 ijece anil kumar_sahu edit satIAESIJEECS
 
Dynamic Texture Coding using Modified Haar Wavelet with CUDA
Dynamic Texture Coding using Modified Haar Wavelet with CUDADynamic Texture Coding using Modified Haar Wavelet with CUDA
Dynamic Texture Coding using Modified Haar Wavelet with CUDAIJERA Editor
 

What's hot (20)

Fpga based efficient multiplier for image processing applications using recur...
Fpga based efficient multiplier for image processing applications using recur...Fpga based efficient multiplier for image processing applications using recur...
Fpga based efficient multiplier for image processing applications using recur...
 
IRJET-Error Detection and Correction using Turbo Codes
IRJET-Error Detection and Correction using Turbo CodesIRJET-Error Detection and Correction using Turbo Codes
IRJET-Error Detection and Correction using Turbo Codes
 
haffman coding DCT transform
haffman coding DCT transformhaffman coding DCT transform
haffman coding DCT transform
 
A New Bit Split and Interleaved Channel Coding for MIMO Decoder
A New Bit Split and Interleaved Channel Coding for MIMO DecoderA New Bit Split and Interleaved Channel Coding for MIMO Decoder
A New Bit Split and Interleaved Channel Coding for MIMO Decoder
 
40120140504006
4012014050400640120140504006
40120140504006
 
Hardware Architecture of Complex K-best MIMO Decoder
Hardware Architecture of Complex K-best MIMO DecoderHardware Architecture of Complex K-best MIMO Decoder
Hardware Architecture of Complex K-best MIMO Decoder
 
FPGA Implementation of Efficient Viterbi Decoder for Multi-Carrier Systems
FPGA Implementation of Efficient Viterbi Decoder for  Multi-Carrier SystemsFPGA Implementation of Efficient Viterbi Decoder for  Multi-Carrier Systems
FPGA Implementation of Efficient Viterbi Decoder for Multi-Carrier Systems
 
Ff34970973
Ff34970973Ff34970973
Ff34970973
 
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODER
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODERHARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODER
HARDWARE SOFTWARE CO-SIMULATION OF MOTION ESTIMATION IN H.264 ENCODER
 
IRJET- Color Image Compression using Canonic Signed Digit and Block based...
IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...IRJET-  	  Color Image Compression using Canonic Signed Digit and Block based...
IRJET- Color Image Compression using Canonic Signed Digit and Block based...
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_Efficiency
 
encrption.PDF
encrption.PDFencrption.PDF
encrption.PDF
 
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
 
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP Networks
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP NetworksMulticasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP Networks
Multicasting Of Adaptively-Encoded MPEG4 Over Qos-Cognizant IP Networks
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Building impedance matching network based on s parameter from manufacturer
Building impedance matching network based on s parameter from manufacturerBuilding impedance matching network based on s parameter from manufacturer
Building impedance matching network based on s parameter from manufacturer
 
Resampling
ResamplingResampling
Resampling
 
intro_dgital_TV
intro_dgital_TVintro_dgital_TV
intro_dgital_TV
 
06 ijece anil kumar_sahu edit sat
06 ijece anil kumar_sahu edit sat06 ijece anil kumar_sahu edit sat
06 ijece anil kumar_sahu edit sat
 
Dynamic Texture Coding using Modified Haar Wavelet with CUDA
Dynamic Texture Coding using Modified Haar Wavelet with CUDADynamic Texture Coding using Modified Haar Wavelet with CUDA
Dynamic Texture Coding using Modified Haar Wavelet with CUDA
 

Viewers also liked

International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Historia Natural de la enfermedad
Historia Natural de la enfermedadHistoria Natural de la enfermedad
Historia Natural de la enfermedadrozoud
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 

Viewers also liked (8)

International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Historia Natural de la enfermedad
Historia Natural de la enfermedadHistoria Natural de la enfermedad
Historia Natural de la enfermedad
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 

Similar to International Journal of Engineering Research and Development

IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...ijma
 
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODING
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODINGNEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODING
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODINGcscpconf
 
absorption, Cu2+ : glass, emission, excitation, XRD
absorption, Cu2+ : glass, emission, excitation, XRDabsorption, Cu2+ : glass, emission, excitation, XRD
absorption, Cu2+ : glass, emission, excitation, XRDIJERA Editor
 
Improved Error Detection and Data Recovery Architecture for Motion Estimation...
Improved Error Detection and Data Recovery Architecture for Motion Estimation...Improved Error Detection and Data Recovery Architecture for Motion Estimation...
Improved Error Detection and Data Recovery Architecture for Motion Estimation...IJERA Editor
 
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...ijma
 
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...ijma
 
An Overview on Multimedia Transcoding Techniques on Streaming Digital Contents
An Overview on Multimedia Transcoding Techniques on Streaming Digital ContentsAn Overview on Multimedia Transcoding Techniques on Streaming Digital Contents
An Overview on Multimedia Transcoding Techniques on Streaming Digital Contentsidescitation
 
Low complexity video coding for sensor network
Low complexity video coding for sensor networkLow complexity video coding for sensor network
Low complexity video coding for sensor networkeSAT Publishing House
 
Low complexity video coding for sensor network
Low complexity video coding for sensor networkLow complexity video coding for sensor network
Low complexity video coding for sensor networkeSAT Journals
 
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...IRJET Journal
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_Efficiencyaniruddh Tyagi
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyAniruddh Tyagi
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyaniruddh Tyagi
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_EfficiencyAniruddh Tyagi
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyaniruddh Tyagi
 
Performance Enhancement for Quality Inter-Layer Scalable Video Coding
Performance Enhancement for Quality Inter-Layer Scalable Video CodingPerformance Enhancement for Quality Inter-Layer Scalable Video Coding
Performance Enhancement for Quality Inter-Layer Scalable Video CodingIJCSIS Research Publications
 
Performance and Analysis of Video Compression Using Block Based Singular Valu...
Performance and Analysis of Video Compression Using Block Based Singular Valu...Performance and Analysis of Video Compression Using Block Based Singular Valu...
Performance and Analysis of Video Compression Using Block Based Singular Valu...IJMER
 
Fpga implementation of (15,7) bch encoder and decoder for text message
Fpga implementation of (15,7) bch encoder and decoder for text messageFpga implementation of (15,7) bch encoder and decoder for text message
Fpga implementation of (15,7) bch encoder and decoder for text messageeSAT Journals
 
implementation of area efficient high speed eddr architecture
implementation of area efficient high speed eddr architectureimplementation of area efficient high speed eddr architecture
implementation of area efficient high speed eddr architectureKumar Goud
 

Similar to International Journal of Engineering Research and Development (20)

IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
 
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODING
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODINGNEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODING
NEW IMPROVED 2D SVD BASED ALGORITHM FOR VIDEO CODING
 
absorption, Cu2+ : glass, emission, excitation, XRD
absorption, Cu2+ : glass, emission, excitation, XRDabsorption, Cu2+ : glass, emission, excitation, XRD
absorption, Cu2+ : glass, emission, excitation, XRD
 
Improved Error Detection and Data Recovery Architecture for Motion Estimation...
Improved Error Detection and Data Recovery Architecture for Motion Estimation...Improved Error Detection and Data Recovery Architecture for Motion Estimation...
Improved Error Detection and Data Recovery Architecture for Motion Estimation...
 
Y04507139147
Y04507139147Y04507139147
Y04507139147
 
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
 
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
IMPROVING PSNR AND PROCESSING SPEED FOR HEVC USING HYBRID PSO FOR INTRA FRAME...
 
An Overview on Multimedia Transcoding Techniques on Streaming Digital Contents
An Overview on Multimedia Transcoding Techniques on Streaming Digital ContentsAn Overview on Multimedia Transcoding Techniques on Streaming Digital Contents
An Overview on Multimedia Transcoding Techniques on Streaming Digital Contents
 
Low complexity video coding for sensor network
Low complexity video coding for sensor networkLow complexity video coding for sensor network
Low complexity video coding for sensor network
 
Low complexity video coding for sensor network
Low complexity video coding for sensor networkLow complexity video coding for sensor network
Low complexity video coding for sensor network
 
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...
IRJET- A Hybrid Image and Video Compression of DCT and DWT Techniques for H.2...
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_Efficiency
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiency
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiency
 
Transrating_Efficiency
Transrating_EfficiencyTransrating_Efficiency
Transrating_Efficiency
 
IBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiencyIBCBarconetTransratingEfficiency
IBCBarconetTransratingEfficiency
 
Performance Enhancement for Quality Inter-Layer Scalable Video Coding
Performance Enhancement for Quality Inter-Layer Scalable Video CodingPerformance Enhancement for Quality Inter-Layer Scalable Video Coding
Performance Enhancement for Quality Inter-Layer Scalable Video Coding
 
Performance and Analysis of Video Compression Using Block Based Singular Valu...
Performance and Analysis of Video Compression Using Block Based Singular Valu...Performance and Analysis of Video Compression Using Block Based Singular Valu...
Performance and Analysis of Video Compression Using Block Based Singular Valu...
 
Fpga implementation of (15,7) bch encoder and decoder for text message
Fpga implementation of (15,7) bch encoder and decoder for text messageFpga implementation of (15,7) bch encoder and decoder for text message
Fpga implementation of (15,7) bch encoder and decoder for text message
 
implementation of area efficient high speed eddr architecture
implementation of area efficient high speed eddr architectureimplementation of area efficient high speed eddr architecture
implementation of area efficient high speed eddr architecture
 

More from IJERD Editor

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksIJERD Editor
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEIJERD Editor
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...IJERD Editor
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’IJERD Editor
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignIJERD Editor
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationIJERD Editor
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...IJERD Editor
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRIJERD Editor
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingIJERD Editor
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string valueIJERD Editor
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...IJERD Editor
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeIJERD Editor
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...IJERD Editor
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraIJERD Editor
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...IJERD Editor
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...IJERD Editor
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingIJERD Editor
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...IJERD Editor
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart GridIJERD Editor
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderIJERD Editor
 

More from IJERD Editor (20)

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACE
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding Design
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and Verification
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive Manufacturing
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string value
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF Dxing
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart Grid
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powder
 

Recently uploaded

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 

Recently uploaded (20)

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 

International Journal of Engineering Research and Development

  • 1. International Journal of Engineering Research and Development e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com Volume 10, Issue 3 (March 2014), PP.22-28 22 Emerging Vp8 Video Codec For Mobile Devices #1 Basavaraju.S, #2 Dr B .Siva Kumar #1 Assist prof, ECE Dept SCE, Bangalore #2 Prof and HOD of Telecom Dept, Dr AIT, Bangalore Abstract:- Multimedia has become an inevitable part of our daily lives. It finds application in various areas, from education to entertainment. The growth of internet and mobile communication has also increased the use of multimedia applications. Digital video applications for network, wireless-enabled and mobile devices pose a range of constraints such as low channel bandwidth, limited storage capacity and low cost. This has created a need for high quality video at low bitrates. To meet this need, several compression algorithms have been developed for coding video content. Depending upon the desired quality and information throughput, compression techniques call for a large amount of processing and complex coding tools. This increase in complexity calls for an aggressive optimization of video codec’s in order to meet the real time targets on low- power and cost sensitive devices. Real-time software-based video codec has been widely used onPCs with relatively strong computing capability. However,mobile devices, such as Pocket PCs and Handheld PCs, still suffer from weak computational power, short battery lifetime and limited display capability. We developed a practical lowcomplexity real-time video codec for mobile devices. Several methods that can significantly reduce the computational cost are adopted in this codec and described in this paper, including apredictive algorithm for motion estimation, the integer discrete cosine transform (IntDCT), and a DCT/Quantizer bypass technique. A real-time video communication implementation of the proposed codec is also introduced. Experiments show that substantial computation reduction is achieved while the loss in video quality is negligible. The proposed codec is very suitable for scenarios where low-complexity computing is required.. Keywords:- VP8, Video, ARM, NEON, SIMD, ME, MC I. INTRODUCTION Recent years have witnessed the rapid development of the mobile devices with wireless connections. With the continuing improvement of storage capacity and computing capability, software-based video coding on mobile devices is becoming economically viable. The emergence of digital cameras for mobile devices also provides conditions for real-time video communication.Earlier H.263 [1] is an ITU-T recommended video coding standard and has been broadly used in video conferencing on PCs. However, the conventional H.263 encoder is still computationally expensive and practically not feasible for mobile devices. Simillarly H.264 its improved version but still facing same kind of problem in several scenarios.In the past years, research on video compression is focused on improving rate-distortion performance. In order to achieve higher coding efficiency, video coding techniques trend to be more elaborate and complex. This leads to higher requirements of the computing capability. More and more users are seeking real-time video communication services with the rapid development of wired and wireless networks. However, real-time software-based video encoding introduces a tradeoff between compression efficiency and complexity. How to reduce the computational requirements as much as possible without obviously compromising the video compression efficiency is one of the key issues in research on video communication. For this reason, we investigated the google-ON2 technology released new video codec VP8, And also analyze the resource distribution of the VP8 video encoder which uses integer-pixel full search on motion estimation and floating-point DCT. Figure 1 shows the distribution of the execution time for a testing sequence. In this figure, motion estimation, DCT/IDCT and quantization which utilize 73%, 16% and 4% of the execution time respectively are the three primary computationally-intensive components. Thus, the goal of this work clearly is to improve these three components. Fig 1: Exectution time distribution for test sequence
  • 2. Emerging Vp8 Video Codec For Mobile Devices 23 II. APPROACHES Figure 2 shows the diagram of the proposed VP8 video encoder. The structure is similar to that of the any video encoder and is compatible with the VP8 Video bitstream syntax. The Rate Control component enables the output bit rates to be adaptive to the target. Motion estimation, DCT/IDCT and Quantizer are three critical modules which consume the majority of the execution time in this architecture. The rest of this section will introduce approaches that can speed up the execution of these three modules. 2.1 Low-Complexity Motion Estimation Algorithm Motion estimation (ME) is efficient in eliminating temporal redundancy between adjacent frames. At the same time, motion estimation is also regarded as a vital component in a video encoder as it consumes the largest amount of computational resources. There are significant advances in fast motion estimation techniques in recent years for alleviating the heavy computation load, such as the diamond search (DS) [2], the small-cross- diamond search (SCSD) [3] and the predictive algorithm (PA) [4]. The complexity of the PA algorithm is the lowest among these fast motion estimation approaches, and its time is relatively constant as there is no recursive searches in this algorithm. We analyze the PA algorithm and propose an appropriate number of candidate predictors and an adaptive motion vector (MV) refinement method. The algorithm utilizes the characteristics that macroblocks (MB) close to the current MB, in time and in space, are highly probable to have the same motion. Instead of testing all possible MVs as full search (FS) does, the previously calculated MVs of the contiguous MBs comprise a set of candidate predictors, then the best candidate predictor, i.e. the MV with the lowest sum of absolute differences (SAD), is corrected by the refinement phase. In our investigation, the candidate predictors set which is composed of three MVs plus a null vector, as shown in Figure 3, achieved a good trade-off between computational savings and performance loss Fig 2: The structure of the proposed Encoder Fig 3: The candidate predictors set: two spatial predictors belonging to the same frame, one temporal predictor belonging to the previous frame and a null vector. The goal of the refinement phase is to make the best predictor approximate to the real motion. The method of PA is to search the optimal MV at the eight points around the best predictor. An adaptive search approach is proposed in this paper. The SAD of the best predictor is evaluated for choosing the testing points. The refinement processes are divided into the following three cases according to the comparison results of the SAD and two thresholds, TH1 and TH2, as shown in Figure 4. Case 1: SAD <= TH1, only four points on the cross directions are tested; Case 2: TH1 < SAD <= TH2, eight points around the best Predictor are covered; Case 3: SAD > TH2, eight points which are two pixels away from the best predictor are involved. In some circumstances, for example when scene changes or there is a sudden motion change, the best predictor is not reliable, which can be indicated by a large SAD value. Increasing the search area, as shown in case 3, addresses this issue. Suitable values are TH1=4000 and TH2=6000 according to our experiments on
  • 3. Emerging Vp8 Video Codec For Mobile Devices 24 many sample sequences. Table 1 shows the distribution of refinement vectors, which indicates that case 1 covers over 95% of the cases. Figure 4: Refinement vectors in three different cases Consequently, the average number of SAD operations per MB shown in this table is fairly small. Table 2 compares the performance between PA and FS. Using the PA method, a 18.5 to 20-fold speed increase on motion estimation is achieved whilst the average Peak Signal-to-Noise Ratio (PSNR) degradation is marginal. Table 1: Distribution of refinement vectors and average number of SAD operations per MB for the QCIF sequences coded at 15 fps and 56 kbps Table 2: Average PSNR degradation and speed improvement ratio of the ME module comparing to FS with a search distance of 15 pixels 2.2 Integer DCT and inverse DCT The discrete cosine transform (DCT) is widely used in video coding standards such asVP8, H.263,H264 and MPEG-4 [5]. The conventional floating-point DCT (FloatDCT) contains substantial floating- point operations, especially the multiplications which require heavy computation and power resources in mobile devices. An Integer DCT (IntDCT) [6] method that can greatly increase the efficiency is adopted in the proposed codec. The implementation of IntDCT is in the form of shift operations and additions, and all internal nodes have finite precision. An 8-pt IntDCT scheme with a complexity of 45 additions and 18 shift operations provides comparable performance to FloatDCT and is suitable for mobile scenarios. In the proposed codec, the forward IntDCT is used in the encoder followed by the inverse IntDCT in the decoder. The PSNR degradation of this scheme is only about 0.2 to 0.5 dB in contrast to FloatDCT and inverse FloatDCT, whereas about 2.6 to 3.5-fold speed increase is achieved as shown in Table 3. 2.3 DCT/Quantizer Bypass Algorithm Besides the motion estimation and DCT components, quantization which involves multiplications also requires significant computations It is possible to skip some of the DCT and quantization calculations [7] [8]. The DCT/Quantizer. Bypass algorithm is a straightforward and efficient method to reduce computations with virtually no visible loss in video fidelity. Table 3: Average PSNR degradation and speed improvement ratio of DCT/IDCT module for the QCIF samples coded at 15 fps and 56 kbps
  • 4. Emerging Vp8 Video Codec For Mobile Devices 25 The algorithm is based on two observations: first, for most sequences at low bit rates, a significant portion of MBs have DCT coefficients that are all reduced to zero after quantization; secondly, in the majority of the inter-macroblocks, the DC coefficient of DCT has a larger magnitude than all the other coefficients in a transformed block. Since the coefficients in a block will quantize to zeros only if their magnitudes are less than 2Q, where the variable Q is the quantization parameter, it is possible to predict all-zero quantized (AZQ) MBs using the DC coefficient, and the DCT and quantization calculations associated with those MBs can be eliminated. A substantial saving can be achieved in this way.In the original algorithm, a macroblock is regarded as AZQ if all DC coefficients of four 8x8 luminance blocks in the MB have magnitudes less than 2Q. As concluded in that paper, under a few conditions, the fidelity degradation is visible and manifests itself as chrominance changes while no distortion appears in the luminance. This is because AZQ blocks are predicted solely on luminance values, which may be an inaccurate indicator for chrominance blocks. In our proposed scheme, chrominance values are taken into account to make the criterion more stringent. Since the DC term corresponds to 1/8 sum of the values in the 8x8 block, two criterions are defined as follows. A macroblock is identified as AZQ only when all four luminance blocks satisfy criterion 1 and two chrominance blocks satisfy criterion 2. Suitable parameters in practice are α=8 and β=16, which tighten the condition slightly. Although these more stringent criteria will miss some macroblocks that should be identified as AZQ, they also reduce the number of incorrectly selected macroblocks, which can degrade the final picture fidelity. Meanwhile, the chrominance quality can also be preserved.The DCT/Quantizer bypass process is only performed on inter-macroblocks, because intra-macroblocks are less likely to satisfy the condition that the DC coefficient has the largest magnitude. Table 4 shows that substantial DCT and quantization calculations are skipped while the PSNR degradation is marginal. In the table, a negative degradation actually means PSNR improvement. This is possible because not only computations are reduced but also the bits required to code those macroblocks are reduced, and then the saved bits improve the overall PSNR. Table 4: Percentage of DCT/Quantizer bypassed and average PSNR degradation for the QCIF samples coded at 15 fps and 56 kbps III. EXPERIMENTAL RESULTS To examine the effectiveness of the above mentioned algorithms on reducing computation time and preserving video quality, we chose sequences with vastly varying content from standard VP8 test video clips to test the performance of the overall encoder. The results of the Miss_america and Carphone sequences are shown in this paper. The Miss_america sequence represents scenes with little head-and-shoulder movements and a still background. The Carphone sequence has large facial motion and a fast moving background. Both sequences are in QCIF format and encoded at 15 frames per second and 56 kbps. Figure 5 shows the PSNR performance of the proposed encoder and an unoptimized encoder which uses full search on motion estimation and the FloatDCT without DCT/Quantizer bypass method. From the experimental result, the two PSNR curves are close in each figure and the proposed encoder provides relatively satisfactory performance in different video sequences with low and high motion activities
  • 5. Emerging Vp8 Video Codec For Mobile Devices 26 Figure 5: PSNR comparison between the unoptimized encoder and the proposed encoder, average PSNR degradations are 0.68 dB and 0.47 dB respectively Four reconstructed frames encoded by the unoptimized encoder and by the proposed encoder are shown in Figure 6 for subjective evaluation. No significant subjective degradation is present using the proposed encoder. The unoptimized encoder and the proposed encoder were also tested on mobile devices. Table 5 shows the maximum frames rates achieved on platform which possesses a 206 MHz Strong ARM processor and 32MB RAM. From the experimental results, we can see that the computational cost has been significantly reduced using the proposed methods and the resultant frame rate is worthy of consideration for mobile devices. Table 5: Maximum frame rates (fps) obtained on ARM platform
  • 6. Emerging Vp8 Video Codec For Mobile Devices 27 (e) (f) Figure 6: Miss_am frame number 50 and carphone frame number 58 coded by unoptimized encoder (a) (c) and by proposed encoder (b) (d), PSNR degradations are 0.51 dB and 0.45 dB respectively. Simmilarly VP8 Video test steam VP80-00-comprehensive-011 also shown in (e) and (f) Fig 7: Profiling results for VP8 Video Decoder operations Simmilarly also analyse the VP8N decoder with its profiling data which is show in fig 7. IV. A PRACTICAL VIDEO COMMUNICATION IMPLEMENTATION ON MOBILE DEVICES We have modified VP8 Video Codec for video communication system, for both PCs and mobile devices using the complexity-reduction algorithms presented in the previous section. Currently, the Mobile Device versions support the majority of the Handheld PCs and Pocket PCs which are based on Strong ARM, XScale, MIPS or SH3 processors, and support several types of digital cameras, including HP Jornada pocket camera, FlyCAM-CF camera, FlyJacket iCAM, and Pretec CompactCamera.VP8 Video codec is suitable for this mobile multimedia communication applications. Figure 8: Video communication system architecture V. CONCLUSIONS In this paper, a low-complexity VP8 video coding scheme is proposed for practical video communication applications. Similar to the other Video codecs encoder, motion estimation, DCT and quantization are the three primary computation-consuming modules in the video encoder. In this VP8 architecture, the complexity of motion estimation is significantly reduced by the predictive algorithm in comparison to other fast motion estimation methods, the integer DCT approach is much faster than conventional
  • 7. Emerging Vp8 Video Codec For Mobile Devices 28 floating-point DCT, and the DCT/Quantizer bypass algorithm can substantially save resources by skipping some of the DCT and quantization calculations. Experimental results show that the PSNR degradation is small and significant computation reduction is achieved. The proposed techniques have applications where low- complexity computing is required, and is especially suitable for mobile devices. Future directions may include offering error resilience for wireless or unreliable packet-based transport networks and improvements in compression efficiency and picture quality REFERENCES [1] J. Bankoski, P. Wilkins, Y.Xu, “VP8 Data format and Decoding Guide,” http://www.ietf.org/internet- draft/draft-bankoski-vp8-bitstream-01.txt,Jan 2011 [2] S. Zhu and K.K Ma, A new diamond search algorithm for fast block-matching motion estimation, IEEE Trans. On Image Processing, vol. 9, no. 2, pp.287-290, Feb 2000. [3] M.T. Sun, I.M. Pao, Statistical Computation of Discrete Cosine Transform in Video Encoders, Journal of Visual Communication and Image Representation, vol. 9, no. 2, Jun 1998, pp.163-170 [4] ISO/IEC JTC1/SC29/WG11 N3312 Coding of moving pictures and audio March 2000/Noordwijkerhout [5] Bankoski, J., Wilkins, P., and Xu, Y., Technical overview of vp8, an open source video codec for the web," (2011). [6] “Video Coding for Low Bit Rate Communication,” ITU-T, ITU-T Recommendation H.263 version 1, 1995. [7] Francesca De Simone, Lutz Goldmann, Jong-Seok Lee, and Touradj Ebrahimi Ecole Polytechnique F_ed_erale de Lausanne (EPFL), Lausanne, Switzerland “Performance analysis of VP8 image and video compression based on subjective evaluations” [8] http://www.compression.ru/video/codec comparison/h264 2010/vp8 vs h264.html." [9] Sean A. Cassidy “An Analysis of VP8, a New Video Codec for the Web” [10] Y.J. Chen, S. Oraintara and T. Nguyen, VIDEO COMPRESSION USING INTEGER DCT, ICIP 2000, Vancouver, Canada. Basavaraju.S holds the Master degree from VTU, Karnataka, and currently pursuing PhD at PRIST University Thanjavur, India, and Earlier worked at several software industries in signal and multimedia processing domain and currently working as Assistant professor in Sapthagiri College of engineering, Bangalore. Dr B Sivakumar holds PhD degree from Anna University Tamilnadu, and currently working as Professor and head of the Telecom dept at Dr AIT.