diff options
author | Guillaume Martres <smarter@ubuntu.com> | 2013-12-10 15:37:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-10 16:20:48 +0100 |
commit | 679a6377e4948bce6e2cb28cf7ced4b1738e906e (patch) | |
tree | 4fc0206f5fe0180c16ef0c8bfc098fc672403e58 /libavcodec/hevc.c | |
parent | 6026a5ad4f135476c7a1f51f8cfa7f4cc2ca0283 (diff) | |
download | ffmpeg-679a6377e4948bce6e2cb28cf7ced4b1738e906e.tar.gz |
hevc: avoid some unnecessary differences with libav
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r-- | libavcodec/hevc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 06f4b1654b..553c60de22 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -2294,7 +2294,7 @@ static int decode_nal_unit(HEVCContext *s, const uint8_t *nal, int length) } /* FIXME: This is adapted from ff_h264_decode_nal, avoiding duplication - between these functions would be nice. */ + * between these functions would be nice. */ int ff_hevc_extract_rbsp(HEVCContext *s, const uint8_t *src, int length, HEVCNAL *nal) { @@ -2857,7 +2857,7 @@ static int hevc_decode_extradata(HEVCContext *s) avctx->extradata[2] > 1)) { /* It seems the extradata is encoded as hvcC format. * Temporarily, we support configurationVersion==0 until 14496-15 3rd - * finalized. When finalized, configurationVersion will be 1 and we + * is finalized. When finalized, configurationVersion will be 1 and we * can recognize hvcC by checking if avctx->extradata[0]==1 or not. */ int i, j, num_arrays, nal_len_size; |