~ubuntu-branches/ubuntu/precise/gst-plugins-base0.10/precise-proposed

« back to all changes in this revision

Viewing changes to gst-libs/gst/tag/tags.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2011-12-12 12:40:13 UTC
  • mfrom: (36.1.15 experimental)
  • Revision ID: package-import@ubuntu.com-20111212124013-onyadfb150d8c5dk
Tags: 0.10.35.2-2
* debian/libgstreamer-plugins-base.install:
  + Add license translations file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <gst/base/gsttypefindhelper.h>
27
27
#include <gst/gst.h>
28
28
#include "tag.h"
 
29
#include "id3v2.h"
29
30
 
30
31
#include <string.h>
31
32
 
189
190
      G_TYPE_DOUBLE, _("image vertical ppi"),
190
191
      _("Media (image/video) intended vertical pixel density in ppi"), NULL);
191
192
 
 
193
  gst_tag_register (GST_TAG_ID3V2_FRAME, GST_TAG_FLAG_META,
 
194
      GST_TYPE_BUFFER, _("ID3v2 frame"), _("unparsed id3v2 tag frame"),
 
195
      gst_tag_merge_use_first);
 
196
 
192
197
  return NULL;
193
198
}
194
199