raw.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
  3. * Copyright (c) 2002-2007, Professor Benoit Macq
  4. * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
  5. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  18. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. * POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #include "opj_includes.h"
  30. /*
  31. ==========================================================
  32. local functions
  33. ==========================================================
  34. */
  35. /*
  36. ==========================================================
  37. RAW encoding interface
  38. ==========================================================
  39. */
  40. opj_raw_t* raw_create(void) {
  41. opj_raw_t *raw = (opj_raw_t*)opj_malloc(sizeof(opj_raw_t));
  42. return raw;
  43. }
  44. void raw_destroy(opj_raw_t *raw) {
  45. if(raw) {
  46. opj_free(raw);
  47. }
  48. }
  49. int raw_numbytes(opj_raw_t *raw) {
  50. return raw->bp - raw->start;
  51. }
  52. void raw_init_dec(opj_raw_t *raw, unsigned char *bp, int len) {
  53. raw->start = bp;
  54. raw->lenmax = len;
  55. raw->len = 0;
  56. raw->c = 0;
  57. raw->ct = 0;
  58. }
  59. int raw_decode(opj_raw_t *raw) {
  60. int d;
  61. if (raw->ct == 0) {
  62. raw->ct = 8;
  63. if (raw->len == raw->lenmax) {
  64. raw->c = 0xff;
  65. } else {
  66. if (raw->c == 0xff) {
  67. raw->ct = 7;
  68. }
  69. raw->c = *(raw->start + raw->len);
  70. raw->len++;
  71. }
  72. }
  73. raw->ct--;
  74. d = (raw->c >> raw->ct) & 0x01;
  75. return d;
  76. }