comparison libmpdemux/demux_real.c @ 36316:139f2b064ef9

Don't subsequently calculate original_aspect from last movie_aspect. Instead, differentiate between the original aspect ratio stored in or determined from the video file and the forced, i.e. current, aspect ratio (e.g. forced by command line override). This enables multiple independent instances of vd.c again which has been broken by introducing a static variable in r36401. Without the subsequent calculation of original_aspect it now contains nothing but the pure video file aspect ratio which makes it possible to use movie_aspect -1 to set the original aspect ratio which explains the changes in command.c and gui/dialog/menu.c. The changes in vd_mpegpes due to the impact of original_aspect will fix a bug there at the same time where the condition in order to call mpcodecs_config_vo() should only trigger once when the encoded aspect changes. So far, the forced, i.e. current, aspect has been checked. The whole is related to enabling special argument -1 to switch_ratio started in r36391.
author ib
date Wed, 07 Aug 2013 20:41:34 +0000
parents dd02819472cc
children f0e92381681d
comparison
equal deleted inserted replaced
36315:e4ab2ab9eede 36316:139f2b064ef9
1535 sh->bih = calloc(1, sizeof(*sh->bih)); 1535 sh->bih = calloc(1, sizeof(*sh->bih));
1536 sh->bih->biSize = sizeof(*sh->bih); 1536 sh->bih->biSize = sizeof(*sh->bih);
1537 sh->disp_w = sh->bih->biWidth = stream_read_word(demuxer->stream); 1537 sh->disp_w = sh->bih->biWidth = stream_read_word(demuxer->stream);
1538 sh->disp_h = sh->bih->biHeight = stream_read_word(demuxer->stream); 1538 sh->disp_h = sh->bih->biHeight = stream_read_word(demuxer->stream);
1539 if (sh->disp_w > 0 && sh->disp_h > 0) 1539 if (sh->disp_w > 0 && sh->disp_h > 0)
1540 sh->aspect = (float)sh->disp_w / sh->disp_h; 1540 sh->original_aspect = (float)sh->disp_w / sh->disp_h;
1541 sh->bih->biPlanes = 1; 1541 sh->bih->biPlanes = 1;
1542 sh->bih->biBitCount = 24; 1542 sh->bih->biBitCount = 24;
1543 sh->bih->biCompression = sh->format; 1543 sh->bih->biCompression = sh->format;
1544 sh->bih->biSizeImage= sh->bih->biWidth*sh->bih->biHeight*3; 1544 sh->bih->biSizeImage= sh->bih->biWidth*sh->bih->biHeight*3;
1545 1545