mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
avconv: in output_packet() don't set decoded_data_size for video.
It's only used for audio.
This commit is contained in:
parent
515901fad2
commit
c6007065ed
1
avconv.c
1
avconv.c
@ -1600,7 +1600,6 @@ static int output_packet(InputStream *ist, int ist_index,
|
|||||||
(ist->st->codec->sample_rate * ist->st->codec->channels);
|
(ist->st->codec->sample_rate * ist->st->codec->channels);
|
||||||
break;}
|
break;}
|
||||||
case AVMEDIA_TYPE_VIDEO:
|
case AVMEDIA_TYPE_VIDEO:
|
||||||
decoded_data_size = (ist->st->codec->width * ist->st->codec->height * 3) / 2;
|
|
||||||
if (!(decoded_frame = avcodec_alloc_frame()))
|
if (!(decoded_frame = avcodec_alloc_frame()))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
avpkt.pts = pkt_pts;
|
avpkt.pts = pkt_pts;
|
||||||
|
Loading…
Reference in New Issue
Block a user