summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2014-09-06 12:44:02 +0200
committerAlfred E. Heggestad <aeh@db.org>2014-09-06 12:44:02 +0200
commitb0c7c3bbfbde7fe4c33f2a87c810aff2e0496085 (patch)
treee45d3aa054fcb66bb8dbc5a0460d391f12cc164b
parent7278d78bec83b978c38a3abffcafd0a866723cb1 (diff)
avformat: dont use deprecated symbols
-rw-r--r--modules/avformat/avf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/avformat/avf.c b/modules/avformat/avf.c
index 87beda9..a4724da 100644
--- a/modules/avformat/avf.c
+++ b/modules/avformat/avf.c
@@ -290,9 +290,9 @@ static int alloc(struct vidsrc_st **stp, struct vidsrc *vs,
if (ctx->codec_type != AVMEDIA_TYPE_VIDEO)
continue;
- debug("avformat: stream %u: %u x %u codec=%s"
+ debug("avformat: stream %u: %u x %u "
" time_base=%d/%d\n",
- i, ctx->width, ctx->height, ctx->codec_name,
+ i, ctx->width, ctx->height,
ctx->time_base.num, ctx->time_base.den);
st->sz.w = ctx->width;