summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-09-17 04:43:51 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-09-17 04:43:51 +0200
commit9ffa705edd7725285b7375924db76c0c760574cf (patch)
tree2de31aba2df551612974f8330e87bef6ef08ebcb
parent22a20dbb7a874c0c99edfa4d1a5d4bee32f3bb08 (diff)
ffplay: try to fix build failure on apple
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 54f45840f7..9982474af9 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -3241,7 +3241,7 @@ static void toggle_full_screen(VideoState *is)
/* OS X needs to reallocate the SDL overlays */
int i;
for (i = 0; i < VIDEO_PICTURE_QUEUE_SIZE; i++)
- is->pictq[i].reallocate = 1;
+ is->pictq.queue[i].reallocate = 1;
#endif
is_full_screen = !is_full_screen;
video_open(is, 1, NULL);