[SCM] libav/experimental: terminate tag tables by CODEC_ID_NONE

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:29:45 UTC 2013


The following commit has been merged in the experimental branch:
commit 1993f8d6404a123a3c535b714bf1d55e84a81dc2
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Mon Sep 8 00:58:24 2008 +0000

    terminate tag tables by CODEC_ID_NONE
    
    Originally committed as revision 15259 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 01977c1..f1afa82 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -550,6 +550,7 @@ static const AVCodecTag codec_3gp_tags[] = {
     { CODEC_ID_AAC,    MKTAG('m','p','4','a') },
     { CODEC_ID_AMR_NB, MKTAG('s','a','m','r') },
     { CODEC_ID_AMR_WB, MKTAG('s','a','w','b') },
+    { CODEC_ID_NONE, 0 },
 };
 
 static const AVCodecTag mov_pix_fmt_tags[] = {
@@ -566,6 +567,7 @@ static const AVCodecTag codec_ipod_tags[] = {
     { CODEC_ID_AAC,    MKTAG('m','p','4','a') },
     { CODEC_ID_ALAC,   MKTAG('a','l','a','c') },
     { CODEC_ID_AC3,    MKTAG('a','c','-','3') },
+    { CODEC_ID_NONE, 0 },
 };
 
 static int mov_find_codec_tag(AVFormatContext *s, MOVTrack *track)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list