diff options
author | Reimar Döffinger | 2008-08-24 16:51:50 +0000 |
---|---|---|
committer | Reimar Döffinger | 2008-08-24 16:51:50 +0000 |
commit | c18545929e134845ff57e3e98f494965e42ab10a (patch) | |
tree | ce6ec00e44d95488780922523fe6c6276536b967 /libavformat/oma.c | |
parent | f23a9759cee8442b02195a4539f65d041104c9cb (diff) |
Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oma.c')
-rw-r--r-- | libavformat/oma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oma.c b/libavformat/oma.c index 653f41301f..de632ff27b 100644 --- a/libavformat/oma.c +++ b/libavformat/oma.c @@ -195,6 +195,6 @@ AVInputFormat oma_demuxer = { pcm_read_seek, .flags= AVFMT_GENERIC_INDEX, .extensions = "oma,aa3", - .codec_tag= (const AVCodecTag*[]){codec_oma_tags, 0}, + .codec_tag= (const AVCodecTag* const []){codec_oma_tags, 0}, }; |