summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 16:51:50 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 16:51:50 +0000
commitc18545929e134845ff57e3e98f494965e42ab10a (patch)
treece6ec00e44d95488780922523fe6c6276536b967 /libavformat/avformat.h
parentf23a9759cee8442b02195a4539f65d041104c9cb (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/avformat.h')
-rw-r--r--libavformat/avformat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 09c465655f..624266ce64 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -217,7 +217,7 @@ typedef struct AVOutputFormat {
* list of supported codec_id-codec_tag pairs, ordered by "better choice first"
* the arrays are all CODEC_ID_NONE terminated
*/
- const struct AVCodecTag **codec_tag;
+ const struct AVCodecTag * const *codec_tag;
enum CodecID subtitle_codec; /**< default subtitle codec */
@@ -287,7 +287,7 @@ typedef struct AVInputFormat {
(RTSP) */
int (*read_pause)(struct AVFormatContext *);
- const struct AVCodecTag **codec_tag;
+ const struct AVCodecTag * const *codec_tag;
/* private fields */
struct AVInputFormat *next;