mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
wmal: Warn about missing bitstream splicing feature and ask for sample.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
parent
9900dd2d9c
commit
2e13f57993
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user