diff options
author | Mashiat Sarker Shakkhar <mashiat.sarker@gmail.com> | 2012-03-28 11:12:13 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-29 01:47:03 +0200 |
commit | 28e8c4d59a7c1a7b2b3b3a2e499b3e67fed1844b (patch) | |
tree | bdcbd32bbf4b6bf6a9d33d7ff0e2535773d1dd35 | |
parent | 63a1b481f62e2611aaeac0f1edc3496eebe644ab (diff) | |
download | ffmpeg-28e8c4d59a7c1a7b2b3b3a2e499b3e67fed1844b.tar.gz |
WMAL: Remove inaccurate and unnecessary doxy
A call to decode_packet() does not always decode a complete WMA packet.
Moreover, this is not the correct place to document calls that are part
of the public API.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rw-r--r-- | libavcodec/wmalosslessdec.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 3ee6285d79..4eb9ebecea 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -1153,14 +1153,6 @@ static void save_bits(WmallDecodeCtx *s, GetBitContext* gb, int len, skip_bits(&s->gb, s->frame_offset); } -/** - * @brief Decode a single WMA packet. - * @param avctx codec context - * @param data the output buffer - * @param data_size number of bytes that were written to the output buffer - * @param avpkt input packet - * @return number of bytes that were read from the input buffer - */ static int decode_packet(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket* avpkt) { |