diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-04-11 15:38:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-04-24 10:06:24 +0200 |
commit | 99c554efc8b09c3f1bb2fb41c3da5431085f7470 (patch) | |
tree | ed3b0864fd8a9b7c86b9f33cc483681271ba68c2 /libavcodec/h264.h | |
parent | 5b35b290dd76db64f079b3940f6148c8f273fc17 (diff) | |
download | ffmpeg-99c554efc8b09c3f1bb2fb41c3da5431085f7470.tar.gz |
h264: eliminate low_delay
It is always unconditionally initialized in decode_postinit() and then
immediately used in one place further below. All the other places where
it is accessed are just useless fluff.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index f551d79209..55c31f61b6 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -470,7 +470,6 @@ typedef struct H264Context { int droppable; int coded_picture_number; - int low_delay; int context_initialized; int flags; |