summaryrefslogtreecommitdiff
path: root/libavformat/uncodedframecrcenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/uncodedframecrcenc.c')
-rw-r--r--libavformat/uncodedframecrcenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/uncodedframecrcenc.c b/libavformat/uncodedframecrcenc.c
index ed4532daf1..9702a70007 100644
--- a/libavformat/uncodedframecrcenc.c
+++ b/libavformat/uncodedframecrcenc.c
@@ -133,7 +133,7 @@ static int write_frame(struct AVFormatContext *s, int stream_index,
av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
av_bprintf(&bp, "%d, %10"PRId64"",
stream_index, (*frame)->pts);
- type = s->streams[stream_index]->codec->codec_type;
+ type = s->streams[stream_index]->codecpar->codec_type;
type_name = av_get_media_type_string(type);
av_bprintf(&bp, ", %s", type_name ? type_name : "unknown");
switch (type) {