[FFmpeg-cvslog] h264_parser: Use ff_h264_reset_sei()

Yusuke Nakamura git at videolan.org
Tue Oct 22 19:26:47 CEST 2013


ffmpeg | branch: master | Yusuke Nakamura <muken.the.vfrmaniac at gmail.com> | Mon Oct 14 19:22:42 2013 +0000| [103d073dd7ce23b912df32be8c9524ba25dd5991] | committer: Luca Barbato

h264_parser: Use ff_h264_reset_sei()

Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=103d073dd7ce23b912df32be8c9524ba25dd5991
---

 libavcodec/h264_parser.c |    7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 4412b68..05a40c7 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -181,11 +181,8 @@ static inline int parse_nal_units(AVCodecParserContext *s,
     s->key_frame         = 0;
     s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
 
-    h->avctx                        = avctx;
-    h->sei_recovery_frame_cnt       = -1;
-    h->sei_dpb_output_delay         = 0;
-    h->sei_cpb_removal_delay        = -1;
-    h->sei_buffering_period_present = 0;
+    h->avctx = avctx;
+    ff_h264_reset_sei(h);
 
     if (!buf_size)
         return 0;



More information about the ffmpeg-cvslog mailing list