diff options
author | Martin Storsjö <martin@martin.st> | 2015-02-19 21:04:45 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-02-20 19:28:44 +0200 |
commit | 8bdbf49c6f4d9473183a3c45ec70d611eb6183cd (patch) | |
tree | ef1de69ad5c19b7bc0348e4ff01b20ce47316d24 | |
parent | ba2e07909b848e583245856a59d0fe1dd08f917e (diff) | |
download | ffmpeg-8bdbf49c6f4d9473183a3c45ec70d611eb6183cd.tar.gz |
rtpdec_h264: Include the right header for AV_RB16
Including libavcodec/get_bits.h is superfluous for AV_RB16 - nothing
in this file uses any actual bitstream reader.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/rtpdec_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index faf868f5e0..7abfde7365 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -35,8 +35,8 @@ #include "libavutil/attributes.h" #include "libavutil/base64.h" +#include "libavutil/intreadwrite.h" #include "libavutil/avstring.h" -#include "libavcodec/get_bits.h" #include "avformat.h" #include "network.h" |