Commit 7a6a721a authored by reimar's avatar reimar

Fix nuv decoder to use reget_buffer for non-keyframes and correctly

identify non-keyframe RTJPEG frames.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15217 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9b6f96b8
...@@ -132,6 +132,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, ...@@ -132,6 +132,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
NuvContext *c = avctx->priv_data; NuvContext *c = avctx->priv_data;
AVFrame *picture = data; AVFrame *picture = data;
int orig_size = buf_size; int orig_size = buf_size;
int keyframe;
int result;
enum {NUV_UNCOMPRESSED = '0', NUV_RTJPEG = '1', enum {NUV_UNCOMPRESSED = '0', NUV_RTJPEG = '1',
NUV_RTJPEG_IN_LZO = '2', NUV_LZO = '3', NUV_RTJPEG_IN_LZO = '2', NUV_LZO = '3',
NUV_BLACK = 'N', NUV_COPY_LAST = 'L'} comptype; NUV_BLACK = 'N', NUV_COPY_LAST = 'L'} comptype;
...@@ -159,6 +161,15 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, ...@@ -159,6 +161,15 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
return -1; return -1;
} }
comptype = buf[1]; comptype = buf[1];
switch (comptype) {
case NUV_RTJPEG_IN_LZO:
case NUV_RTJPEG:
keyframe = !buf[2]; break;
case NUV_COPY_LAST:
keyframe = 0; break;
default:
keyframe = 1; break;
}
// skip rest of the frameheader. // skip rest of the frameheader.
buf = &buf[12]; buf = &buf[12];
buf_size -= 12; buf_size -= 12;
...@@ -184,18 +195,19 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, ...@@ -184,18 +195,19 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
buf_size -= 12; buf_size -= 12;
} }
if (c->pic.data[0]) if (keyframe && c->pic.data[0])
avctx->release_buffer(avctx, &c->pic); avctx->release_buffer(avctx, &c->pic);
c->pic.reference = 1; c->pic.reference = 1;
c->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_READABLE | c->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_READABLE |
FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
if (avctx->get_buffer(avctx, &c->pic) < 0) { result = keyframe ? avctx->get_buffer(avctx, &c->pic) : avctx->reget_buffer(avctx, &c->pic);
if (result < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1; return -1;
} }
c->pic.pict_type = FF_I_TYPE; c->pic.pict_type = keyframe ? FF_I_TYPE : FF_P_TYPE;
c->pic.key_frame = 1; c->pic.key_frame = keyframe;
// decompress/copy/whatever data // decompress/copy/whatever data
switch (comptype) { switch (comptype) {
case NUV_LZO: case NUV_LZO:
...@@ -220,8 +232,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, ...@@ -220,8 +232,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
break; break;
} }
case NUV_COPY_LAST: { case NUV_COPY_LAST: {
c->pic.pict_type = FF_P_TYPE;
c->pic.key_frame = 0;
/* nothing more to do here */ /* nothing more to do here */
break; break;
} }
......
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