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.

206 lines
5.3KB

  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 "dsputil.h"
  27. #include "get_bits.h"
  28. #include "put_bits.h"
  29. #include "rangecoder.h"
  30. #define MAX_PLANES 4
  31. #define CONTEXT_SIZE 32
  32. #define MAX_QUANT_TABLES 8
  33. #define MAX_CONTEXT_INPUTS 5
  34. extern const uint8_t ff_log2_run[41];
  35. extern const int8_t ffv1_quant5_10bit[256];
  36. extern const int8_t ffv1_quant5[256];
  37. extern const int8_t ffv1_quant9_10bit[256];
  38. extern const int8_t ffv1_quant11[256];
  39. extern const uint8_t ffv1_ver2_state[256];
  40. typedef struct VlcState {
  41. int16_t drift;
  42. uint16_t error_sum;
  43. int8_t bias;
  44. uint8_t count;
  45. } VlcState;
  46. typedef struct PlaneContext {
  47. int16_t quant_table[MAX_CONTEXT_INPUTS][256];
  48. int quant_table_index;
  49. int context_count;
  50. uint8_t (*state)[CONTEXT_SIZE];
  51. VlcState *vlc_state;
  52. uint8_t interlace_bit_state[2];
  53. } PlaneContext;
  54. #define MAX_SLICES 256
  55. typedef struct FFV1Context {
  56. AVClass *class;
  57. AVCodecContext *avctx;
  58. RangeCoder c;
  59. GetBitContext gb;
  60. PutBitContext pb;
  61. uint64_t rc_stat[256][2];
  62. uint64_t (*rc_stat2[MAX_QUANT_TABLES])[32][2];
  63. int version;
  64. int minor_version;
  65. int width, height;
  66. int chroma_planes;
  67. int chroma_h_shift, chroma_v_shift;
  68. int transparency;
  69. int flags;
  70. int picture_number;
  71. AVFrame picture, last_picture;
  72. AVFrame *cur;
  73. int plane_count;
  74. int ac; // 1 = range coder <-> 0 = golomb rice
  75. int ac_byte_count; // number of bytes used for AC coding
  76. PlaneContext plane[MAX_PLANES];
  77. int16_t quant_table[MAX_CONTEXT_INPUTS][256];
  78. int16_t quant_tables[MAX_QUANT_TABLES][MAX_CONTEXT_INPUTS][256];
  79. int context_count[MAX_QUANT_TABLES];
  80. uint8_t state_transition[256];
  81. uint8_t (*initial_states[MAX_QUANT_TABLES])[32];
  82. int run_index;
  83. int colorspace;
  84. int16_t *sample_buffer;
  85. int ec;
  86. int slice_damaged;
  87. int key_frame_ok;
  88. int bits_per_raw_sample;
  89. int packed_at_lsb;
  90. int gob_count;
  91. int quant_table_count;
  92. DSPContext dsp;
  93. struct FFV1Context *slice_context[MAX_SLICES];
  94. int slice_count;
  95. int num_v_slices;
  96. int num_h_slices;
  97. int slice_width;
  98. int slice_height;
  99. int slice_x;
  100. int slice_y;
  101. } FFV1Context;
  102. static av_always_inline int fold(int diff, int bits)
  103. {
  104. if (bits == 8)
  105. diff = (int8_t)diff;
  106. else {
  107. diff += 1 << (bits - 1);
  108. diff &= (1 << bits) - 1;
  109. diff -= 1 << (bits - 1);
  110. }
  111. return diff;
  112. }
  113. static inline int predict(int16_t *src, int16_t *last)
  114. {
  115. const int LT = last[-1];
  116. const int T = last[0];
  117. const int L = src[-1];
  118. return mid_pred(L, L + T - LT, T);
  119. }
  120. static inline int get_context(PlaneContext *p, int16_t *src,
  121. int16_t *last, int16_t *last2)
  122. {
  123. const int LT = last[-1];
  124. const int T = last[0];
  125. const int RT = last[1];
  126. const int L = src[-1];
  127. if (p->quant_table[3][127]) {
  128. const int TT = last2[0];
  129. const int LL = src[-2];
  130. return p->quant_table[0][(L - LT) & 0xFF] +
  131. p->quant_table[1][(LT - T) & 0xFF] +
  132. p->quant_table[2][(T - RT) & 0xFF] +
  133. p->quant_table[3][(LL - L) & 0xFF] +
  134. p->quant_table[4][(TT - T) & 0xFF];
  135. } else
  136. return p->quant_table[0][(L - LT) & 0xFF] +
  137. p->quant_table[1][(LT - T) & 0xFF] +
  138. p->quant_table[2][(T - RT) & 0xFF];
  139. }
  140. static inline void update_vlc_state(VlcState *const state, const int v)
  141. {
  142. int drift = state->drift;
  143. int count = state->count;
  144. state->error_sum += FFABS(v);
  145. drift += v;
  146. if (count == 128) { // FIXME: variable
  147. count >>= 1;
  148. drift >>= 1;
  149. state->error_sum >>= 1;
  150. }
  151. count++;
  152. if (drift <= -count) {
  153. if (state->bias > -128)
  154. state->bias--;
  155. drift += count;
  156. if (drift <= -count)
  157. drift = -count + 1;
  158. } else if (drift > 0) {
  159. if (state->bias < 127)
  160. state->bias++;
  161. drift -= count;
  162. if (drift > 0)
  163. drift = 0;
  164. }
  165. state->drift = drift;
  166. state->count = count;
  167. }
  168. int ffv1_common_init(AVCodecContext *avctx);
  169. int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs);
  170. int ffv1_init_slice_contexts(FFV1Context *f);
  171. int ffv1_allocate_initial_states(FFV1Context *f);
  172. void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs);
  173. int ffv1_close(AVCodecContext *avctx);
  174. #endif /* AVCODEC_FFV1_H */