• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 Google Inc. All Rights Reserved.
2 //
3 // This code is licensed under the same terms as WebM:
4 //  Software License Agreement:  http://www.webmproject.org/license/software/
5 //  Additional IP Rights Grant:  http://www.webmproject.org/license/additional/
6 // -----------------------------------------------------------------------------
7 //
8 // TODO(skal): implement gradient smoothing.
9 //
10 // Author: Skal (pascal.massimino@gmail.com)
11 
12 #include "./quant_levels_dec.h"
13 
14 #if defined(__cplusplus) || defined(c_plusplus)
15 extern "C" {
16 #endif
17 
DequantizeLevels(uint8_t * const data,int width,int height)18 int DequantizeLevels(uint8_t* const data, int width, int height) {
19   if (data == NULL || width <= 0 || height <= 0) return 0;
20   (void)data;
21   (void)width;
22   (void)height;
23   return 1;
24 }
25 
26 #if defined(__cplusplus) || defined(c_plusplus)
27 }    // extern "C"
28 #endif
29