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.

209 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 "get_bits.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. GetBitContext gb;
  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 bits_per_raw_sample;
  93. int packed_at_lsb;
  94. int gob_count;
  95. int quant_table_count;
  96. struct FFV1Context *slice_context[MAX_SLICES];
  97. int slice_count;
  98. int num_v_slices;
  99. int num_h_slices;
  100. int slice_width;
  101. int slice_height;
  102. int slice_x;
  103. int slice_y;
  104. } FFV1Context;
  105. static av_always_inline int fold(int diff, int bits)
  106. {
  107. if (bits == 8)
  108. diff = (int8_t)diff;
  109. else {
  110. diff += 1 << (bits - 1);
  111. diff &= (1 << bits) - 1;
  112. diff -= 1 << (bits - 1);
  113. }
  114. return diff;
  115. }
  116. static inline int predict(int16_t *src, int16_t *last)
  117. {
  118. const int LT = last[-1];
  119. const int T = last[0];
  120. const int L = src[-1];
  121. return mid_pred(L, L + T - LT, T);
  122. }
  123. static inline int get_context(PlaneContext *p, int16_t *src,
  124. int16_t *last, int16_t *last2)
  125. {
  126. const int LT = last[-1];
  127. const int T = last[0];
  128. const int RT = last[1];
  129. const int L = src[-1];
  130. if (p->quant_table[3][127]) {
  131. const int TT = last2[0];
  132. const int LL = src[-2];
  133. return p->quant_table[0][(L - LT) & 0xFF] +
  134. p->quant_table[1][(LT - T) & 0xFF] +
  135. p->quant_table[2][(T - RT) & 0xFF] +
  136. p->quant_table[3][(LL - L) & 0xFF] +
  137. p->quant_table[4][(TT - T) & 0xFF];
  138. } else
  139. return p->quant_table[0][(L - LT) & 0xFF] +
  140. p->quant_table[1][(LT - T) & 0xFF] +
  141. p->quant_table[2][(T - RT) & 0xFF];
  142. }
  143. static inline void update_vlc_state(VlcState *const state, const int v)
  144. {
  145. int drift = state->drift;
  146. int count = state->count;
  147. state->error_sum += FFABS(v);
  148. drift += v;
  149. if (count == 128) { // FIXME: variable
  150. count >>= 1;
  151. drift >>= 1;
  152. state->error_sum >>= 1;
  153. }
  154. count++;
  155. if (drift <= -count) {
  156. if (state->bias > -128)
  157. state->bias--;
  158. drift += count;
  159. if (drift <= -count)
  160. drift = -count + 1;
  161. } else if (drift > 0) {
  162. if (state->bias < 127)
  163. state->bias++;
  164. drift -= count;
  165. if (drift > 0)
  166. drift = 0;
  167. }
  168. state->drift = drift;
  169. state->count = count;
  170. }
  171. int ffv1_common_init(AVCodecContext *avctx);
  172. int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs);
  173. int ffv1_init_slice_contexts(FFV1Context *f);
  174. int ffv1_allocate_initial_states(FFV1Context *f);
  175. void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs);
  176. int ffv1_close(AVCodecContext *avctx);
  177. #endif /* AVCODEC_FFV1_H */