Commit 5dbb0ca4 authored by pross's avatar pross

Support IFF ANNO (annotation) chunk type

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21847 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 299c8532
......@@ -51,6 +51,7 @@
#define ID_NAME MKTAG('N','A','M','E')
#define ID_TEXT MKTAG('T','E','X','T')
#define ID_BODY MKTAG('B','O','D','Y')
#define ID_ANNO MKTAG('A','N','N','O')
#define LEFT 2
#define RIGHT 4
......@@ -99,6 +100,7 @@ static int iff_read_header(AVFormatContext *s,
uint32_t chunk_id, data_size;
int padding, done = 0;
int compression = -1;
char *buf;
st = av_new_stream(s, 0);
if (!st)
......@@ -156,6 +158,15 @@ static int iff_read_header(AVFormatContext *s,
url_fskip(pb, 4); // source page width, height
break;
case ID_ANNO:
buf = av_malloc(data_size + 1);
if (!buf)
break;
get_buffer(pb, buf, data_size);
buf[data_size] = 0;
av_metadata_set2(&s->metadata, "comment", buf, AV_METADATA_DONT_STRDUP_VAL);
break;
default:
url_fseek(pb, data_size + padding, SEEK_CUR);
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment