]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rangecoder.h
Add approved chunks to AAC encoder
[ffmpeg] / libavcodec / rangecoder.h
index 298928ad4395d1d429a6b23df006713a6fd723e8..7d23b252d01afd761dcf5a772898bf39c9f6916f 100644 (file)
@@ -17,7 +17,6 @@
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 
 /**
  * Range coder.
  */
 
-#ifndef AVCODEC_RANGECODER_H
-#define AVCODEC_RANGECODER_H
+#ifndef FFMPEG_RANGECODER_H
+#define FFMPEG_RANGECODER_H
 
 #include <stdint.h>
 #include <assert.h>
-#include "common.h"
+#include "libavutil/common.h"
 
 typedef struct RangeCoder{
     int low;
@@ -139,4 +138,4 @@ static inline int get_rac(RangeCoder *c, uint8_t * const state){
 #endif
 }
 
-#endif // AVCODEC_RANGECODER_H
+#endif /* FFMPEG_RANGECODER_H */