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.

155 lines
4.5KB

  1. /*
  2. * copyright (c) 2009 Michael Niedermayer
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <strings.h>
  21. #include "avformat.h"
  22. #include "metadata.h"
  23. AVMetadataTag *
  24. av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int flags)
  25. {
  26. unsigned int i, j;
  27. if(!m)
  28. return NULL;
  29. if(prev) i= prev - m->elems + 1;
  30. else i= 0;
  31. for(; i<m->count; i++){
  32. const char *s= m->elems[i].key;
  33. if(flags & AV_METADATA_MATCH_CASE) for(j=0; s[j] == key[j] && key[j]; j++);
  34. else for(j=0; toupper(s[j]) == toupper(key[j]) && key[j]; j++);
  35. if(key[j])
  36. continue;
  37. if(s[j] && !(flags & AV_METADATA_IGNORE_SUFFIX))
  38. continue;
  39. return &m->elems[i];
  40. }
  41. return NULL;
  42. }
  43. int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int flags)
  44. {
  45. AVMetadata *m= *pm;
  46. AVMetadataTag *tag= av_metadata_get(m, key, NULL, AV_METADATA_MATCH_CASE);
  47. if(!m)
  48. m=*pm= av_mallocz(sizeof(*m));
  49. if(tag){
  50. if (flags & AV_METADATA_DONT_OVERWRITE)
  51. return 0;
  52. av_free(tag->value);
  53. av_free(tag->key);
  54. *tag= m->elems[--m->count];
  55. }else{
  56. AVMetadataTag *tmp= av_realloc(m->elems, (m->count+1) * sizeof(*m->elems));
  57. if(tmp){
  58. m->elems= tmp;
  59. }else
  60. return AVERROR(ENOMEM);
  61. }
  62. if(value){
  63. if(flags & AV_METADATA_DONT_STRDUP_KEY){
  64. m->elems[m->count].key = key;
  65. }else
  66. m->elems[m->count].key = av_strdup(key );
  67. if(flags & AV_METADATA_DONT_STRDUP_VAL){
  68. m->elems[m->count].value= value;
  69. }else
  70. m->elems[m->count].value= av_strdup(value);
  71. m->count++;
  72. }
  73. if(!m->count) {
  74. av_free(m->elems);
  75. av_freep(pm);
  76. }
  77. return 0;
  78. }
  79. #if LIBAVFORMAT_VERSION_MAJOR == 52
  80. int av_metadata_set(AVMetadata **pm, const char *key, const char *value)
  81. {
  82. return av_metadata_set2(pm, key, value, 0);
  83. }
  84. #endif
  85. void av_metadata_free(AVMetadata **pm)
  86. {
  87. AVMetadata *m= *pm;
  88. if(m){
  89. while(m->count--){
  90. av_free(m->elems[m->count].key);
  91. av_free(m->elems[m->count].value);
  92. }
  93. av_free(m->elems);
  94. }
  95. av_freep(pm);
  96. }
  97. void metadata_conv(AVMetadata **pm, const AVMetadataConv *d_conv,
  98. const AVMetadataConv *s_conv)
  99. {
  100. /* TODO: use binary search to look up the two conversion tables
  101. if the tables are getting big enough that it would matter speed wise */
  102. const AVMetadataConv *sc, *dc;
  103. AVMetadataTag *mtag = NULL;
  104. AVMetadata *dst = NULL;
  105. const char *key;
  106. if (d_conv == s_conv)
  107. return;
  108. while((mtag=av_metadata_get(*pm, "", mtag, AV_METADATA_IGNORE_SUFFIX))) {
  109. key = mtag->key;
  110. if (s_conv)
  111. for (sc=s_conv; sc->native; sc++)
  112. if (!strcasecmp(key, sc->native)) {
  113. key = sc->generic;
  114. break;
  115. }
  116. if (d_conv)
  117. for (dc=d_conv; dc->native; dc++)
  118. if (!strcasecmp(key, dc->generic)) {
  119. key = dc->native;
  120. break;
  121. }
  122. av_metadata_set2(&dst, key, mtag->value, 0);
  123. }
  124. av_metadata_free(pm);
  125. *pm = dst;
  126. }
  127. void av_metadata_conv(AVFormatContext *ctx, const AVMetadataConv *d_conv,
  128. const AVMetadataConv *s_conv)
  129. {
  130. int i;
  131. metadata_conv(&ctx->metadata, d_conv, s_conv);
  132. for (i=0; i<ctx->nb_streams ; i++)
  133. metadata_conv(&ctx->streams [i]->metadata, d_conv, s_conv);
  134. for (i=0; i<ctx->nb_chapters; i++)
  135. metadata_conv(&ctx->chapters[i]->metadata, d_conv, s_conv);
  136. for (i=0; i<ctx->nb_programs; i++)
  137. metadata_conv(&ctx->programs[i]->metadata, d_conv, s_conv);
  138. }