Move the codec_id overriding at a slightly better place.
Originally committed as revision 14234 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e1f15d3836
commit
744b4c02c2
@ -563,11 +563,6 @@ int av_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
return ret;
|
||||
st= s->streams[pkt->stream_index];
|
||||
|
||||
if(!pktl && st->codec->codec_id!=CODEC_ID_PROBE)
|
||||
return ret;
|
||||
|
||||
add_to_pktbuf(&s->raw_packet_buffer, pkt);
|
||||
|
||||
switch(st->codec->codec_type){
|
||||
case CODEC_TYPE_VIDEO:
|
||||
if(s->video_codec_id) st->codec->codec_id= s->video_codec_id;
|
||||
@ -580,6 +575,11 @@ int av_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
break;
|
||||
}
|
||||
|
||||
if(!pktl && st->codec->codec_id!=CODEC_ID_PROBE)
|
||||
return ret;
|
||||
|
||||
add_to_pktbuf(&s->raw_packet_buffer, pkt);
|
||||
|
||||
if(st->codec->codec_id == CODEC_ID_PROBE){
|
||||
AVProbeData *pd = &st->probe_data;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user