mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
Give context to av_log
Originally committed as revision 24018 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9d3fdf2031
commit
bb943bb8fc
@ -1902,7 +1902,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
|
|||||||
if(h0->current_slice == 0){
|
if(h0->current_slice == 0){
|
||||||
while(h->frame_num != h->prev_frame_num &&
|
while(h->frame_num != h->prev_frame_num &&
|
||||||
h->frame_num != (h->prev_frame_num+1)%(1<<h->sps.log2_max_frame_num)){
|
h->frame_num != (h->prev_frame_num+1)%(1<<h->sps.log2_max_frame_num)){
|
||||||
av_log(NULL, AV_LOG_DEBUG, "Frame num gap %d %d\n", h->frame_num, h->prev_frame_num);
|
av_log(h->s.avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n", h->frame_num, h->prev_frame_num);
|
||||||
if (ff_h264_frame_start(h) < 0)
|
if (ff_h264_frame_start(h) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
h->prev_frame_num++;
|
h->prev_frame_num++;
|
||||||
|
Loading…
Reference in New Issue
Block a user