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.

386 lines
13KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... sei decoding
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * H.264 / AVC / MPEG4 part10 sei decoding.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "avcodec.h"
  27. #include "golomb.h"
  28. #include "h264.h"
  29. #include "internal.h"
  30. static const uint8_t sei_num_clock_ts_table[9] = {
  31. 1, 1, 1, 2, 2, 3, 3, 2, 3
  32. };
  33. void ff_h264_reset_sei(H264Context *h)
  34. {
  35. h->sei_recovery_frame_cnt = -1;
  36. h->sei_dpb_output_delay = 0;
  37. h->sei_cpb_removal_delay = -1;
  38. h->sei_buffering_period_present = 0;
  39. h->sei_frame_packing_present = 0;
  40. h->sei_display_orientation_present = 0;
  41. h->sei_reguserdata_afd_present = 0;
  42. h->a53_caption_size = 0;
  43. av_freep(&h->a53_caption);
  44. }
  45. static int decode_picture_timing(H264Context *h)
  46. {
  47. if (h->sps.nal_hrd_parameters_present_flag ||
  48. h->sps.vcl_hrd_parameters_present_flag) {
  49. h->sei_cpb_removal_delay = get_bits(&h->gb,
  50. h->sps.cpb_removal_delay_length);
  51. h->sei_dpb_output_delay = get_bits(&h->gb,
  52. h->sps.dpb_output_delay_length);
  53. }
  54. if (h->sps.pic_struct_present_flag) {
  55. unsigned int i, num_clock_ts;
  56. h->sei_pic_struct = get_bits(&h->gb, 4);
  57. h->sei_ct_type = 0;
  58. if (h->sei_pic_struct > SEI_PIC_STRUCT_FRAME_TRIPLING)
  59. return AVERROR_INVALIDDATA;
  60. num_clock_ts = sei_num_clock_ts_table[h->sei_pic_struct];
  61. for (i = 0; i < num_clock_ts; i++) {
  62. if (get_bits(&h->gb, 1)) { /* clock_timestamp_flag */
  63. unsigned int full_timestamp_flag;
  64. h->sei_ct_type |= 1 << get_bits(&h->gb, 2);
  65. skip_bits(&h->gb, 1); /* nuit_field_based_flag */
  66. skip_bits(&h->gb, 5); /* counting_type */
  67. full_timestamp_flag = get_bits(&h->gb, 1);
  68. skip_bits(&h->gb, 1); /* discontinuity_flag */
  69. skip_bits(&h->gb, 1); /* cnt_dropped_flag */
  70. skip_bits(&h->gb, 8); /* n_frames */
  71. if (full_timestamp_flag) {
  72. skip_bits(&h->gb, 6); /* seconds_value 0..59 */
  73. skip_bits(&h->gb, 6); /* minutes_value 0..59 */
  74. skip_bits(&h->gb, 5); /* hours_value 0..23 */
  75. } else {
  76. if (get_bits(&h->gb, 1)) { /* seconds_flag */
  77. skip_bits(&h->gb, 6); /* seconds_value range 0..59 */
  78. if (get_bits(&h->gb, 1)) { /* minutes_flag */
  79. skip_bits(&h->gb, 6); /* minutes_value 0..59 */
  80. if (get_bits(&h->gb, 1)) /* hours_flag */
  81. skip_bits(&h->gb, 5); /* hours_value 0..23 */
  82. }
  83. }
  84. }
  85. if (h->sps.time_offset_length > 0)
  86. skip_bits(&h->gb,
  87. h->sps.time_offset_length); /* time_offset */
  88. }
  89. }
  90. if (h->avctx->debug & FF_DEBUG_PICT_INFO)
  91. av_log(h->avctx, AV_LOG_DEBUG, "ct_type:%X pic_struct:%d\n",
  92. h->sei_ct_type, h->sei_pic_struct);
  93. }
  94. return 0;
  95. }
  96. static int decode_registered_user_data_afd(H264Context *h, int size)
  97. {
  98. int flag;
  99. if (size-- < 1)
  100. return AVERROR_INVALIDDATA;
  101. skip_bits(&h->gb, 1); // 0
  102. flag = get_bits(&h->gb, 1); // active_format_flag
  103. skip_bits(&h->gb, 6); // reserved
  104. if (flag) {
  105. if (size-- < 1)
  106. return AVERROR_INVALIDDATA;
  107. skip_bits(&h->gb, 4); // reserved
  108. h->active_format_description = get_bits(&h->gb, 4);
  109. h->sei_reguserdata_afd_present = 1;
  110. }
  111. return 0;
  112. }
  113. static int decode_registered_user_data_closed_caption(H264Context *h, int size)
  114. {
  115. int flag;
  116. int user_data_type_code;
  117. int cc_count;
  118. if (size < 3)
  119. return AVERROR(EINVAL);
  120. user_data_type_code = get_bits(&h->gb, 8);
  121. if (user_data_type_code == 0x3) {
  122. skip_bits(&h->gb, 1); // reserved
  123. flag = get_bits(&h->gb, 1); // process_cc_data_flag
  124. if (flag) {
  125. skip_bits(&h->gb, 1); // zero bit
  126. cc_count = get_bits(&h->gb, 5);
  127. skip_bits(&h->gb, 8); // reserved
  128. size -= 2;
  129. if (cc_count && size >= cc_count * 3) {
  130. const uint64_t new_size = (h->a53_caption_size + cc_count
  131. * UINT64_C(3));
  132. int i, ret;
  133. if (new_size > INT_MAX)
  134. return AVERROR(EINVAL);
  135. /* Allow merging of the cc data from two fields. */
  136. ret = av_reallocp(&h->a53_caption, new_size);
  137. if (ret < 0)
  138. return ret;
  139. for (i = 0; i < cc_count; i++) {
  140. h->a53_caption[h->a53_caption_size++] = get_bits(&h->gb, 8);
  141. h->a53_caption[h->a53_caption_size++] = get_bits(&h->gb, 8);
  142. h->a53_caption[h->a53_caption_size++] = get_bits(&h->gb, 8);
  143. }
  144. skip_bits(&h->gb, 8); // marker_bits
  145. }
  146. }
  147. }
  148. return 0;
  149. }
  150. static int decode_registered_user_data(H264Context *h, int size)
  151. {
  152. uint32_t country_code;
  153. uint32_t user_identifier;
  154. if (size < 7)
  155. return AVERROR_INVALIDDATA;
  156. size -= 7;
  157. country_code = get_bits(&h->gb, 8); // itu_t_t35_country_code
  158. if (country_code == 0xFF) {
  159. skip_bits(&h->gb, 8); // itu_t_t35_country_code_extension_byte
  160. size--;
  161. }
  162. /* itu_t_t35_payload_byte follows */
  163. skip_bits(&h->gb, 8); // terminal provider code
  164. skip_bits(&h->gb, 8); // terminal provider oriented code
  165. user_identifier = get_bits_long(&h->gb, 32);
  166. switch (user_identifier) {
  167. case MKBETAG('D', 'T', 'G', '1'): // afd_data
  168. return decode_registered_user_data_afd(h, size);
  169. case MKBETAG('G', 'A', '9', '4'): // closed captions
  170. return decode_registered_user_data_closed_caption(h, size);
  171. default:
  172. skip_bits(&h->gb, size * 8);
  173. break;
  174. }
  175. return 0;
  176. }
  177. static int decode_unregistered_user_data(H264Context *h, int size)
  178. {
  179. uint8_t user_data[16 + 256];
  180. int e, build, i;
  181. if (size < 16)
  182. return AVERROR_INVALIDDATA;
  183. for (i = 0; i < sizeof(user_data) - 1 && i < size; i++)
  184. user_data[i] = get_bits(&h->gb, 8);
  185. user_data[i] = 0;
  186. e = sscanf(user_data + 16, "x264 - core %d", &build);
  187. if (e == 1 && build > 0)
  188. h->x264_build = build;
  189. if (h->avctx->debug & FF_DEBUG_BUGS)
  190. av_log(h->avctx, AV_LOG_DEBUG, "user data:\"%s\"\n", user_data + 16);
  191. for (; i < size; i++)
  192. skip_bits(&h->gb, 8);
  193. return 0;
  194. }
  195. static int decode_recovery_point(H264Context *h)
  196. {
  197. h->sei_recovery_frame_cnt = get_ue_golomb(&h->gb);
  198. /* 1b exact_match_flag,
  199. * 1b broken_link_flag,
  200. * 2b changing_slice_group_idc */
  201. skip_bits(&h->gb, 4);
  202. return 0;
  203. }
  204. static int decode_buffering_period(H264Context *h)
  205. {
  206. unsigned int sps_id;
  207. int sched_sel_idx;
  208. SPS *sps;
  209. sps_id = get_ue_golomb_31(&h->gb);
  210. if (sps_id > 31 || !h->sps_buffers[sps_id]) {
  211. av_log(h->avctx, AV_LOG_ERROR,
  212. "non-existing SPS %d referenced in buffering period\n", sps_id);
  213. return AVERROR_INVALIDDATA;
  214. }
  215. sps = h->sps_buffers[sps_id];
  216. // NOTE: This is really so duplicated in the standard... See H.264, D.1.1
  217. if (sps->nal_hrd_parameters_present_flag) {
  218. for (sched_sel_idx = 0; sched_sel_idx < sps->cpb_cnt; sched_sel_idx++) {
  219. h->initial_cpb_removal_delay[sched_sel_idx] =
  220. get_bits(&h->gb, sps->initial_cpb_removal_delay_length);
  221. // initial_cpb_removal_delay_offset
  222. skip_bits(&h->gb, sps->initial_cpb_removal_delay_length);
  223. }
  224. }
  225. if (sps->vcl_hrd_parameters_present_flag) {
  226. for (sched_sel_idx = 0; sched_sel_idx < sps->cpb_cnt; sched_sel_idx++) {
  227. h->initial_cpb_removal_delay[sched_sel_idx] =
  228. get_bits(&h->gb, sps->initial_cpb_removal_delay_length);
  229. // initial_cpb_removal_delay_offset
  230. skip_bits(&h->gb, sps->initial_cpb_removal_delay_length);
  231. }
  232. }
  233. h->sei_buffering_period_present = 1;
  234. return 0;
  235. }
  236. static int decode_frame_packing_arrangement(H264Context *h)
  237. {
  238. get_ue_golomb(&h->gb); // frame_packing_arrangement_id
  239. h->sei_frame_packing_present = !get_bits1(&h->gb);
  240. if (h->sei_frame_packing_present) {
  241. h->frame_packing_arrangement_type = get_bits(&h->gb, 7);
  242. h->quincunx_subsampling = get_bits1(&h->gb);
  243. h->content_interpretation_type = get_bits(&h->gb, 6);
  244. // the following skips: spatial_flipping_flag, frame0_flipped_flag,
  245. // field_views_flag, current_frame_is_frame0_flag,
  246. // frame0_self_contained_flag, frame1_self_contained_flag
  247. skip_bits(&h->gb, 6);
  248. if (!h->quincunx_subsampling && h->frame_packing_arrangement_type != 5)
  249. skip_bits(&h->gb, 16); // frame[01]_grid_position_[xy]
  250. skip_bits(&h->gb, 8); // frame_packing_arrangement_reserved_byte
  251. get_ue_golomb(&h->gb); // frame_packing_arrangement_repetition_period
  252. }
  253. skip_bits1(&h->gb); // frame_packing_arrangement_extension_flag
  254. return 0;
  255. }
  256. static int decode_display_orientation(H264Context *h)
  257. {
  258. h->sei_display_orientation_present = !get_bits1(&h->gb);
  259. if (h->sei_display_orientation_present) {
  260. h->sei_hflip = get_bits1(&h->gb); // hor_flip
  261. h->sei_vflip = get_bits1(&h->gb); // ver_flip
  262. h->sei_anticlockwise_rotation = get_bits(&h->gb, 16);
  263. get_ue_golomb(&h->gb); // display_orientation_repetition_period
  264. skip_bits1(&h->gb); // display_orientation_extension_flag
  265. }
  266. return 0;
  267. }
  268. int ff_h264_decode_sei(H264Context *h)
  269. {
  270. while (get_bits_left(&h->gb) > 16) {
  271. int size = 0;
  272. int type = 0;
  273. int ret = 0;
  274. int last = 0;
  275. while (get_bits_left(&h->gb) >= 8 &&
  276. (last = get_bits(&h->gb, 8)) == 255) {
  277. type += 255;
  278. }
  279. type += last;
  280. last = 0;
  281. while (get_bits_left(&h->gb) >= 8 &&
  282. (last = get_bits(&h->gb, 8)) == 255) {
  283. size += 255;
  284. }
  285. size += last;
  286. if (size > get_bits_left(&h->gb) / 8) {
  287. av_log(h->avctx, AV_LOG_ERROR, "SEI type %d truncated at %d\n",
  288. type, get_bits_left(&h->gb));
  289. return AVERROR_INVALIDDATA;
  290. }
  291. switch (type) {
  292. case SEI_TYPE_PIC_TIMING: // Picture timing SEI
  293. ret = decode_picture_timing(h);
  294. break;
  295. case SEI_TYPE_USER_DATA_REGISTERED:
  296. ret = decode_registered_user_data(h, size);
  297. break;
  298. case SEI_TYPE_USER_DATA_UNREGISTERED:
  299. ret = decode_unregistered_user_data(h, size);
  300. break;
  301. case SEI_TYPE_RECOVERY_POINT:
  302. ret = decode_recovery_point(h);
  303. break;
  304. case SEI_TYPE_BUFFERING_PERIOD:
  305. ret = decode_buffering_period(h);
  306. break;
  307. case SEI_TYPE_FRAME_PACKING:
  308. ret = decode_frame_packing_arrangement(h);
  309. break;
  310. case SEI_TYPE_DISPLAY_ORIENTATION:
  311. ret = decode_display_orientation(h);
  312. break;
  313. default:
  314. av_log(h->avctx, AV_LOG_DEBUG, "unknown SEI type %d\n", type);
  315. skip_bits(&h->gb, 8 * size);
  316. }
  317. if (ret < 0)
  318. return ret;
  319. // FIXME check bits here
  320. align_get_bits(&h->gb);
  321. }
  322. return 0;
  323. }