Searched refs:hwaccel (Results 1 - 25 of 28) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dblockdsp_init.c51 if (CONFIG_XVMC && avctx->hwaccel && avctx->hwaccel->decode_mb)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dh263dec.c150 if (s->divx_packed || s->avctx->hwaccel) {
186 if (s->avctx->hwaccel) {
188 ret = s->avctx->hwaccel->decode_slice(s->avctx, start, s->gb.buffer_end - start);
574 if (!s->divx_packed && !avctx->hwaccel)
582 if (avctx->hwaccel) {
583 ret = avctx->hwaccel->start_frame(avctx, s->gb.buffer,
637 if (avctx->hwaccel) {
638 ret = avctx->hwaccel->end_frame(avctx);
648 if (!s->divx_packed && avctx->hwaccel)
H A Dutils.c881 const AVHWAccel *hwaccel = avctx->hwaccel; local
904 if (hwaccel && hwaccel->alloc_frame) {
905 ret = hwaccel->alloc_frame(avctx, frame);
1158 AVHWAccel *hwaccel = NULL; local
1160 while ((hwaccel = av_hwaccel_next(hwaccel)))
1161 if (hwaccel->id == codec_id
1162 && hwaccel
1184 AVHWAccel *hwaccel; local
3399 av_register_hwaccel(AVHWAccel *hwaccel) argument
3408 av_hwaccel_next(AVHWAccel *hwaccel) argument
[all...]
H A Dh264_picture.c176 if (avctx->hwaccel) {
177 if (avctx->hwaccel->end_frame(avctx) < 0)
H A Derror_resilience.c708 s->avctx->hwaccel && s->avctx->hwaccel->decode_mb &&
773 if(s->avctx->hwaccel && s->avctx->hwaccel->decode_slice ||
798 if (s->avctx->hwaccel && s->avctx->hwaccel->decode_slice)
1192 if (CONFIG_XVMC && s->avctx->hwaccel && s->avctx->hwaccel->decode_mb)
H A Dmpeg12dec.c1236 if (avctx->hwaccel || uses_vdpau(avctx))
1240 if (avctx->hwaccel && avctx->pix_fmt == AV_PIX_FMT_XVMC) {
1672 if (s->avctx->hwaccel &&
1674 if (s->avctx->hwaccel->end_frame(s->avctx) < 0)
1687 if (avctx->hwaccel) {
1688 if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0)
1762 if (avctx->hwaccel && avctx->hwaccel->decode_slice) {
1769 if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
2026 if (s->avctx->hwaccel) {
[all...]
H A Doptions.c197 dest->hwaccel = NULL;
H A Davcodec.h2608 struct AVHWAccel *hwaccel; member in struct:AVCodecContext
3294 * Initialize the hwaccel private data.
3296 * This will be called from ff_get_format(), after hwaccel and
3297 * hwaccel_context are set and the hwaccel private data in AVCodecInternal
3303 * Uninitialize the hwaccel private data.
3305 * This will be called from get_format() or avcodec_close(), after hwaccel
5063 * Register the hardware accelerator hwaccel.
5065 void av_register_hwaccel(AVHWAccel *hwaccel);
5068 * If hwaccel is NULL, returns the first registered hardware accelerator,
5069 * if hwaccel i
[all...]
H A Dmpegvideo.c441 if (s->avctx->hwaccel || s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
515 if (s->avctx->hwaccel) {
517 if (s->avctx->hwaccel->frame_priv_data_size) {
518 pic->hwaccel_priv_buf = av_buffer_allocz(s->avctx->hwaccel->frame_priv_data_size);
520 av_log(s->avctx, AV_LOG_ERROR, "alloc_frame_buffer() failed (hwaccel private data allocation)\n");
1871 if (!avctx->hwaccel && !(avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)) {
2115 if (avctx->hwaccel || !mbtype_table
2914 s->avctx->hwaccel && s->avctx->hwaccel->decode_mb) {
2915 s->avctx->hwaccel
[all...]
H A Dh264_slice.c267 if (h->avctx->hwaccel) {
268 const AVHWAccel *hwaccel = h->avctx->hwaccel; local
270 if (hwaccel->frame_priv_data_size) {
271 pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_priv_data_size);
277 if (!h->avctx->hwaccel && CONFIG_GRAY && h->flags & CODEC_FLAG_GRAY && pic->f.data[2]) {
753 if(!h->frame_recovered && !h->avctx->hwaccel &&
2545 if (h->avctx->hwaccel ||
H A Dpthread_frame.c225 dst->hwaccel = src->hwaccel;
H A Dh264.c979 if (setup_finished && !h->avctx->hwaccel)
1627 if (h->avctx->hwaccel &&
1628 (ret = h->avctx->hwaccel->start_frame(h->avctx, NULL, 0)) < 0)
1636 if (avctx->hwaccel) {
1637 ret = avctx->hwaccel->decode_slice(avctx,
H A Dvc1dec.c5865 if (avctx->hwaccel ||
5872 if (avctx->hwaccel ||
5926 if (avctx->hwaccel ||
6074 } else if (avctx->hwaccel) {
6078 if (avctx->hwaccel->start_frame(avctx, buf_start, buf_start_second_field - buf_start) < 0)
6080 if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_start_second_field - buf_start) < 0)
6082 if (avctx->hwaccel->end_frame(avctx) < 0)
6096 if (avctx->hwaccel->start_frame(avctx, buf_start_second_field, (buf + buf_size) - buf_start_second_field) < 0)
6098 if (avctx->hwaccel->decode_slice(avctx, buf_start_second_field, (buf + buf_size) - buf_start_second_field) < 0)
6100 if (avctx->hwaccel
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh263dec.c109 avctx->hwaccel= ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
135 if(s->divx_packed || s->avctx->hwaccel){
161 if (s->avctx->hwaccel) {
165 return s->avctx->hwaccel->decode_slice(s->avctx, start, end - start);
638 if (avctx->hwaccel) {
639 if (avctx->hwaccel->start_frame(avctx, s->gb.buffer, s->gb.buffer_end - s->gb.buffer) < 0)
717 if (avctx->hwaccel) {
718 if (avctx->hwaccel->end_frame(avctx) < 0)
H A Dutils.c1738 void av_register_hwaccel(AVHWAccel *hwaccel) argument
1743 *p = hwaccel;
1744 hwaccel->next = NULL;
1747 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel) argument
1749 return hwaccel ? hwaccel->next : first_hwaccel;
1754 AVHWAccel *hwaccel=NULL; local
1756 while((hwaccel= av_hwaccel_next(hwaccel))){
1757 if ( hwaccel
[all...]
H A Dmpeg12.c1289 avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
1292 avctx->hwaccel ||
1604 if (avctx->hwaccel) {
1605 if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0)
1684 if (avctx->hwaccel) {
1691 if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
1899 if (s->avctx->hwaccel) {
1900 if (s->avctx->hwaccel->end_frame(s->avctx) < 0)
2033 avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
2035 if (avctx->pix_fmt == PIX_FMT_XVMC_MPEG2_IDCT || avctx->hwaccel ||
[all...]
H A Davcodec.h2898 struct AVHWAccel *hwaccel; member in struct:AVCodecContext
4705 * Register the hardware accelerator hwaccel.
4707 void av_register_hwaccel(AVHWAccel *hwaccel);
4710 * If hwaccel is NULL, returns the first registered hardware accelerator,
4711 * if hwaccel is non-NULL, returns the next registered hardware accelerator
4712 * after hwaccel, or NULL if hwaccel is the last one.
4714 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel);
H A Dmpegvideo.c250 if (s->avctx->hwaccel) {
252 if (s->avctx->hwaccel->priv_data_size) {
253 pic->f.hwaccel_picture_private = av_mallocz(s->avctx->hwaccel->priv_data_size);
255 av_log(s->avctx, AV_LOG_ERROR, "alloc_frame_buffer() failed (hwaccel private data allocation)\n");
1360 !s->avctx->hwaccel &&
1515 if (s->avctx->hwaccel || !pict || !pict->mb_type)
2544 if (!s->avctx->hwaccel
H A Derror_resilience.c823 if (s->avctx->hwaccel)
895 s->avctx->hwaccel ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/mac80211/
H A Dwpa.c53 /* hwaccel - with no need for SW-generated MMIC */
143 /* hwaccel - with no need for software-generated IV */
170 /* hwaccel - with software IV */
203 int hdrlen, res, hwaccel = 0, wpa_test = 0; local
227 hwaccel = 1;
233 hdr->addr1, hwaccel, rx->queue,
357 * hwaccel has no need for preallocated room for CCMP
391 /* hwaccel - with software CCMP header */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h2326 struct AVHWAccel *hwaccel; member in struct:AVCodecContext
3347 * Registers the hardware accelerator \p hwaccel.
3349 void av_register_hwaccel(AVHWAccel *hwaccel);
3352 * If hwaccel is NULL, returns the first registered hardware accelerator,
3353 * if hwaccel is non-NULL, returns the next registered hardware accelerator
3354 * after hwaccel, or NULL if hwaccel is the last one.
3356 AVHWAccel *av_hwaccel_next(AVHWAccel *hwaccel);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg.c2219 const HWAccel *hwaccel; local
2224 hwaccel = get_hwaccel(*p);
2225 if (!hwaccel ||
2226 (ist->active_hwaccel_id && ist->active_hwaccel_id != hwaccel->id) ||
2227 (ist->hwaccel_id != HWACCEL_AUTO && ist->hwaccel_id != hwaccel->id))
2230 ret = hwaccel->init(s);
2232 if (ist->hwaccel_id == hwaccel->id) {
2234 "%s hwaccel requested for input stream #%d:%d, "
2235 "but cannot be initialized.\n", hwaccel->name,
2241 ist->active_hwaccel_id = hwaccel
[all...]
H A Dffmpeg_opt.c571 char *framerate = NULL, *hwaccel = NULL, *hwaccel_device = NULL; local
650 MATCH_PER_STREAM_OPT(hwaccels, str, hwaccel, ic, st);
651 if (hwaccel) {
652 if (!strcmp(hwaccel, "none"))
654 else if (!strcmp(hwaccel, "auto"))
659 if (!strcmp(hwaccels[i].name, hwaccel)) {
666 av_log(NULL, AV_LOG_FATAL, "Unrecognized hwaccel: %s.\n",
667 hwaccel);
2951 { "hwaccel", OPT_VIDEO | OPT_STRING | HAS_ARG | OPT_EXPERT |
2953 "use HW accelerated decoding", "hwaccel nam
[all...]
H A Dconfigure162 --disable-hwaccel=NAME disable hwaccel NAME
163 --enable-hwaccel=NAME enable hwaccel NAME
2755 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
5339 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dconfigure127 --disable-hwaccel=NAME disable hwaccel NAME
128 --enable-hwaccel=NAME enable hwaccel NAME
1752 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
3253 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do

Completed in 415 milliseconds

12