diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-08-26 19:05:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-08-26 19:05:44 +0000 |
commit | 95ae72b7e063cb02aa17c7f0c7d759844a37e526 (patch) | |
tree | fce2f7de2ba52379302e234fb30d1de82f0e63f9 /libavcodec/h264.c | |
parent | 5b2bf9434078d0a57482658d82a26c3b2a13493d (diff) | |
download | ffmpeg-95ae72b7e063cb02aa17c7f0c7d759844a37e526.tar.gz |
Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf uni-stuttgart de)
Originally committed as revision 4540 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 40f3c1739a..dce728d7d0 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3999,7 +3999,7 @@ static int decode_ref_pic_marking(H264Context *h){ if(opcode==MMCO_SHORT2UNUSED || opcode==MMCO_SHORT2LONG){ h->mmco[i].short_frame_num= (h->frame_num - get_ue_golomb(&s->gb) - 1) & ((1<<h->sps.log2_max_frame_num)-1); //FIXME fields /* if(h->mmco[i].short_frame_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_frame_num ] == NULL){ - fprintf(stderr, "illegal short ref in memory management control operation %d\n", mmco); + av_log(s->avctx, AV_LOG_ERROR, "illegal short ref in memory management control operation %d\n", mmco); return -1; }*/ } |