forked from FFmpeg/FFmpeg
avformat/framecrc: add AVFMT_NODIMENSIONS flag
Framecrc does not need frame dimensions to work correctly. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
d89fbfd4df
commit
aea63ea7f5
1 changed files with 1 additions and 1 deletions
|
@ -78,5 +78,5 @@ const FFOutputFormat ff_framecrc_muxer = {
|
||||||
.write_header = framecrc_write_header,
|
.write_header = framecrc_write_header,
|
||||||
.write_packet = framecrc_write_packet,
|
.write_packet = framecrc_write_packet,
|
||||||
.p.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
|
.p.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
|
||||||
AVFMT_TS_NEGATIVE,
|
AVFMT_TS_NEGATIVE | AVFMT_NODIMENSIONS,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue