FFmpeg
nvdec_mjpeg.c
Go to the documentation of this file.
1 /*
2  * MJPEG HW decode acceleration through NVDEC
3  *
4  * Copyright (c) 2017 Philip Langdale
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "avcodec.h"
24 #include "internal.h"
25 #include "mjpegdec.h"
26 #include "nvdec.h"
27 #include "decode.h"
28 #include "hwaccel_internal.h"
29 
30 static int nvdec_mjpeg_start_frame(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
31 {
32  MJpegDecodeContext *s = avctx->priv_data;
33 
35  CUVIDPICPARAMS *pp = &ctx->pic_params;
36  FrameDecodeData *fdd;
37  NVDECFrame *cf;
38  AVFrame *cur_frame = s->picture;
39 
40  int ret;
41 
42  ret = ff_nvdec_start_frame(avctx, cur_frame);
43  if (ret < 0)
44  return ret;
45 
46  fdd = (FrameDecodeData*)cur_frame->private_ref->data;
47  cf = (NVDECFrame*)fdd->hwaccel_priv;
48 
49  *pp = (CUVIDPICPARAMS) {
50  .PicWidthInMbs = (cur_frame->width + 15) / 16,
51  .FrameHeightInMbs = (cur_frame->height + 15) / 16,
52  .CurrPicIdx = cf->idx,
53 
54  .intra_pic_flag = 1,
55  .ref_pic_flag = 0,
56  };
57 
59 }
60 
61 static int nvdec_mjpeg_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
62 {
63  return 0;
64 }
65 
67  AVBufferRef *hw_frames_ctx)
68 {
69  // Only need storage for the current frame
70  return ff_nvdec_frame_params(avctx, hw_frames_ctx, 1, 0);
71 }
72 
74  .p.name = "mjpeg_nvdec",
75  .p.type = AVMEDIA_TYPE_VIDEO,
76  .p.id = AV_CODEC_ID_MJPEG,
77  .p.pix_fmt = AV_PIX_FMT_CUDA,
78  .start_frame = nvdec_mjpeg_start_frame,
79  .end_frame = ff_nvdec_simple_end_frame,
80  .decode_slice = nvdec_mjpeg_decode_slice,
81  .frame_params = nvdec_mjpeg_frame_params,
82  .init = ff_nvdec_decode_init,
83  .uninit = ff_nvdec_decode_uninit,
84  .priv_data_size = sizeof(NVDECContext),
85 };
ff_mjpeg_nvdec_hwaccel
const FFHWAccel ff_mjpeg_nvdec_hwaccel
Definition: nvdec_mjpeg.c:73
AV_PIX_FMT_CUDA
@ AV_PIX_FMT_CUDA
HW acceleration through CUDA.
Definition: pixfmt.h:260
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
FFHWAccel::p
AVHWAccel p
The public AVHWAccel.
Definition: hwaccel_internal.h:38
FrameDecodeData
This struct stores per-frame lavc-internal data and is attached to it via private_ref.
Definition: decode.h:33
mjpegdec.h
nvdec_mjpeg_start_frame
static int nvdec_mjpeg_start_frame(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: nvdec_mjpeg.c:30
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:375
AVFrame::width
int width
Definition: frame.h:447
internal.h
FFHWAccel
Definition: hwaccel_internal.h:34
ff_nvdec_start_frame
int ff_nvdec_start_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: nvdec.c:561
nvdec_mjpeg_decode_slice
static int nvdec_mjpeg_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: nvdec_mjpeg.c:61
s
#define s(width, name)
Definition: cbs_vp9.c:198
NVDECFrame
Definition: nvdec.h:44
ctx
AVFormatContext * ctx
Definition: movenc.c:49
decode.h
ff_nvdec_simple_end_frame
int ff_nvdec_simple_end_frame(AVCodecContext *avctx)
Definition: nvdec.c:663
nvdec_mjpeg_frame_params
static int nvdec_mjpeg_frame_params(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx)
Definition: nvdec_mjpeg.c:66
hwaccel_internal.h
ff_nvdec_decode_init
int ff_nvdec_decode_init(AVCodecContext *avctx)
Definition: nvdec.c:327
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:480
MJpegDecodeContext
Definition: mjpegdec.h:54
AVCodecInternal::hwaccel_priv_data
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:121
NVDECFrame::idx
unsigned int idx
Definition: nvdec.h:45
size
int size
Definition: twinvq_data.h:10344
nvdec.h
ff_nvdec_decode_uninit
int ff_nvdec_decode_uninit(AVCodecContext *avctx)
Definition: nvdec.c:259
AVFrame::private_ref
AVBufferRef * private_ref
AVBufferRef for internal use by a single libav* library.
Definition: frame.h:771
AVHWAccel::name
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:2094
AV_CODEC_ID_MJPEG
@ AV_CODEC_ID_MJPEG
Definition: codec_id.h:59
avcodec.h
ret
ret
Definition: filter_design.txt:187
AVCodecContext
main external API structure.
Definition: avcodec.h:445
AVFrame::height
int height
Definition: frame.h:447
ff_nvdec_simple_decode_slice
int ff_nvdec_simple_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: nvdec.c:673
buffer
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
Definition: filter_design.txt:49
ff_nvdec_frame_params
int ff_nvdec_frame_params(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx, int dpb_size, int supports_444)
Definition: nvdec.c:695
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
FrameDecodeData::hwaccel_priv
void * hwaccel_priv
Per-frame private data for hwaccels.
Definition: decode.h:51
NVDECContext
Definition: nvdec.h:52