mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
avformat/avidec: dv does not support palettes
Fixes: memleak Fixes: 26937/clusterfuzz-testcase-minimized-ffmpeg_dem_AVI_fuzzer-5763003338981376 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 1b373b41d940e3058cdfb3d17703e23ed665353c) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
41d3d169b4
commit
d287614620
@ -1419,6 +1419,7 @@ resync:
|
||||
if (avi->stream_index >= 0) {
|
||||
AVStream *st = s->streams[avi->stream_index];
|
||||
AVIStream *ast = st->priv_data;
|
||||
int dv_demux = CONFIG_DV_DEMUXER && avi->dv_demux;
|
||||
int size, err;
|
||||
|
||||
if (get_subtitle_pkt(s, st, pkt))
|
||||
@ -1441,7 +1442,7 @@ resync:
|
||||
return err;
|
||||
size = err;
|
||||
|
||||
if (ast->has_pal && pkt->size < (unsigned)INT_MAX / 2) {
|
||||
if (ast->has_pal && pkt->size < (unsigned)INT_MAX / 2 && !dv_demux) {
|
||||
uint8_t *pal;
|
||||
pal = av_packet_new_side_data(pkt,
|
||||
AV_PKT_DATA_PALETTE,
|
||||
@ -1455,7 +1456,7 @@ resync:
|
||||
}
|
||||
}
|
||||
|
||||
if (CONFIG_DV_DEMUXER && avi->dv_demux) {
|
||||
if (dv_demux) {
|
||||
AVBufferRef *avbuf = pkt->buf;
|
||||
size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
|
||||
pkt->data, pkt->size, pkt->pos);
|
||||
|
Loading…
x
Reference in New Issue
Block a user