diff options
author | James Almer <jamrial@gmail.com> | 2023-07-09 16:20:44 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-07-11 14:26:43 -0300 |
commit | 31ae95d988027a61922d47da622bc17357b49af2 (patch) | |
tree | bde560ac9201be55e2c6955ab971e4d59d4ff0d9 /libavcodec/v4l2_m2m_dec.c | |
parent | 132271c54e565b05c0bf60202710e7c3e9d1f29f (diff) | |
download | ffmpeg-31ae95d988027a61922d47da622bc17357b49af2.tar.gz |
avcodec/v4l2_m2m_dec: remove FF_CODEC_CAP_SETS_PKT_DTS flag
It has no effect on receive_frame() decoders.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/v4l2_m2m_dec.c')
-rw-r--r-- | libavcodec/v4l2_m2m_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v4l2_m2m_dec.c b/libavcodec/v4l2_m2m_dec.c index 4944d08511..aa2d759e1e 100644 --- a/libavcodec/v4l2_m2m_dec.c +++ b/libavcodec/v4l2_m2m_dec.c @@ -253,7 +253,7 @@ static const AVOption options[] = { .bsfs = bsf_name, \ .p.capabilities = AV_CODEC_CAP_HARDWARE | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AVOID_PROBING, \ .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE | \ - FF_CODEC_CAP_SETS_PKT_DTS | FF_CODEC_CAP_INIT_CLEANUP, \ + FF_CODEC_CAP_INIT_CLEANUP, \ .p.wrapper_name = "v4l2m2m", \ } |