# HG changeset patch # User aurel # Date 1234906838 0 # Node ID aaf07b2acb3c0bfa18f9adf8a8dd2eafde7bbccc # Parent 51119f565c6cd11a9e7d14e4b60ebb4529d18641 use new metadata API in rm (de)muxer diff -r 51119f565c6c -r aaf07b2acb3c Makefile --- a/Makefile Tue Feb 17 15:44:11 2009 +0000 +++ b/Makefile Tue Feb 17 21:40:38 2009 +0000 @@ -155,8 +155,8 @@ OBJS-$(CONFIG_RAWVIDEO_MUXER) += raw.o OBJS-$(CONFIG_REDIR_DEMUXER) += rtsp.o OBJS-$(CONFIG_RL2_DEMUXER) += rl2.o -OBJS-$(CONFIG_RM_DEMUXER) += rmdec.o -OBJS-$(CONFIG_RM_MUXER) += rmenc.o +OBJS-$(CONFIG_RM_DEMUXER) += rmdec.o rm.o +OBJS-$(CONFIG_RM_MUXER) += rmenc.o rm.o OBJS-$(CONFIG_ROQ_DEMUXER) += idroq.o OBJS-$(CONFIG_ROQ_MUXER) += raw.o OBJS-$(CONFIG_RPL_DEMUXER) += rpl.o diff -r 51119f565c6c -r aaf07b2acb3c rm.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rm.c Tue Feb 17 21:40:38 2009 +0000 @@ -0,0 +1,29 @@ +/* + * "Real" compatible muxer and demuxer common code. + * Copyright (c) 2009 Aurelien Jacobs + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "rm.h" + +const char *ff_rm_metadata[4] = { + "title", + "author", + "copyright", + "comment" +}; diff -r 51119f565c6c -r aaf07b2acb3c rm.h --- a/rm.h Tue Feb 17 15:44:11 2009 +0000 +++ b/rm.h Tue Feb 17 21:40:38 2009 +0000 @@ -24,6 +24,8 @@ #include "avformat.h" +extern const char *ff_rm_metadata[4]; + typedef struct RMStream RMStream; RMStream *ff_rm_alloc_rmstream (void); diff -r 51119f565c6c -r aaf07b2acb3c rmdec.c --- a/rmdec.c Tue Feb 17 15:44:11 2009 +0000 +++ b/rmdec.c Tue Feb 17 21:40:38 2009 +0000 @@ -72,6 +72,17 @@ get_strl(pb, buf, buf_size, get_byte(pb)); } +static void rm_read_metadata(AVFormatContext *s, int wide) +{ + char buf[1024]; + int i; + for (i=0; ipb) : get_byte(s->pb); + get_strl(s->pb, buf, sizeof(buf), len); + av_metadata_set(&s->metadata, ff_rm_metadata[i], buf); + } +} + RMStream *ff_rm_alloc_rmstream (void) { RMStream *rms = av_mallocz(sizeof(RMStream)); @@ -95,10 +106,7 @@ if (((version >> 16) & 0xff) == 3) { int64_t startpos = url_ftell(pb); url_fskip(pb, 14); - get_str8(pb, s->title, sizeof(s->title)); - get_str8(pb, s->author, sizeof(s->author)); - get_str8(pb, s->copyright, sizeof(s->copyright)); - get_str8(pb, s->comment, sizeof(s->comment)); + rm_read_metadata(s, 0); if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) { // fourcc (should always be "lpcJ") get_byte(pb); @@ -213,11 +221,7 @@ get_byte(pb); get_byte(pb); get_byte(pb); - - get_str8(pb, s->title, sizeof(s->title)); - get_str8(pb, s->author, sizeof(s->author)); - get_str8(pb, s->copyright, sizeof(s->copyright)); - get_str8(pb, s->comment, sizeof(s->comment)); + rm_read_metadata(s, 0); } } return 0; @@ -364,10 +368,7 @@ flags = get_be16(pb); /* flags */ break; case MKTAG('C', 'O', 'N', 'T'): - get_str16(pb, s->title, sizeof(s->title)); - get_str16(pb, s->author, sizeof(s->author)); - get_str16(pb, s->copyright, sizeof(s->copyright)); - get_str16(pb, s->comment, sizeof(s->comment)); + rm_read_metadata(s, 1); break; case MKTAG('M', 'D', 'P', 'R'): st = av_new_stream(s, 0); diff -r 51119f565c6c -r aaf07b2acb3c rmenc.c --- a/rmenc.c Tue Feb 17 15:44:11 2009 +0000 +++ b/rmenc.c Tue Feb 17 21:40:38 2009 +0000 @@ -70,6 +70,7 @@ const char *desc, *mimetype; int nb_packets, packet_total_size, packet_max_size, size, packet_avg_size, i; int bit_rate, v, duration, flags, data_pos; + AVMetadataTag *tag; start_ptr = s->buf_ptr; @@ -123,14 +124,17 @@ /* comments */ put_tag(s,"CONT"); - size = strlen(ctx->title) + strlen(ctx->author) + strlen(ctx->copyright) + - strlen(ctx->comment) + 4 * 2 + 10; + size = 4 * 2 + 10; + for(i=0; imetadata, ff_rm_metadata[i], NULL, 0); + if(tag) size += strlen(tag->value); + } put_be32(s,size); put_be16(s,0); - put_str(s, ctx->title); - put_str(s, ctx->author); - put_str(s, ctx->copyright); - put_str(s, ctx->comment); + for(i=0; imetadata, ff_rm_metadata[i], NULL, 0); + put_str(s, tag ? tag->value : ""); + } for(i=0;inb_streams;i++) { int codec_data_size;