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.

141 lines
5.0KB

  1. /*
  2. * nut
  3. * Copyright (c) 2004-2007 Michael Niedermayer
  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. #include "libavutil/tree.h"
  22. #include "nut.h"
  23. #include "internal.h"
  24. const AVCodecTag ff_nut_subtitle_tags[] = {
  25. { CODEC_ID_TEXT , MKTAG('U', 'T', 'F', '8') },
  26. { CODEC_ID_SSA , MKTAG('S', 'S', 'A', 0 ) },
  27. { CODEC_ID_DVD_SUBTITLE, MKTAG('D', 'V', 'D', 'S') },
  28. { CODEC_ID_DVB_SUBTITLE, MKTAG('D', 'V', 'B', 'S') },
  29. { CODEC_ID_NONE , 0 }
  30. };
  31. const AVCodecTag ff_nut_video_tags[] = {
  32. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 15 ) },
  33. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 15 ) },
  34. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 16 ) },
  35. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 16 ) },
  36. { CODEC_ID_RAWVIDEO, MKTAG(15 , 'B', 'G', 'R') },
  37. { CODEC_ID_RAWVIDEO, MKTAG(15 , 'R', 'G', 'B') },
  38. { CODEC_ID_RAWVIDEO, MKTAG(16 , 'B', 'G', 'R') },
  39. { CODEC_ID_RAWVIDEO, MKTAG(16 , 'R', 'G', 'B') },
  40. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 'A') },
  41. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 'A') },
  42. { CODEC_ID_RAWVIDEO, MKTAG('A', 'B', 'G', 'R') },
  43. { CODEC_ID_RAWVIDEO, MKTAG('A', 'R', 'G', 'B') },
  44. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 24 ) },
  45. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 24 ) },
  46. { CODEC_ID_RAWVIDEO, MKTAG('4', '1', '1', 'P') },
  47. { CODEC_ID_RAWVIDEO, MKTAG('4', '2', '2', 'P') },
  48. { CODEC_ID_RAWVIDEO, MKTAG('4', '2', '2', 'P') },
  49. { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '0', 'P') },
  50. { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '0', 'P') },
  51. { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '4', 'P') },
  52. { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '4', 'P') },
  53. { CODEC_ID_RAWVIDEO, MKTAG('B', '1', 'W', '0') },
  54. { CODEC_ID_RAWVIDEO, MKTAG('B', '0', 'W', '1') },
  55. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 8 ) },
  56. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 8 ) },
  57. { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 4 ) },
  58. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 4 ) },
  59. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) },
  60. { CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') },
  61. { CODEC_ID_NONE , 0 }
  62. };
  63. void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){
  64. int i;
  65. for(i=0; i<nut->avf->nb_streams; i++){
  66. nut->stream[i].last_pts= av_rescale_rnd(
  67. val,
  68. time_base.num * (int64_t)nut->stream[i].time_base->den,
  69. time_base.den * (int64_t)nut->stream[i].time_base->num,
  70. AV_ROUND_DOWN);
  71. }
  72. }
  73. int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){
  74. int64_t mask = (1<<stream->msb_pts_shift)-1;
  75. int64_t delta= stream->last_pts - mask/2;
  76. return ((lsb - delta)&mask) + delta;
  77. }
  78. int ff_nut_sp_pos_cmp(const Syncpoint *a, const Syncpoint *b){
  79. return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32);
  80. }
  81. int ff_nut_sp_pts_cmp(const Syncpoint *a, const Syncpoint *b){
  82. return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32);
  83. }
  84. void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){
  85. Syncpoint *sp= av_mallocz(sizeof(Syncpoint));
  86. struct AVTreeNode *node= av_mallocz(av_tree_node_size);
  87. sp->pos= pos;
  88. sp->back_ptr= back_ptr;
  89. sp->ts= ts;
  90. av_tree_insert(&nut->syncpoints, sp, (void *) ff_nut_sp_pos_cmp, &node);
  91. if(node){
  92. av_free(sp);
  93. av_free(node);
  94. }
  95. }
  96. static int enu_free(void *opaque, void *elem)
  97. {
  98. av_free(elem);
  99. return 0;
  100. }
  101. void ff_nut_free_sp(NUTContext *nut)
  102. {
  103. av_tree_enumerate(nut->syncpoints, NULL, NULL, enu_free);
  104. av_tree_destroy(nut->syncpoints);
  105. }
  106. const Dispositions ff_nut_dispositions[] = {
  107. {"default" , AV_DISPOSITION_DEFAULT},
  108. {"dub" , AV_DISPOSITION_DUB},
  109. {"original" , AV_DISPOSITION_ORIGINAL},
  110. {"comment" , AV_DISPOSITION_COMMENT},
  111. {"lyrics" , AV_DISPOSITION_LYRICS},
  112. {"karaoke" , AV_DISPOSITION_KARAOKE},
  113. {"" , 0}
  114. };
  115. const AVMetadataConv ff_nut_metadata_conv[] = {
  116. { "Author", "artist" },
  117. { "X-CreationTime", "date" },
  118. { "CreationTime", "date" },
  119. { "SourceFilename", "filename" },
  120. { "X-Language", "language" },
  121. { "X-Disposition", "disposition" },
  122. { "X-Replaces", "replaces" },
  123. { "X-Depends", "depends" },
  124. { "X-Uses", "uses" },
  125. { "X-UsesFont", "usesfont" },
  126. { 0 },
  127. };