diff options
author | Mashiat Sarker Shakkhar <mashiat.sarker@gmail.com> | 2012-04-13 14:00:21 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-14 16:02:24 +0200 |
commit | 2e13f579930af93cf3f53a3424a9df009b34c79e (patch) | |
tree | c8996c37c7d638eb3011a8c8b4ba94e9331dd5a1 | |
parent | 9900dd2d9c9b0612f72279180fcc280ad5564357 (diff) | |
download | ffmpeg-2e13f579930af93cf3f53a3424a9df009b34c79e.tar.gz |
wmal: Warn about missing bitstream splicing feature and ask for sample.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavcodec/wmalosslessdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 46655db7ab..1139392d6d 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -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); |