Mercurial > libavformat.hg
changeset 4864:7aa7c5853bb6 libavformat
Split bitstream.h, put the bitstream writer stuff in the new file
put_bits.h.
author | stefano |
---|---|
date | Sun, 12 Apr 2009 08:35:26 +0000 |
parents | 0793a33d775f |
children | 1273a2b9c32a |
files | adtsenc.c gif.c movenc.c mpegenc.c swfenc.c |
diffstat | 5 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/adtsenc.c Sun Apr 12 04:01:03 2009 +0000 +++ b/adtsenc.c Sun Apr 12 08:35:26 2009 +0000 @@ -21,6 +21,7 @@ */ #include "libavcodec/bitstream.h" +#include "libavcodec/put_bits.h" #include "libavcodec/internal.h" #include "avformat.h"
--- a/gif.c Sun Apr 12 04:01:03 2009 +0000 +++ b/gif.c Sun Apr 12 08:35:26 2009 +0000 @@ -45,7 +45,7 @@ /* at least they don't use PDP_ENDIAN :) */ #define BITSTREAM_WRITER_LE -#include "libavcodec/bitstream.h" +#include "libavcodec/put_bits.h" /* bitstream minipacket size */ #define GIF_CHUNKS 100
--- a/movenc.c Sun Apr 12 04:01:03 2009 +0000 +++ b/movenc.c Sun Apr 12 08:35:26 2009 +0000 @@ -27,6 +27,7 @@ #include "isom.h" #include "avc.h" #include "libavcodec/bitstream.h" +#include "libavcodec/put_bits.h" #undef NDEBUG #include <assert.h>