Commit 2e13f579 authored by Mashiat Sarker Shakkhar's avatar Mashiat Sarker Shakkhar Committed by Diego Biurrun

wmal: Warn about missing bitstream splicing feature and ask for sample.

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 9900dd2d
......@@ -1182,6 +1182,8 @@ static int decode_packet(AVCodecContext *avctx, void *data, int *got_frame_ptr,
packet_sequence_number = get_bits(gb, 4);
skip_bits(gb, 1); // Skip seekable_frame_in_packet, currently ununused
spliced_packet = get_bits1(gb);
if (spliced_packet)
av_log_missing_feature(avctx, "Bitstream splicing", 1);
/* get number of bits that need to be added to the previous frame */
num_bits_prev_frame = get_bits(gb, s->log2_frame_size);
......
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