Skip to content
Snippets Groups Projects
Commit fe78f7cd authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

print a big warning if we mess up and run out of space ...

Originally committed as revision 5052 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b4712e3c
No related branches found
No related tags found
No related merge requests found
...@@ -886,6 +886,8 @@ static inline void dv_encode_video_segment(DVVideoContext *s, ...@@ -886,6 +886,8 @@ static inline void dv_encode_video_segment(DVVideoContext *s,
for (j=0; j<5*6; j++) { for (j=0; j<5*6; j++) {
if (enc_blks[j].partial_bit_count) if (enc_blks[j].partial_bit_count)
pb=dv_encode_ac(&enc_blks[j], pb, &pbs[6*5]); pb=dv_encode_ac(&enc_blks[j], pb, &pbs[6*5]);
if (enc_blks[j].partial_bit_count)
av_log(NULL, AV_LOG_ERROR, "ac bitstream overflow\n");
} }
for (j=0; j<5*6; j++) for (j=0; j<5*6; j++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment