mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavf: use AVStream.discard to disable queueing attached pictures.
This commit is contained in:
parent
01fcc42b90
commit
40b41be3fa
@ -519,7 +519,8 @@ static void queue_attached_pictures(AVFormatContext *s)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < s->nb_streams; i++)
|
||||
if (s->streams[i]->disposition & AV_DISPOSITION_ATTACHED_PIC) {
|
||||
if (s->streams[i]->disposition & AV_DISPOSITION_ATTACHED_PIC &&
|
||||
s->streams[i]->discard < AVDISCARD_ALL) {
|
||||
AVPacket copy = s->streams[i]->attached_pic;
|
||||
copy.destruct = NULL;
|
||||
add_to_pktbuf(&s->raw_packet_buffer, ©, &s->raw_packet_buffer_end);
|
||||
|
Loading…
Reference in New Issue
Block a user