diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-17 12:21:27 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-06-17 20:32:20 +0200 |
commit | 251f398798967380ce3fa3d1035e98c33e688338 (patch) | |
tree | dbb55a1578b285e8ca6c6f0a4e28fb93f87a644a /ffplay.c | |
parent | 1125606a1f8bdcabbdd9107831d20e86f0dfeeae (diff) | |
download | ffmpeg-251f398798967380ce3fa3d1035e98c33e688338.tar.gz |
ffplay: use key=val syntax for the buffersrc args
Fix warning:
[src @ ...] Flat options syntax is deprecated, use key=value pairs.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1560,7 +1560,8 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c snprintf(sws_flags_str, sizeof(sws_flags_str), "flags=%d", sws_flags); graph->scale_sws_opts = av_strdup(sws_flags_str); - snprintf(buffersrc_args, sizeof(buffersrc_args), "%d:%d:%d:%d:%d:%d:%d", + snprintf(buffersrc_args, sizeof(buffersrc_args), + "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d", codec->width, codec->height, codec->pix_fmt, is->video_st->time_base.num, is->video_st->time_base.den, codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den); |