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.

136 lines
3.9KB

  1. /*
  2. * FLV decoding.
  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 "libavutil/imgutils.h"
  21. #include "flv.h"
  22. #include "h263.h"
  23. #include "mpegvideo.h"
  24. #include "mpegvideodata.h"
  25. void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last)
  26. {
  27. int is11 = get_bits1(gb);
  28. *last = get_bits1(gb);
  29. *run = get_bits(gb, 6);
  30. if (is11)
  31. *level = get_sbits(gb, 11);
  32. else
  33. *level = get_sbits(gb, 7);
  34. }
  35. int ff_flv_decode_picture_header(MpegEncContext *s)
  36. {
  37. int format, width, height;
  38. /* picture header */
  39. if (get_bits_long(&s->gb, 17) != 1) {
  40. av_log(s->avctx, AV_LOG_ERROR, "Bad picture start code\n");
  41. return -1;
  42. }
  43. format = get_bits(&s->gb, 5);
  44. if (format != 0 && format != 1) {
  45. av_log(s->avctx, AV_LOG_ERROR, "Bad picture format\n");
  46. return -1;
  47. }
  48. s->h263_flv = format + 1;
  49. s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */
  50. format = get_bits(&s->gb, 3);
  51. switch (format) {
  52. case 0:
  53. width = get_bits(&s->gb, 8);
  54. height = get_bits(&s->gb, 8);
  55. break;
  56. case 1:
  57. width = get_bits(&s->gb, 16);
  58. height = get_bits(&s->gb, 16);
  59. break;
  60. case 2:
  61. width = 352;
  62. height = 288;
  63. break;
  64. case 3:
  65. width = 176;
  66. height = 144;
  67. break;
  68. case 4:
  69. width = 128;
  70. height = 96;
  71. break;
  72. case 5:
  73. width = 320;
  74. height = 240;
  75. break;
  76. case 6:
  77. width = 160;
  78. height = 120;
  79. break;
  80. default:
  81. width = height = 0;
  82. break;
  83. }
  84. if (av_image_check_size(width, height, 0, s->avctx))
  85. return -1;
  86. s->width = width;
  87. s->height = height;
  88. s->pict_type = AV_PICTURE_TYPE_I + get_bits(&s->gb, 2);
  89. s->droppable = s->pict_type > AV_PICTURE_TYPE_P;
  90. if (s->droppable)
  91. s->pict_type = AV_PICTURE_TYPE_P;
  92. skip_bits1(&s->gb); /* deblocking flag */
  93. s->chroma_qscale = s->qscale = get_bits(&s->gb, 5);
  94. s->h263_plus = 0;
  95. s->unrestricted_mv = 1;
  96. s->h263_long_vectors = 0;
  97. /* PEI */
  98. while (get_bits1(&s->gb) != 0)
  99. skip_bits(&s->gb, 8);
  100. s->f_code = 1;
  101. if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
  102. av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n",
  103. s->droppable ? 'D' : av_get_picture_type_char(s->pict_type),
  104. s->h263_flv - 1, s->qscale, s->picture_number);
  105. }
  106. s->y_dc_scale_table = s->c_dc_scale_table = ff_mpeg1_dc_scale_table;
  107. return 0;
  108. }
  109. AVCodec ff_flv_decoder = {
  110. .name = "flv",
  111. .long_name = NULL_IF_CONFIG_SMALL("FLV / Sorenson Spark / Sorenson H.263 (Flash Video)"),
  112. .type = AVMEDIA_TYPE_VIDEO,
  113. .id = AV_CODEC_ID_FLV1,
  114. .priv_data_size = sizeof(MpegEncContext),
  115. .init = ff_h263_decode_init,
  116. .close = ff_h263_decode_end,
  117. .decode = ff_h263_decode_frame,
  118. .capabilities = AV_CODEC_CAP_DRAW_HORIZ_BAND | AV_CODEC_CAP_DR1,
  119. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
  120. AV_PIX_FMT_NONE },
  121. };