summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-03-07 20:02:51 +0100
committerNicolas George <nicolas.george@normalesup.org>2012-03-08 17:13:58 +0100
commitfe9818d0047973898473c5723bcb5e02392f579e (patch)
tree16fb034e019c67ce744f8f58e57470e3605160cb /ffplay.c
parentb50767c31d703c40b77d6e8def324b289141d023 (diff)
ffplay: fix two const warnings.
No change in assembly code produced on x86_64.
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffplay.c b/ffplay.c
index 93097e1ee7..bf0a834f0e 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1673,7 +1673,7 @@ static int input_request_frame(AVFilterLink *link)
} else {
picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
av_image_copy(picref->data, picref->linesize,
- priv->frame->data, priv->frame->linesize,
+ (const uint8_t **)(void **)priv->frame->data, priv->frame->linesize,
picref->format, link->w, link->h);
}
av_free_packet(&pkt);
@@ -3217,7 +3217,7 @@ int main(int argc, char **argv)
}
av_init_packet(&flush_pkt);
- flush_pkt.data = "FLUSH";
+ flush_pkt.data = (char *)(intptr_t)"FLUSH";
is = stream_open(input_filename, file_iformat);
if (!is) {