]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/oggparseflac.c
revert r14983, value is not sample aspect ratio, it is display aspect ratio
[ffmpeg] / libavformat / oggparseflac.c
index d8eff05b0fc4b98cae00e27e1cca980531a48c76..28c6ce365f6cea9d9b36b124b549f819764b8692 100644 (file)
@@ -19,9 +19,9 @@
  */
 
 #include <stdlib.h>
+#include "libavcodec/bitstream.h"
 #include "avformat.h"
-#include "bitstream.h"
-#include "ogg2.h"
+#include "oggdec.h"
 
 #define FLAC_STREAMINFO_SIZE 0x22
 
@@ -85,13 +85,13 @@ old_flac_header (AVFormatContext * s, int idx)
     return 0;
 }
 
-ogg_codec_t flac_codec = {
+const ogg_codec_t ff_flac_codec = {
     .magic = "\177FLAC",
     .magicsize = 5,
     .header = flac_header
 };
 
-ogg_codec_t old_flac_codec = {
+const ogg_codec_t ff_old_flac_codec = {
     .magic = "fLaC",
     .magicsize = 4,
     .header = old_flac_header