[FFmpeg-cvslog] r17565 - trunk/libavcodec/h263dec.c

michael subversion
Tue Feb 24 19:39:42 CET 2009


Author: michael
Date: Tue Feb 24 19:39:42 2009
New Revision: 17565

Log:
Another AVhwaccel hunk from Gwenole Beauchesne.

Modified:
   trunk/libavcodec/h263dec.c

Modified: trunk/libavcodec/h263dec.c
==============================================================================
--- trunk/libavcodec/h263dec.c	Tue Feb 24 19:27:52 2009	(r17564)
+++ trunk/libavcodec/h263dec.c	Tue Feb 24 19:39:42 2009	(r17565)
@@ -687,6 +687,11 @@ retry:
 intrax8_decoded:
     ff_er_frame_end(s);
 
+    if (avctx->hwaccel) {
+        if (avctx->hwaccel->end_frame(avctx) < 0)
+            return -1;
+    }
+
     MPV_frame_end(s);
 
 assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);




More information about the ffmpeg-cvslog mailing list