mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-05 01:16:03 +00:00
Alternative solution for the mpegvideo_split + mov problem.
Originally committed as revision 21625 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
451b353d87
commit
5bfe91e683
5
ffmpeg.c
5
ffmpeg.c
@ -1507,7 +1507,10 @@ static int output_packet(AVInputStream *ist, int ist_index,
|
||||
opkt.flags= pkt->flags;
|
||||
|
||||
//FIXME remove the following 2 lines they shall be replaced by the bitstream filters
|
||||
if(ost->st->codec->codec_id != CODEC_ID_H264) {
|
||||
if( ost->st->codec->codec_id != CODEC_ID_H264
|
||||
&& ost->st->codec->codec_id != CODEC_ID_MPEG1VIDEO
|
||||
&& ost->st->codec->codec_id != CODEC_ID_MPEG2VIDEO
|
||||
) {
|
||||
if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & PKT_FLAG_KEY))
|
||||
opkt.destruct= av_destruct_packet;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user