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.

239 lines
6.7KB

  1. /*
  2. * FFV1 codec for libavcodec
  3. *
  4. * Copyright (c) 2003-2013 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. /**
  23. * @file
  24. * FF Video Codec 1 (a lossless codec)
  25. */
  26. #include "libavutil/attributes.h"
  27. #include "libavutil/avassert.h"
  28. #include "libavutil/crc.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/imgutils.h"
  31. #include "libavutil/pixdesc.h"
  32. #include "libavutil/timer.h"
  33. #include "avcodec.h"
  34. #include "internal.h"
  35. #include "rangecoder.h"
  36. #include "golomb.h"
  37. #include "mathops.h"
  38. #include "ffv1.h"
  39. av_cold int ffv1_common_init(AVCodecContext *avctx)
  40. {
  41. FFV1Context *s = avctx->priv_data;
  42. if (!avctx->width || !avctx->height)
  43. return AVERROR_INVALIDDATA;
  44. s->avctx = avctx;
  45. s->flags = avctx->flags;
  46. s->picture.f = av_frame_alloc();
  47. s->last_picture.f = av_frame_alloc();
  48. if (!s->picture.f || !s->last_picture.f)
  49. return AVERROR(ENOMEM);
  50. s->width = avctx->width;
  51. s->height = avctx->height;
  52. // defaults
  53. s->num_h_slices = 1;
  54. s->num_v_slices = 1;
  55. return 0;
  56. }
  57. av_cold int ffv1_init_slice_state(FFV1Context *f, FFV1Context *fs)
  58. {
  59. int j;
  60. fs->plane_count = f->plane_count;
  61. fs->transparency = f->transparency;
  62. for (j = 0; j < f->plane_count; j++) {
  63. PlaneContext *const p = &fs->plane[j];
  64. if (fs->ac) {
  65. if (!p->state)
  66. p->state = av_malloc_array(p->context_count, CONTEXT_SIZE *
  67. sizeof(uint8_t));
  68. if (!p->state)
  69. return AVERROR(ENOMEM);
  70. } else {
  71. if (!p->vlc_state)
  72. p->vlc_state = av_malloc_array(p->context_count, sizeof(VlcState));
  73. if (!p->vlc_state)
  74. return AVERROR(ENOMEM);
  75. }
  76. }
  77. if (fs->ac > 1) {
  78. //FIXME only redo if state_transition changed
  79. for (j = 1; j < 256; j++) {
  80. fs->c. one_state[ j] = f->state_transition[j];
  81. fs->c.zero_state[256 - j] = 256 - fs->c.one_state[j];
  82. }
  83. }
  84. return 0;
  85. }
  86. av_cold int ffv1_init_slices_state(FFV1Context *f)
  87. {
  88. int i, ret;
  89. for (i = 0; i < f->slice_count; i++) {
  90. FFV1Context *fs = f->slice_context[i];
  91. if ((ret = ffv1_init_slice_state(f, fs)) < 0)
  92. return AVERROR(ENOMEM);
  93. }
  94. return 0;
  95. }
  96. av_cold int ffv1_init_slice_contexts(FFV1Context *f)
  97. {
  98. int i;
  99. f->slice_count = f->num_h_slices * f->num_v_slices;
  100. av_assert0(f->slice_count > 0);
  101. for (i = 0; i < f->slice_count; i++) {
  102. int sx = i % f->num_h_slices;
  103. int sy = i / f->num_h_slices;
  104. int sxs = f->avctx->width * sx / f->num_h_slices;
  105. int sxe = f->avctx->width * (sx + 1) / f->num_h_slices;
  106. int sys = f->avctx->height * sy / f->num_v_slices;
  107. int sye = f->avctx->height * (sy + 1) / f->num_v_slices;
  108. FFV1Context *fs = av_mallocz(sizeof(*fs));
  109. if (!fs)
  110. goto memfail;
  111. f->slice_context[i] = fs;
  112. memcpy(fs, f, sizeof(*fs));
  113. memset(fs->rc_stat2, 0, sizeof(fs->rc_stat2));
  114. fs->slice_width = sxe - sxs;
  115. fs->slice_height = sye - sys;
  116. fs->slice_x = sxs;
  117. fs->slice_y = sys;
  118. fs->sample_buffer = av_malloc_array((fs->width + 6), 3 * MAX_PLANES *
  119. sizeof(*fs->sample_buffer));
  120. if (!fs->sample_buffer) {
  121. av_freep(&f->slice_context[i]);
  122. goto memfail;
  123. }
  124. }
  125. return 0;
  126. memfail:
  127. while(--i >= 0) {
  128. av_freep(&f->slice_context[i]->sample_buffer);
  129. av_freep(&f->slice_context[i]);
  130. }
  131. return AVERROR(ENOMEM);
  132. }
  133. int ffv1_allocate_initial_states(FFV1Context *f)
  134. {
  135. int i;
  136. for (i = 0; i < f->quant_table_count; i++) {
  137. f->initial_states[i] = av_malloc_array(f->context_count[i],
  138. sizeof(*f->initial_states[i]));
  139. if (!f->initial_states[i])
  140. return AVERROR(ENOMEM);
  141. memset(f->initial_states[i], 128,
  142. f->context_count[i] * sizeof(*f->initial_states[i]));
  143. }
  144. return 0;
  145. }
  146. void ffv1_clear_slice_state(FFV1Context *f, FFV1Context *fs)
  147. {
  148. int i, j;
  149. for (i = 0; i < f->plane_count; i++) {
  150. PlaneContext *p = &fs->plane[i];
  151. p->interlace_bit_state[0] = 128;
  152. p->interlace_bit_state[1] = 128;
  153. if (fs->ac) {
  154. if (f->initial_states[p->quant_table_index]) {
  155. memcpy(p->state, f->initial_states[p->quant_table_index],
  156. CONTEXT_SIZE * p->context_count);
  157. } else
  158. memset(p->state, 128, CONTEXT_SIZE * p->context_count);
  159. } else {
  160. for (j = 0; j < p->context_count; j++) {
  161. p->vlc_state[j].drift = 0;
  162. p->vlc_state[j].error_sum = 4; //FFMAX((RANGE + 32)/64, 2);
  163. p->vlc_state[j].bias = 0;
  164. p->vlc_state[j].count = 1;
  165. }
  166. }
  167. }
  168. }
  169. av_cold int ffv1_close(AVCodecContext *avctx)
  170. {
  171. FFV1Context *s = avctx->priv_data;
  172. int i, j;
  173. if (s->picture.f)
  174. ff_thread_release_buffer(avctx, &s->picture);
  175. av_frame_free(&s->picture.f);
  176. if (s->last_picture.f)
  177. ff_thread_release_buffer(avctx, &s->last_picture);
  178. av_frame_free(&s->last_picture.f);
  179. for (j = 0; j < s->slice_count; j++) {
  180. FFV1Context *fs = s->slice_context[j];
  181. for (i = 0; i < s->plane_count; i++) {
  182. PlaneContext *p = &fs->plane[i];
  183. av_freep(&p->state);
  184. av_freep(&p->vlc_state);
  185. }
  186. av_freep(&fs->sample_buffer);
  187. }
  188. av_freep(&avctx->stats_out);
  189. for (j = 0; j < s->quant_table_count; j++) {
  190. av_freep(&s->initial_states[j]);
  191. for (i = 0; i < s->slice_count; i++) {
  192. FFV1Context *sf = s->slice_context[i];
  193. av_freep(&sf->rc_stat2[j]);
  194. }
  195. av_freep(&s->rc_stat2[j]);
  196. }
  197. for (i = 0; i < s->slice_count; i++)
  198. av_freep(&s->slice_context[i]);
  199. return 0;
  200. }