diff mpeg12.c @ 1328:ca3122e0a3cd libavcodec

2x100l
author michaelni
date Fri, 27 Jun 2003 12:58:40 +0000
parents 6cdd3b8f4fd3
children 44c94325810c
line wrap: on
line diff
--- a/mpeg12.c	Thu Jun 26 11:31:34 2003 +0000
+++ b/mpeg12.c	Fri Jun 27 12:58:40 2003 +0000
@@ -2023,14 +2023,14 @@
         MPV_frame_end(s);
 
         if (s->pict_type == B_TYPE || s->low_delay) {
-            *pict= *(AVFrame*)&s->current_picture;
+            *pict= *(AVFrame*)s->current_picture_ptr;
             ff_print_debug_info(s, s->current_picture_ptr);
         } else {
             s->picture_number++;
             /* latency of 1 frame for I and P frames */
             /* XXX: use another variable than picture_number */
             if (s->last_picture_ptr != NULL) {
-                *pict= *(AVFrame*)&s->last_picture;
+                *pict= *(AVFrame*)s->last_picture_ptr;
                  ff_print_debug_info(s, s->last_picture_ptr);
             }
         }