OSDN Git Service

gxf: Include the right header for the avpriv_frame_rate_tab declaration
authorMartin Storsjö <martin@martin.st>
Sun, 7 Oct 2012 09:42:54 +0000 (12:42 +0300)
committerMartin Storsjö <martin@martin.st>
Sun, 7 Oct 2012 11:14:37 +0000 (14:14 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/gxf.c

index f215329..04d75bd 100644 (file)
@@ -23,6 +23,7 @@
 #include "avformat.h"
 #include "internal.h"
 #include "gxf.h"
+#include "libavcodec/mpeg12data.h"
 
 struct gxf_stream_info {
     int64_t first_field;
@@ -185,7 +186,6 @@ static void gxf_material_tags(AVIOContext *pb, int *len, struct gxf_stream_info
  * @return fps as AVRational, or 0 / 0 if unknown
  */
 static AVRational fps_tag2avr(int32_t fps) {
-    extern const AVRational avpriv_frame_rate_tab[];
     if (fps < 1 || fps > 9) fps = 9;
     return avpriv_frame_rate_tab[9 - fps]; // values have opposite order
 }