Commit 13b77e09 authored by Derek Buitenhuis's avatar Derek Buitenhuis

Merge commit '33275a0d'

* commit '33275a0d':
  ac3dec: change logging of skipped E-AC-3 substreams.
Merged-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parents 15cb5257 33275a0d
......@@ -1445,8 +1445,9 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
/* skip frame if CRC is ok. otherwise use error concealment. */
/* TODO: add support for substreams and dependent frames */
if (s->frame_type == EAC3_FRAME_TYPE_DEPENDENT || s->substreamid) {
av_log(avctx, AV_LOG_WARNING, "unsupported frame type : "
"skipping frame\n");
av_log(avctx, AV_LOG_DEBUG,
"unsupported frame type %d: skipping frame\n",
s->frame_type);
*got_frame_ptr = 0;
return buf_size;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment