Mercurial > libavformat.hg
changeset 1897:abbc781d608a libavformat
use codec_get_id() instead of deprecated codec_get_[bmp/wav]_id()
author | aurel |
---|---|
date | Sun, 11 Mar 2007 22:16:38 +0000 |
parents | 6d2157d1fc93 |
children | 924bfc59f12c |
files | matroska.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/matroska.c Sun Mar 11 03:36:17 2007 +0000 +++ b/matroska.c Sun Mar 11 22:16:38 2007 +0000 @@ -29,7 +29,7 @@ */ #include "avformat.h" -/* For codec_get_bmp_id and codec_get_wav_id. */ +/* For codec_get_id(). */ #include "riff.h" #include "intfloat_readwrite.h" @@ -2226,7 +2226,7 @@ p = (unsigned char *)track->codec_priv + 16; ((MatroskaVideoTrack *)track)->fourcc = (p[3] << 24) | (p[2] << 16) | (p[1] << 8) | p[0]; - codec_id = codec_get_bmp_id(((MatroskaVideoTrack *)track)->fourcc); + codec_id = codec_get_id(codec_bmp_tags, ((MatroskaVideoTrack *)track)->fourcc); } @@ -2242,7 +2242,7 @@ /* Offset of wFormatTag. Stored in LE. */ p = (unsigned char *)track->codec_priv; tag = (p[1] << 8) | p[0]; - codec_id = codec_get_wav_id(tag); + codec_id = codec_get_id(codec_wav_tags, tag); }