Move AVCodecTag from riff.h into internal.h.

Patch by Francesco Lavra, francescolavra interfree it

Originally committed as revision 23250 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Francesco Lavra
2010-05-22 16:01:32 +00:00
committed by Carl Eugen Hoyos
parent 83c2707908
commit 80b39e1ca6
12 changed files with 16 additions and 10 deletions

View File

@@ -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__