You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
ffplay: set default window size before starting audio
Fixes ticket #2381. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
7
ffplay.c
7
ffplay.c
@@ -2818,6 +2818,13 @@ static int read_thread(void *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
is->show_mode = show_mode;
|
is->show_mode = show_mode;
|
||||||
|
if (st_index[AVMEDIA_TYPE_VIDEO] >= 0) {
|
||||||
|
AVStream *st = ic->streams[st_index[AVMEDIA_TYPE_VIDEO]];
|
||||||
|
AVCodecContext *avctx = st->codec;
|
||||||
|
VideoPicture vp = {.width = avctx->width, .height = avctx->height, .sar = av_guess_sample_aspect_ratio(ic, st, NULL)};
|
||||||
|
if (vp.width)
|
||||||
|
set_default_window_size(&vp);
|
||||||
|
}
|
||||||
|
|
||||||
/* open the streams */
|
/* open the streams */
|
||||||
if (st_index[AVMEDIA_TYPE_AUDIO] >= 0) {
|
if (st_index[AVMEDIA_TYPE_AUDIO] >= 0) {
|
||||||
|
Reference in New Issue
Block a user