diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-17 04:43:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-17 04:43:51 +0200 |
commit | 9ffa705edd7725285b7375924db76c0c760574cf (patch) | |
tree | 2de31aba2df551612974f8330e87bef6ef08ebcb /ffplay.c | |
parent | 22a20dbb7a874c0c99edfa4d1a5d4bee32f3bb08 (diff) | |
download | ffmpeg-9ffa705edd7725285b7375924db76c0c760574cf.tar.gz |
ffplay: try to fix build failure on apple
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |