changeset 5025:e1d0e133afba libavformat

Do not include libavcodec/internal.h in the ADTS muxer.
author alexc
date Fri, 12 Jun 2009 19:49:46 +0000
parents 0d2573b3397b
children 73338486a311
files adtsenc.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/adtsenc.c	Fri Jun 12 17:39:56 2009 +0000
+++ b/adtsenc.c	Fri Jun 12 19:49:46 2009 +0000
@@ -22,7 +22,6 @@
 
 #include "libavcodec/get_bits.h"
 #include "libavcodec/put_bits.h"
-#include "libavcodec/internal.h"
 #include "libavcodec/mpeg4audio.h"
 #include "avformat.h"
 
@@ -64,7 +63,7 @@
         return -1;
     }
     if (get_bits(&gb, 1)) {
-        ff_log_missing_feature(s, "Signaled SBR or PS", 0);
+        av_log(s, AV_LOG_ERROR, "Signaled SBR or PS is not supported\n");
         return -1;
     }
     if (!adts->channel_conf) {