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.

90 lines
2.4KB

  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 "metadata.h"
  21. AVMetadataTag *
  22. av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int flags)
  23. {
  24. unsigned int i, j;
  25. if(!m)
  26. return NULL;
  27. if(prev) i= prev - m->elems + 1;
  28. else i= 0;
  29. for(; i<m->count; i++){
  30. const char *s= m->elems[i].key;
  31. if(flags & AV_METADATA_MATCH_CASE) for(j=0; s[j] == key[j] && key[j]; j++);
  32. else for(j=0; toupper(s[j]) == toupper(key[j]) && key[j]; j++);
  33. if(key[j])
  34. continue;
  35. if(s[j] && !(flags & AV_METADATA_IGNORE_SUFFIX))
  36. continue;
  37. return &m->elems[i];
  38. }
  39. return NULL;
  40. }
  41. int av_metadata_set(AVMetadata **pm, AVMetadataTag elem)
  42. {
  43. AVMetadata *m= *pm;
  44. AVMetadataTag *tag= av_metadata_get(m, elem.key, NULL, AV_METADATA_MATCH_CASE);
  45. if(!m)
  46. m=*pm= av_mallocz(sizeof(*m));
  47. if(tag){
  48. av_free(tag->value);
  49. av_free(tag->key);
  50. *tag= m->elems[--m->count];
  51. }else{
  52. AVMetadataTag *tmp= av_realloc(m->elems, (m->count+1) * sizeof(*m->elems));
  53. if(tmp){
  54. m->elems= tmp;
  55. }else
  56. return AVERROR(ENOMEM);
  57. }
  58. if(elem.value){
  59. elem.key = av_strdup(elem.key );
  60. elem.value= av_strdup(elem.value);
  61. m->elems[m->count++]= elem;
  62. }
  63. if(!m->count)
  64. av_freep(pm);
  65. return 0;
  66. }
  67. void av_metadata_free(AVMetadata **pm)
  68. {
  69. AVMetadata *m= *pm;
  70. if(m){
  71. while(m->count--){
  72. av_free(m->elems[m->count].key);
  73. av_free(m->elems[m->count].value);
  74. }
  75. av_free(m->elems);
  76. }
  77. av_freep(pm);
  78. }