diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-05-28 20:14:14 +0000 |
---|---|---|
committer | Howard Chu <hyc@highlandsun.com> | 2010-05-28 20:14:14 +0000 |
commit | 82f1ffc7ba5efc6a99570fa4936b9453e838ca03 (patch) | |
tree | eed13bed69a6179ee7dbddc576bf21c34e58c8f8 /libavcodec/h264.h | |
parent | 23584bec87f2cab947e28ba54b0499492d6e5891 (diff) | |
download | ffmpeg-82f1ffc7ba5efc6a99570fa4936b9453e838ca03.tar.gz |
Cleanup prev commit, flag variable should start with 0
Originally committed as revision 23364 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 7c76b29453..0922ede6f7 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -464,8 +464,8 @@ typedef struct H264Context{ */ int is_avc; ///< this flag is != 0 if codec is avc1 int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4) + int got_first; ///< this flag is != 0 if we've parsed a frame - int first_picture; SPS *sps_buffers[MAX_SPS_COUNT]; PPS *pps_buffers[MAX_PPS_COUNT]; |