dv.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Constants for DV codec
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Constants for DV codec.
  24. */
  25. #ifndef AVCODEC_DV_H
  26. #define AVCODEC_DV_H
  27. #include "avcodec.h"
  28. #include "dv_profile.h"
  29. #include "me_cmp.h"
  30. #include "vlc.h"
  31. #include "idctdsp.h"
  32. typedef struct DVwork_chunk {
  33. uint16_t buf_offset;
  34. uint16_t mb_coordinates[5];
  35. } DVwork_chunk;
  36. typedef struct DVVideoContext {
  37. AVClass *avclass;
  38. const AVDVProfile *sys;
  39. const AVFrame *frame;
  40. AVCodecContext *avctx;
  41. uint8_t *buf;
  42. uint8_t dv_zigzag[2][64];
  43. void (*get_pixels)(int16_t *block, const uint8_t *pixels, ptrdiff_t linesize);
  44. void (*fdct[2])(int16_t *block);
  45. void (*idct_put[2])(uint8_t *dest, ptrdiff_t stride, int16_t *block);
  46. me_cmp_func ildct_cmp;
  47. DVwork_chunk work_chunks[4 * 12 * 27];
  48. uint32_t idct_factor[2 * 4 * 16 * 64];
  49. IDCTDSPContext idsp;
  50. int quant_deadzone;
  51. } DVVideoContext;
  52. enum dv_section_type {
  53. dv_sect_header = 0x1f,
  54. dv_sect_subcode = 0x3f,
  55. dv_sect_vaux = 0x56,
  56. dv_sect_audio = 0x76,
  57. dv_sect_video = 0x96,
  58. };
  59. enum dv_pack_type {
  60. dv_header525 = 0x3f, /* see dv_write_pack for important details on */
  61. dv_header625 = 0xbf, /* these two packs */
  62. dv_timecode = 0x13,
  63. dv_audio_source = 0x50,
  64. dv_audio_control = 0x51,
  65. dv_audio_recdate = 0x52,
  66. dv_audio_rectime = 0x53,
  67. dv_video_source = 0x60,
  68. dv_video_control = 0x61,
  69. dv_video_recdate = 0x62,
  70. dv_video_rectime = 0x63,
  71. dv_unknown_pack = 0xff,
  72. };
  73. #define DV_PROFILE_IS_HD(p) ((p)->video_stype & 0x10)
  74. #define DV_PROFILE_IS_1080i50(p) (((p)->video_stype == 0x14) && ((p)->dsf == 1))
  75. #define DV_PROFILE_IS_1080i60(p) (((p)->video_stype == 0x14) && ((p)->dsf == 0))
  76. #define DV_PROFILE_IS_720p50(p) (((p)->video_stype == 0x18) && ((p)->dsf == 1))
  77. /**
  78. * largest possible DV frame, in bytes (1080i50)
  79. */
  80. #define DV_MAX_FRAME_SIZE 576000
  81. /**
  82. * maximum number of blocks per macroblock in any DV format
  83. */
  84. #define DV_MAX_BPM 8
  85. #define TEX_VLC_BITS 10
  86. extern RL_VLC_ELEM ff_dv_rl_vlc[1664];
  87. int ff_dv_init_dynamic_tables(DVVideoContext *s, const AVDVProfile *d);
  88. int ff_dvvideo_init(AVCodecContext *avctx);
  89. static inline int dv_work_pool_size(const AVDVProfile *d)
  90. {
  91. int size = d->n_difchan * d->difseg_size * 27;
  92. if (DV_PROFILE_IS_1080i50(d))
  93. size -= 3 * 27;
  94. if (DV_PROFILE_IS_720p50(d))
  95. size -= 4 * 27;
  96. return size;
  97. }
  98. static inline void dv_calculate_mb_xy(DVVideoContext *s,
  99. DVwork_chunk *work_chunk,
  100. int m, int *mb_x, int *mb_y)
  101. {
  102. *mb_x = work_chunk->mb_coordinates[m] & 0xff;
  103. *mb_y = work_chunk->mb_coordinates[m] >> 8;
  104. /* We work with 720p frames split in half.
  105. * The odd half-frame (chan == 2,3) is displaced :-( */
  106. if (s->sys->height == 720 && !(s->buf[1] & 0x0C))
  107. /* shifting the Y coordinate down by 72/2 macro blocks */
  108. *mb_y -= (*mb_y > 17) ? 18 : -72;
  109. }
  110. #endif /* AVCODEC_DV_H */