use new metadata API in rtsp demuxer
authorAurelien Jacobs <aurel@gnuage.org>
Mon, 2 Feb 2009 23:09:39 +0000 (23:09 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Mon, 2 Feb 2009 23:09:39 +0000 (23:09 +0000)
Originally committed as revision 16961 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtsp.c

index 116383e..e9be143 100644 (file)
@@ -376,11 +376,11 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
         }
         break;
     case 's':
-        av_strlcpy(s->title, p, sizeof(s->title));
+        av_metadata_set(&s->metadata, "title", p);
         break;
     case 'i':
         if (s->nb_streams == 0) {
-            av_strlcpy(s->comment, p, sizeof(s->comment));
+            av_metadata_set(&s->metadata, "comment", p);
             break;
         }
         break;