diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-13 02:26:04 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-14 05:08:47 +0100 |
commit | 304e916a92bc17385a485bec2f957e192257ddb6 (patch) | |
tree | 94816ee1652fddba63eb33c55bad1151fc2a262a /libavcodec/h264_sei.c | |
parent | 15210354cf27cf4e24d91f84d66cf471511ce718 (diff) | |
download | ffmpeg-304e916a92bc17385a485bec2f957e192257ddb6.tar.gz |
h264_sei: name buffering period type consistently
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r-- | libavcodec/h264_sei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index 28e044d702..2e4017b67c 100644 --- a/libavcodec/h264_sei.c +++ b/libavcodec/h264_sei.c @@ -238,7 +238,7 @@ int ff_h264_decode_sei(H264Context *h) if (ret < 0) return ret; break; - case SEI_BUFFERING_PERIOD: + case SEI_TYPE_BUFFERING_PERIOD: ret = decode_buffering_period(h); if (ret < 0) return ret; |