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.

135 lines
3.8KB

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