Mercurial > libavformat.hg
diff utils.c @ 5058:33a244b7ca65 libavformat
Add ff_ prefixes to exported symbols in libavformat/riff.h.
patch by Daniel Verkamp, aniel drv nu
| author | diego |
|---|---|
| date | Mon, 22 Jun 2009 23:09:34 +0000 |
| parents | 05ecbb54e8bf |
| children | 9fd4808c3916 |
line wrap: on
line diff
--- a/utils.c Mon Jun 22 16:52:02 2009 +0000 +++ b/utils.c Mon Jun 22 23:09:34 2009 +0000 @@ -1904,7 +1904,7 @@ return ret; } -unsigned int codec_get_tag(const AVCodecTag *tags, int id) +unsigned int ff_codec_get_tag(const AVCodecTag *tags, int id) { while (tags->id != CODEC_ID_NONE) { if (tags->id == id) @@ -1914,7 +1914,7 @@ return 0; } -enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag) +enum CodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag) { int i; for(i=0; tags[i].id != CODEC_ID_NONE;i++) { @@ -1935,7 +1935,7 @@ { int i; for(i=0; tags && tags[i]; i++){ - int tag= codec_get_tag(tags[i], id); + int tag= ff_codec_get_tag(tags[i], id); if(tag) return tag; } return 0; @@ -1945,7 +1945,7 @@ { int i; for(i=0; tags && tags[i]; i++){ - enum CodecID id= codec_get_id(tags[i], tag); + enum CodecID id= ff_codec_get_id(tags[i], tag); if(id!=CODEC_ID_NONE) return id; } return CODEC_ID_NONE;
