Skip to content

Commit

Permalink
Use correct context for av_log.
Browse files Browse the repository at this point in the history
Fixes ticket #695.
  • Loading branch information
cehoyos committed Nov 30, 2011
1 parent c863d37 commit 9dcd8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/pictordec.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static int decode_frame(AVCodecContext *avctx,
}
}
} else {
av_log_ask_for_sample(s, "uncompressed image\n");
av_log_ask_for_sample(avctx, "uncompressed image\n");
return buf_size;
}

Expand Down

0 comments on commit 9dcd8b8

Please sign in to comment.