You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
5.4KB

  1. /*
  2. * FFV1 codec for libavcodec
  3. *
  4. * Copyright (c) 2003-2012 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_FFV1_H
  23. #define AVCODEC_FFV1_H
  24. #include <stdint.h>
  25. #include "avcodec.h"
  26. #include "bitstream.h"
  27. #include "put_bits.h"
  28. #include "rangecoder.h"
  29. #define MAX_PLANES 4
  30. #define CONTEXT_SIZE 32
  31. #define MAX_QUANT_TABLES 8
  32. #define MAX_CONTEXT_INPUTS 5
  33. #define AC_GOLOMB_RICE 0
  34. #define AC_RANGE_DEFAULT_TAB 1
  35. #define AC_RANGE_CUSTOM_TAB 2
  36. extern const uint8_t ff_log2_run[41];
  37. extern const int8_t ffv1_quant5_10bit[256];
  38. extern const int8_t ffv1_quant5[256];
  39. extern const int8_t ffv1_quant9_10bit[256];
  40. extern const int8_t ffv1_quant11[256];
  41. extern const uint8_t ffv1_ver2_state[256];
  42. typedef struct VlcState {
  43. int16_t drift;
  44. uint16_t error_sum;
  45. int8_t bias;
  46. uint8_t count;
  47. } VlcState;
  48. typedef struct PlaneContext {
  49. int16_t quant_table[MAX_CONTEXT_INPUTS][256];
  50. int quant_table_index;
  51. int context_count;
  52. uint8_t (*state)[CONTEXT_SIZE];
  53. VlcState *vlc_state;
  54. uint8_t interlace_bit_state[2];
  55. } PlaneContext;
  56. #define MAX_SLICES 256
  57. typedef struct FFV1Context {
  58. AVClass *class;
  59. AVCodecContext *avctx;
  60. RangeCoder c;
  61. BitstreamContext bc;
  62. PutBitContext pb;
  63. uint64_t rc_stat[256][2];
  64. uint64_t (*rc_stat2[MAX_QUANT_TABLES])[32][2];
  65. int version;
  66. int minor_version;
  67. int width, height;
  68. int chroma_planes;
  69. int chroma_h_shift, chroma_v_shift;
  70. int transparency;
  71. int flags;
  72. int picture_number;
  73. int key_frame;
  74. const AVFrame *frame;
  75. AVFrame *last_picture;
  76. AVFrame *cur;
  77. int plane_count;
  78. int ac; // 1 = range coder <-> 0 = golomb rice
  79. int ac_byte_count; // number of bytes used for AC coding
  80. PlaneContext plane[MAX_PLANES];
  81. int16_t quant_table[MAX_CONTEXT_INPUTS][256];
  82. int16_t quant_tables[MAX_QUANT_TABLES][MAX_CONTEXT_INPUTS][256];
  83. int context_count[MAX_QUANT_TABLES];
  84. uint8_t state_transition[256];
  85. uint8_t (*initial_states[MAX_QUANT_TABLES])[32];
  86. int run_index;
  87. int colorspace;
  88. int16_t *sample_buffer;
  89. int ec;
  90. int slice_damaged;
  91. int key_frame_ok;
  92. int context_model;
  93. int bits_per_raw_sample;
  94. int packed_at_lsb;
  95. int gob_count;
  96. int quant_table_count;
  97. struct FFV1Context *slice_context[MAX_SLICES];
  98. int slice_count;
  99. int num_v_slices;
  100. int num_h_slices;
  101. int slice_width;
  102. int slice_height;
  103. int slice_x;
  104. int slice_y;
  105. } FFV1Context;
  106. static av_always_inline int fold(int diff, int bits)
  107. {
  108. if (bits == 8)
  109. diff = (int8_t)diff;
  110. else {
  111. diff += 1 << (bits - 1);
  112. diff &= (1 << bits) - 1;
  113. diff -= 1 << (bits - 1);
  114. }
  115. return diff;
  116. }
  117. static inline int predict(int16_t *src, int16_t *last)
  118. {
  119. const int LT = last[-1];
  120. const int T = last[0];
  121. const int L = src[-1];
  122. return mid_pred(L, L + T - LT, T);
  123. }
  124. static inline int get_context(PlaneContext *p, int16_t *src,
  125. int16_t *last, int16_t *last2)
  126. {
  127. const int LT = last[-1];
  128. const int T = last[0];
  129. const int RT = last[1];
  130. const int L = src[-1];
  131. if (p->quant_table[3][127]) {
  132. const int TT = last2[0];
  133. const int LL = src[-2];
  134. return p->quant_table[0][(L - LT) & 0xFF] +
  135. p->quant_table[1][(LT - T) & 0xFF] +
  136. p->quant_table[2][(T - RT) & 0xFF] +
  137. p->quant_table[3][(LL - L) & 0xFF] +
  138. p->quant_table[4][(TT - T) & 0xFF];
  139. } else
  140. return p->quant_table[0][(L - LT) & 0xFF] +
  141. p->quant_table[1][(LT - T) & 0xFF] +
  142. p->quant_table[2][(T - RT) & 0xFF];
  143. }
  144. static inline void update_vlc_state(VlcState *const state, const int v)
  145. {
  146. int drift = state->drift;
  147. int count = state->count;
  148. state->error_sum += FFABS(v);
  149. drift += v;
  150. if (count == 128) { // FIXME: variable
  151. count >>= 1;
  152. drift >>= 1;
  153. state->error_sum >>= 1;
  154. }
  155. count++;
  156. if (drift <= -count) {
  157. if (state->bias > -128)
  158. state->bias--;
  159. drift += count;
  160. if (drift <= -count)
  161. drift = -count + 1;
  162. } else if (drift > 0) {
  163. if (state->bias < 127)
  164. state->bias++;
  165. drift -= count;
  166. if (drift > 0)
  167. drift = 0;
  168. }
  169. state->drift = drift;
  170. state->count = count;
  171. }
  172. int ffv1_common_init(AVCodecContext *avctx);
  173. int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs);
  174. int ffv1_init_slice_contexts(FFV1Context *f);
  175. int ffv1_allocate_initial_states(FFV1Context *f);
  176. void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs);
  177. int ffv1_close(AVCodecContext *avctx);
  178. #endif /* AVCODEC_FFV1_H */