diff internal.h @ 6033:c7b98381ec2d libavformat

Move AVCodecTag from riff.h into internal.h. Patch by Francesco Lavra, francescolavra interfree it
author cehoyos
date Sat, 22 May 2010 16:01:32 +0000
parents ee42a04b24f2
children 3877522243ec
line wrap: on
line diff
--- a/internal.h	Sat May 22 15:56:49 2010 +0000
+++ b/internal.h	Sat May 22 16:01:32 2010 +0000
@@ -24,6 +24,11 @@
 #include <stdint.h>
 #include "avformat.h"
 
+typedef struct AVCodecTag {
+    enum CodecID id;
+    unsigned int tag;
+} AVCodecTag;
+
 void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem);
 
 #ifdef __GNUC__