diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-03-31 10:10:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-04-29 05:52:57 +0200 |
commit | 27b0e6ebfd47b0c11156c18b90fa8c571f0f60c3 (patch) | |
tree | d09e19a8bfe6562cc303834999cdad0507066ed4 /libavcodec/h264.h | |
parent | 0ac8ff618c5e6d878c547a8877e714ed728950ce (diff) | |
download | ffmpeg-27b0e6ebfd47b0c11156c18b90fa8c571f0f60c3.tar.gz |
h264: drop needs_realloc
It is not needed anymore since switching to refcounted frames.
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 94fc029ab9..fc2ee4bb09 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -292,7 +292,6 @@ typedef struct H264Picture { int mbaff; ///< 1 -> MBAFF frame 0-> not MBAFF int field_picture; ///< whether or not picture was encoded in separate fields - int needs_realloc; ///< picture needs to be reallocated (eg due to a frame size change) int reference; int recovered; ///< picture at IDR or recovery point + recovery count } H264Picture; |