]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/adtsenc.c
indent
[ffmpeg] / libavformat / adtsenc.c
index 1949fcf5429ee0de213b033a978cc32e02a3eb10..5c65d361d2781478ab3fdef2f3981415bc7fd42a 100644 (file)
@@ -19,8 +19,9 @@
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
+
+#include "libavcodec/bitstream.h"
 #include "avformat.h"
-#include "bitstream.h"
 
 #define ADTS_HEADER_SIZE 7
 
@@ -106,7 +107,7 @@ static int adts_write_packet(AVFormatContext *s, AVPacket *pkt)
 
 AVOutputFormat adts_muxer = {
     "adts",
-    "ADTS AAC",
+    NULL_IF_CONFIG_SMALL("ADTS AAC"),
     "audio/aac",
     "aac",
     sizeof(ADTSContext),