]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - libavcodec/nuv.c
frsh: Export information about the last RTP contract and VRES
[frescor/ffmpeg.git] / libavcodec / nuv.c
index 08f4b79b95d2e0793c85dd601ce9004961002f32..4f049baf901b529e9aced1d833e4004a1e294f19 100644 (file)
@@ -128,7 +128,9 @@ static int codec_reinit(AVCodecContext *avctx, int width, int height, int qualit
 }
 
 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
-                        const uint8_t *buf, int buf_size) {
+                        AVPacket *avpkt) {
+    const uint8_t *buf = avpkt->data;
+    int buf_size = avpkt->size;
     NuvContext *c = avctx->priv_data;
     AVFrame *picture = data;
     int orig_size = buf_size;
@@ -197,7 +199,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
 
     if (keyframe && c->pic.data[0])
         avctx->release_buffer(avctx, &c->pic);
-    c->pic.reference = 1;
+    c->pic.reference = 3;
     c->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_READABLE |
                           FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
     result = keyframe ? avctx->get_buffer(avctx, &c->pic) : avctx->reget_buffer(avctx, &c->pic);
@@ -280,6 +282,6 @@ AVCodec nuv_decoder = {
     decode_end,
     decode_frame,
     CODEC_CAP_DR1,
-    .long_name = NULL_IF_CONFIG_SMALL("NuppelVideo"),
+    .long_name = NULL_IF_CONFIG_SMALL("NuppelVideo/RTJPEG"),
 };