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.

223 lines
5.6KB

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