[SCM] libav/experimental: simplify

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:01:21 UTC 2013


The following commit has been merged in the experimental branch:
commit b3e104366a5705625b040c3d822f6ba1b0e44f66
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Fri Jun 8 17:34:37 2007 +0000

    simplify
    
    Originally committed as revision 9258 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 8cf7a9f..988baf9 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -552,10 +552,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
 
         if (st) {
             if (language[0] != 0) {
-                st->language[0] = language[0];
-                st->language[1] = language[1];
-                st->language[2] = language[2];
-                st->language[3] = language[3];
+                memcpy(st->language, language, 4);
             }
 
             if (stream_type == STREAM_TYPE_SUBTITLE_DVB) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list