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
7.3KB

  1. /*
  2. * Copyright (c) 2002 The Libav Project
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "avcodec.h"
  21. #include "h263.h"
  22. #include "mpegvideo.h"
  23. #include "msmpeg4.h"
  24. #include "msmpeg4data.h"
  25. #include "wmv2.h"
  26. static int encode_ext_header(Wmv2Context *w)
  27. {
  28. MpegEncContext *const s = &w->s;
  29. PutBitContext pb;
  30. int code;
  31. init_put_bits(&pb, s->avctx->extradata, s->avctx->extradata_size);
  32. put_bits(&pb, 5, s->avctx->time_base.den / s->avctx->time_base.num); // yes 29.97 -> 29
  33. put_bits(&pb, 11, FFMIN(s->bit_rate / 1024, 2047));
  34. put_bits(&pb, 1, w->mspel_bit = 1);
  35. put_bits(&pb, 1, s->loop_filter);
  36. put_bits(&pb, 1, w->abt_flag = 1);
  37. put_bits(&pb, 1, w->j_type_bit = 1);
  38. put_bits(&pb, 1, w->top_left_mv_flag = 0);
  39. put_bits(&pb, 1, w->per_mb_rl_bit = 1);
  40. put_bits(&pb, 3, code = 1);
  41. flush_put_bits(&pb);
  42. s->slice_height = s->mb_height / code;
  43. return 0;
  44. }
  45. static av_cold int wmv2_encode_init(AVCodecContext *avctx)
  46. {
  47. Wmv2Context *const w = avctx->priv_data;
  48. if (ff_mpv_encode_init(avctx) < 0)
  49. return -1;
  50. ff_wmv2_common_init(w);
  51. avctx->extradata_size = 4;
  52. avctx->extradata = av_mallocz(avctx->extradata_size + 10);
  53. if (!avctx->extradata)
  54. return AVERROR(ENOMEM);
  55. encode_ext_header(w);
  56. return 0;
  57. }
  58. int ff_wmv2_encode_picture_header(MpegEncContext *s, int picture_number)
  59. {
  60. Wmv2Context *const w = (Wmv2Context *) s;
  61. put_bits(&s->pb, 1, s->pict_type - 1);
  62. if (s->pict_type == AV_PICTURE_TYPE_I)
  63. put_bits(&s->pb, 7, 0);
  64. put_bits(&s->pb, 5, s->qscale);
  65. s->dc_table_index = 1;
  66. s->mv_table_index = 1; /* only if P-frame */
  67. s->per_mb_rl_table = 0;
  68. s->mspel = 0;
  69. w->per_mb_abt = 0;
  70. w->abt_type = 0;
  71. w->j_type = 0;
  72. assert(s->flipflop_rounding);
  73. if (s->pict_type == AV_PICTURE_TYPE_I) {
  74. assert(s->no_rounding == 1);
  75. if (w->j_type_bit)
  76. put_bits(&s->pb, 1, w->j_type);
  77. if (w->per_mb_rl_bit)
  78. put_bits(&s->pb, 1, s->per_mb_rl_table);
  79. if (!s->per_mb_rl_table) {
  80. ff_msmpeg4_code012(&s->pb, s->rl_chroma_table_index);
  81. ff_msmpeg4_code012(&s->pb, s->rl_table_index);
  82. }
  83. put_bits(&s->pb, 1, s->dc_table_index);
  84. s->inter_intra_pred = 0;
  85. } else {
  86. int cbp_index;
  87. put_bits(&s->pb, 2, SKIP_TYPE_NONE);
  88. ff_msmpeg4_code012(&s->pb, cbp_index = 0);
  89. if (s->qscale <= 10) {
  90. int map[3] = { 0, 2, 1 };
  91. w->cbp_table_index = map[cbp_index];
  92. } else if (s->qscale <= 20) {
  93. int map[3] = { 1, 0, 2 };
  94. w->cbp_table_index = map[cbp_index];
  95. } else {
  96. int map[3] = { 2, 1, 0 };
  97. w->cbp_table_index = map[cbp_index];
  98. }
  99. if (w->mspel_bit)
  100. put_bits(&s->pb, 1, s->mspel);
  101. if (w->abt_flag) {
  102. put_bits(&s->pb, 1, w->per_mb_abt ^ 1);
  103. if (!w->per_mb_abt)
  104. ff_msmpeg4_code012(&s->pb, w->abt_type);
  105. }
  106. if (w->per_mb_rl_bit)
  107. put_bits(&s->pb, 1, s->per_mb_rl_table);
  108. if (!s->per_mb_rl_table) {
  109. ff_msmpeg4_code012(&s->pb, s->rl_table_index);
  110. s->rl_chroma_table_index = s->rl_table_index;
  111. }
  112. put_bits(&s->pb, 1, s->dc_table_index);
  113. put_bits(&s->pb, 1, s->mv_table_index);
  114. s->inter_intra_pred = 0; // (s->width * s->height < 320 * 240 && s->bit_rate <= II_BITRATE);
  115. }
  116. s->esc3_level_length = 0;
  117. s->esc3_run_length = 0;
  118. return 0;
  119. }
  120. /* Nearly identical to wmv1 but that is just because we do not use the
  121. * useless M$ crap features. It is duplicated here in case someone wants
  122. * to add support for these crap features. */
  123. void ff_wmv2_encode_mb(MpegEncContext *s, int16_t block[6][64],
  124. int motion_x, int motion_y)
  125. {
  126. Wmv2Context *const w = (Wmv2Context *) s;
  127. int cbp, coded_cbp, i;
  128. int pred_x, pred_y;
  129. uint8_t *coded_block;
  130. ff_msmpeg4_handle_slices(s);
  131. if (!s->mb_intra) {
  132. /* compute cbp */
  133. cbp = 0;
  134. for (i = 0; i < 6; i++)
  135. if (s->block_last_index[i] >= 0)
  136. cbp |= 1 << (5 - i);
  137. put_bits(&s->pb,
  138. ff_wmv2_inter_table[w->cbp_table_index][cbp + 64][1],
  139. ff_wmv2_inter_table[w->cbp_table_index][cbp + 64][0]);
  140. /* motion vector */
  141. ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
  142. ff_msmpeg4_encode_motion(s, motion_x - pred_x,
  143. motion_y - pred_y);
  144. } else {
  145. /* compute cbp */
  146. cbp = 0;
  147. coded_cbp = 0;
  148. for (i = 0; i < 6; i++) {
  149. int val, pred;
  150. val = (s->block_last_index[i] >= 1);
  151. cbp |= val << (5 - i);
  152. if (i < 4) {
  153. /* predict value for close blocks only for luma */
  154. pred = ff_msmpeg4_coded_block_pred(s, i, &coded_block);
  155. *coded_block = val;
  156. val = val ^ pred;
  157. }
  158. coded_cbp |= val << (5 - i);
  159. }
  160. if (s->pict_type == AV_PICTURE_TYPE_I)
  161. put_bits(&s->pb,
  162. ff_msmp4_mb_i_table[coded_cbp][1],
  163. ff_msmp4_mb_i_table[coded_cbp][0]);
  164. else
  165. put_bits(&s->pb,
  166. ff_wmv2_inter_table[w->cbp_table_index][cbp][1],
  167. ff_wmv2_inter_table[w->cbp_table_index][cbp][0]);
  168. put_bits(&s->pb, 1, 0); /* no AC prediction yet */
  169. if (s->inter_intra_pred) {
  170. s->h263_aic_dir = 0;
  171. put_bits(&s->pb,
  172. ff_table_inter_intra[s->h263_aic_dir][1],
  173. ff_table_inter_intra[s->h263_aic_dir][0]);
  174. }
  175. }
  176. for (i = 0; i < 6; i++)
  177. ff_msmpeg4_encode_block(s, block[i], i);
  178. }
  179. static const AVClass wmv2_class = {
  180. .class_name = "wmv2 encoder",
  181. .item_name = av_default_item_name,
  182. .option = ff_mpv_generic_options,
  183. .version = LIBAVUTIL_VERSION_INT,
  184. };
  185. AVCodec ff_wmv2_encoder = {
  186. .name = "wmv2",
  187. .long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 8"),
  188. .type = AVMEDIA_TYPE_VIDEO,
  189. .id = AV_CODEC_ID_WMV2,
  190. .priv_data_size = sizeof(Wmv2Context),
  191. .priv_class = &wmv2_class,
  192. .init = wmv2_encode_init,
  193. .encode2 = ff_mpv_encode_picture,
  194. .close = ff_mpv_encode_end,
  195. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
  196. AV_PIX_FMT_NONE },
  197. };