Revert r19239: It broke four conformance tests.
Originally committed as revision 19241 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
630c97ff4b
commit
df028e8c6a
@ -7708,7 +7708,7 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
//FIXME factorize this with the output code below
|
//FIXME factorize this with the output code below
|
||||||
out = h->delayed_pic[0];
|
out = h->delayed_pic[0];
|
||||||
out_idx = 0;
|
out_idx = 0;
|
||||||
for(i=1; h->delayed_pic[i] && !h->delayed_pic[i]->key_frame; i++)
|
for(i=1; h->delayed_pic[i] && (h->delayed_pic[i]->poc && !h->delayed_pic[i]->key_frame); i++)
|
||||||
if(h->delayed_pic[i]->poc < out->poc){
|
if(h->delayed_pic[i]->poc < out->poc){
|
||||||
out = h->delayed_pic[i];
|
out = h->delayed_pic[i];
|
||||||
out_idx = i;
|
out_idx = i;
|
||||||
@ -7884,12 +7884,12 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
|
|
||||||
out = h->delayed_pic[0];
|
out = h->delayed_pic[0];
|
||||||
out_idx = 0;
|
out_idx = 0;
|
||||||
for(i=1; h->delayed_pic[i] && !h->delayed_pic[i]->key_frame; i++)
|
for(i=1; h->delayed_pic[i] && (h->delayed_pic[i]->poc && !h->delayed_pic[i]->key_frame); i++)
|
||||||
if(h->delayed_pic[i]->poc < out->poc){
|
if(h->delayed_pic[i]->poc < out->poc){
|
||||||
out = h->delayed_pic[i];
|
out = h->delayed_pic[i];
|
||||||
out_idx = i;
|
out_idx = i;
|
||||||
}
|
}
|
||||||
cross_idr = !!h->delayed_pic[i] || h->delayed_pic[0]->key_frame;
|
cross_idr = !h->delayed_pic[0]->poc || !!h->delayed_pic[i] || h->delayed_pic[0]->key_frame;
|
||||||
|
|
||||||
out_of_order = !cross_idr && out->poc < h->outputed_poc;
|
out_of_order = !cross_idr && out->poc < h->outputed_poc;
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ typedef struct {
|
|||||||
static const IdStrMap img_tags[] = {
|
static const IdStrMap img_tags[] = {
|
||||||
{ CODEC_ID_MJPEG , "jpeg"},
|
{ CODEC_ID_MJPEG , "jpeg"},
|
||||||
{ CODEC_ID_MJPEG , "jpg"},
|
{ CODEC_ID_MJPEG , "jpg"},
|
||||||
{ CODEC_ID_LJPEG , "ljpg"},
|
{ CODEC_ID_JPEGLS , "ljpg"},
|
||||||
{ CODEC_ID_PNG , "png"},
|
{ CODEC_ID_PNG , "png"},
|
||||||
{ CODEC_ID_PNG , "mng"},
|
{ CODEC_ID_PNG , "mng"},
|
||||||
{ CODEC_ID_PPM , "ppm"},
|
{ CODEC_ID_PPM , "ppm"},
|
||||||
|
Loading…
Reference in New Issue
Block a user