summaryrefslogtreecommitdiff
path: root/libavcodec/dsicinav.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-13 11:59:51 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-13 11:59:51 +0100
commitd88e674a15dc23ca6bb68173dbb7c12e5d668bb5 (patch)
tree0a7d58e61ea7e3e3e692731f7a4e1e119f197689 /libavcodec/dsicinav.c
parent0a5138695aa441ab341b2f00d946c239db69edbf (diff)
parentcb7b47a61dba0b9329ecede5dd3211dc0662dc05 (diff)
Merge commit 'cb7b47a61dba0b9329ecede5dd3211dc0662dc05'
* commit 'cb7b47a61dba0b9329ecede5dd3211dc0662dc05': g726: decode directly to the user-provided AVFrame g723.1: decode directly to the user-provided AVFrame g722: decode directly to the user-provided AVFrame flac: decode directly to the user-provided AVFrame cinaudio: decode directly to the user-provided AVFrame Conflicts: libavcodec/g723_1.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dsicinav.c')
-rw-r--r--libavcodec/dsicinav.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/libavcodec/dsicinav.c b/libavcodec/dsicinav.c
index 76d4d1fc4d..85eafcfcca 100644
--- a/libavcodec/dsicinav.c
+++ b/libavcodec/dsicinav.c
@@ -46,7 +46,6 @@ typedef struct CinVideoContext {
} CinVideoContext;
typedef struct CinAudioContext {
- AVFrame frame;
int initial_decode_frame;
int delta;
} CinAudioContext;
@@ -349,15 +348,13 @@ static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
avctx->channels = 1;
avctx->channel_layout = AV_CH_LAYOUT_MONO;
- avcodec_get_frame_defaults(&cin->frame);
- avctx->coded_frame = &cin->frame;
-
return 0;
}
static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
int *got_frame_ptr, AVPacket *avpkt)
{
+ AVFrame *frame = data;
const uint8_t *buf = avpkt->data;
CinAudioContext *cin = avctx->priv_data;
const uint8_t *buf_end = buf + avpkt->size;
@@ -365,12 +362,12 @@ static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
int delta, ret;
/* get output buffer */
- cin->frame.nb_samples = avpkt->size - cin->initial_decode_frame;
- if ((ret = ff_get_buffer(avctx, &cin->frame)) < 0) {
+ frame->nb_samples = avpkt->size - cin->initial_decode_frame;
+ if ((ret = ff_get_buffer(avctx, frame)) < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret;
}
- samples = (int16_t *)cin->frame.data[0];
+ samples = (int16_t *)frame->data[0];
delta = cin->delta;
if (cin->initial_decode_frame) {
@@ -386,8 +383,7 @@ static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
}
cin->delta = delta;
- *got_frame_ptr = 1;
- *(AVFrame *)data = cin->frame;
+ *got_frame_ptr = 1;
return avpkt->size;
}