2010-01-30 17:57:40 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2002-03-06 21:54:43 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
2002-07-28 17:54:26 +02:00
|
|
|
#include <time.h>
|
2010-01-20 15:31:13 +01:00
|
|
|
#include <stdbool.h>
|
2012-07-31 23:37:56 +02:00
|
|
|
#include <sys/types.h>
|
2002-03-06 21:54:43 +01:00
|
|
|
|
2012-01-28 12:41:36 +01:00
|
|
|
#include <libavutil/common.h>
|
|
|
|
#include <libavutil/opt.h>
|
2012-02-01 19:01:16 +01:00
|
|
|
#include <libavutil/intreadwrite.h>
|
2012-12-11 18:16:42 +01:00
|
|
|
#include <libavutil/pixdesc.h>
|
2012-01-28 12:41:36 +01:00
|
|
|
|
2012-11-10 16:19:45 +01:00
|
|
|
#include "compat/libav.h"
|
|
|
|
|
2010-10-16 03:33:38 +02:00
|
|
|
#include "talloc.h"
|
2002-03-06 21:54:43 +01:00
|
|
|
#include "config.h"
|
2013-12-17 02:39:45 +01:00
|
|
|
#include "common/msg.h"
|
2013-12-17 02:02:25 +01:00
|
|
|
#include "options/options.h"
|
2013-12-17 02:39:45 +01:00
|
|
|
#include "bstr/bstr.h"
|
|
|
|
#include "common/av_opts.h"
|
|
|
|
#include "common/av_common.h"
|
|
|
|
#include "common/codecs.h"
|
2002-03-06 21:54:43 +01:00
|
|
|
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "compat/mpbswap.h"
|
|
|
|
#include "video/fmt-conversion.h"
|
2002-03-06 21:54:43 +01:00
|
|
|
|
2009-11-21 19:53:10 +01:00
|
|
|
#include "vd.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "video/img_format.h"
|
2012-11-04 17:17:11 +01:00
|
|
|
#include "video/filter/vf.h"
|
2013-11-04 00:00:18 +01:00
|
|
|
#include "video/decode/dec_video.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "demux/stheader.h"
|
2013-11-18 18:46:44 +01:00
|
|
|
#include "demux/packet.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "video/csputils.h"
|
2002-03-06 21:54:43 +01:00
|
|
|
|
2012-12-11 18:27:34 +01:00
|
|
|
#include "lavc.h"
|
2002-03-06 21:54:43 +01:00
|
|
|
|
mp_image: simplify image allocation
mp_image_alloc_planes() allocated images with minimal stride, even if
the resulting stride was unaligned. It was the responsibility of
vf_get_image() to set an image's width to something larger than
required to get an aligned stride, and then crop it. Always allocate
with aligned strides instead.
Get rid of IMGFMT_IF09 special handling. This format is not used
anymore. (IF09 has 4x4 chroma sub-sampling, and that is what it was
mainly used for - this is still supported.) Get rid of swapped chroma
plane allocation. This is not used anywhere, and VOs like vo_xv,
vo_direct3d and vo_sdl do their own swapping.
Always round chroma width/height up instead of down. Consider 4:2:0 and
an uneven image size. For luma, the size was left uneven, and the chroma
size was rounded down. This doesn't make sense, because chroma would be
missing for the bottom/right border.
Remove mp_image_new_empty() and mp_image_alloc_planes(), they were not
used anymore, except in draw_bmp.c. (It's still allowed to setup
mp_images manually, you just can't allocate image data with them
anymore - this is also done in draw_bmp.c.)
2012-12-19 12:04:32 +01:00
|
|
|
#if AVPALETTE_SIZE != MP_PALETTE_SIZE
|
|
|
|
#error palette too large, adapt video/mp_image.h:MP_PALETTE_SIZE
|
2009-12-26 12:51:19 +01:00
|
|
|
#endif
|
|
|
|
|
2013-12-17 02:02:25 +01:00
|
|
|
#include "options/m_option.h"
|
2002-06-02 14:48:55 +02:00
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static void init_avctx(struct dec_video *vd, const char *decoder,
|
2013-08-11 23:23:12 +02:00
|
|
|
struct vd_lavc_hwdec *hwdec);
|
2013-11-23 21:36:20 +01:00
|
|
|
static void uninit_avctx(struct dec_video *vd);
|
2002-07-16 02:56:12 +02:00
|
|
|
|
2014-03-16 09:21:21 +01:00
|
|
|
static int get_buffer2_hwdec(AVCodecContext *avctx, AVFrame *pic, int flags);
|
2013-11-29 17:39:57 +01:00
|
|
|
static enum AVPixelFormat get_format_hwdec(struct AVCodecContext *avctx,
|
|
|
|
const enum AVPixelFormat *pix_fmt);
|
2012-11-06 15:27:44 +01:00
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static void uninit(struct dec_video *vd);
|
2003-07-02 00:05:46 +02:00
|
|
|
|
2014-06-11 01:35:39 +02:00
|
|
|
#define OPT_BASE_STRUCT struct vd_lavc_params
|
|
|
|
|
|
|
|
struct vd_lavc_params {
|
|
|
|
int fast;
|
|
|
|
int show_all;
|
2014-06-13 02:03:45 +02:00
|
|
|
int skip_loop_filter;
|
|
|
|
int skip_idct;
|
|
|
|
int skip_frame;
|
2014-06-11 01:35:39 +02:00
|
|
|
int threads;
|
|
|
|
int bitexact;
|
|
|
|
int check_hw_profile;
|
|
|
|
char *avopt;
|
|
|
|
};
|
|
|
|
|
2014-06-13 02:03:45 +02:00
|
|
|
static const struct m_opt_choice_alternatives discard_names[] = {
|
|
|
|
{"none", AVDISCARD_NONE},
|
|
|
|
{"default", AVDISCARD_DEFAULT},
|
|
|
|
{"nonref", AVDISCARD_NONREF},
|
|
|
|
{"bidir", AVDISCARD_BIDIR},
|
|
|
|
{"nonkey", AVDISCARD_NONKEY},
|
|
|
|
{"all", AVDISCARD_ALL},
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
#define OPT_DISCARD(name, field, flags) \
|
|
|
|
OPT_GENERAL(int, name, field, flags, .type = CONF_TYPE_CHOICE, \
|
|
|
|
.priv = (void *)discard_names)
|
|
|
|
|
2014-06-11 01:35:39 +02:00
|
|
|
const struct m_sub_options vd_lavc_conf = {
|
|
|
|
.opts = (const m_option_t[]){
|
2014-06-13 02:08:48 +02:00
|
|
|
OPT_FLAG("fast", fast, 0),
|
2014-06-11 01:35:39 +02:00
|
|
|
OPT_FLAG("show-all", show_all, 0),
|
2014-06-13 02:03:45 +02:00
|
|
|
OPT_DISCARD("skiploopfilter", skip_loop_filter, 0),
|
|
|
|
OPT_DISCARD("skipidct", skip_idct, 0),
|
|
|
|
OPT_DISCARD("skipframe", skip_frame, 0),
|
2014-06-11 01:35:39 +02:00
|
|
|
OPT_INTRANGE("threads", threads, 0, 0, 16),
|
2014-06-13 02:08:48 +02:00
|
|
|
OPT_FLAG("bitexact", bitexact, 0),
|
2014-06-11 01:35:39 +02:00
|
|
|
OPT_FLAG("check-hw-profile", check_hw_profile, 0),
|
|
|
|
OPT_STRING("o", avopt, 0),
|
|
|
|
{0}
|
|
|
|
},
|
|
|
|
.size = sizeof(struct vd_lavc_params),
|
|
|
|
.defaults = &(const struct vd_lavc_params){
|
|
|
|
.show_all = 0,
|
|
|
|
.check_hw_profile = 1,
|
2014-06-13 02:03:45 +02:00
|
|
|
.skip_loop_filter = AVDISCARD_DEFAULT,
|
|
|
|
.skip_idct = AVDISCARD_DEFAULT,
|
|
|
|
.skip_frame = AVDISCARD_DEFAULT,
|
2014-06-11 01:35:39 +02:00
|
|
|
},
|
2002-06-02 14:48:55 +02:00
|
|
|
};
|
|
|
|
|
2013-08-11 23:23:12 +02:00
|
|
|
const struct vd_lavc_hwdec mp_vd_lavc_vdpau;
|
2013-08-14 15:47:18 +02:00
|
|
|
const struct vd_lavc_hwdec mp_vd_lavc_vda;
|
video: add vaapi decode and output support
This is based on the MPlayer VA API patches. To be exact it's based on
a very stripped down version of commit f1ad459a263f8537f6c from
git://gitorious.org/vaapi/mplayer.git.
This doesn't contain useless things like benchmarking hacks and the
demo code for GLX interop. Also, unlike in the original patch, decoding
and video output are split into separate source files (the separation
between decoding and display also makes pixel format hacks unnecessary).
On the other hand, some features not present in the original patch were
added, like screenshot support.
VA API is rather bad for actual video output. Dealing with older libva
versions or the completely broken vdpau backend doesn't help. OSD is
low quality and should be rather slow. In some cases, only either OSD
or subtitles can be shown at the same time (because OSD is drawn first,
OSD is prefered).
Also, libva can't decide whether it accepts straight or premultiplied
alpha for OSD sub-pictures: the vdpau backend seems to assume
premultiplied, while a native vaapi driver uses straight. So I picked
straight alpha. It doesn't matter much, because the blending code for
straight alpha I added to img_convert.c is probably buggy, and ASS
subtitles might be blended incorrectly.
Really good video output with VA API would probably use OpenGL and the
GL interop features, but at this point you might just use vo_opengl.
(Patches for making HW decoding with vo_opengl have a chance of being
accepted.)
Despite these issues, decoding seems to work ok. I still got tearing
on the Intel system I tested (Intel(R) Core(TM) i3-2350M). It was also
tested with the vdpau vaapi wrapper on a nvidia system; however this
was rather broken. (Fortunately, there is no reason to use mpv's VAAPI
support over native VDPAU.)
2013-08-09 14:01:30 +02:00
|
|
|
const struct vd_lavc_hwdec mp_vd_lavc_vaapi;
|
2013-09-22 22:47:50 +02:00
|
|
|
const struct vd_lavc_hwdec mp_vd_lavc_vaapi_copy;
|
2013-08-11 23:23:12 +02:00
|
|
|
|
2014-06-10 23:56:05 +02:00
|
|
|
static const struct vd_lavc_hwdec *const hwdec_list[] = {
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_VDPAU_HWACCEL
|
2013-08-11 23:23:12 +02:00
|
|
|
&mp_vd_lavc_vdpau,
|
2013-07-16 13:28:28 +02:00
|
|
|
#endif
|
|
|
|
#if HAVE_VDA_HWACCEL
|
2013-08-11 23:23:12 +02:00
|
|
|
&mp_vd_lavc_vda,
|
2013-08-14 15:47:18 +02:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_VAAPI_HWACCEL
|
video: add vaapi decode and output support
This is based on the MPlayer VA API patches. To be exact it's based on
a very stripped down version of commit f1ad459a263f8537f6c from
git://gitorious.org/vaapi/mplayer.git.
This doesn't contain useless things like benchmarking hacks and the
demo code for GLX interop. Also, unlike in the original patch, decoding
and video output are split into separate source files (the separation
between decoding and display also makes pixel format hacks unnecessary).
On the other hand, some features not present in the original patch were
added, like screenshot support.
VA API is rather bad for actual video output. Dealing with older libva
versions or the completely broken vdpau backend doesn't help. OSD is
low quality and should be rather slow. In some cases, only either OSD
or subtitles can be shown at the same time (because OSD is drawn first,
OSD is prefered).
Also, libva can't decide whether it accepts straight or premultiplied
alpha for OSD sub-pictures: the vdpau backend seems to assume
premultiplied, while a native vaapi driver uses straight. So I picked
straight alpha. It doesn't matter much, because the blending code for
straight alpha I added to img_convert.c is probably buggy, and ASS
subtitles might be blended incorrectly.
Really good video output with VA API would probably use OpenGL and the
GL interop features, but at this point you might just use vo_opengl.
(Patches for making HW decoding with vo_opengl have a chance of being
accepted.)
Despite these issues, decoding seems to work ok. I still got tearing
on the Intel system I tested (Intel(R) Core(TM) i3-2350M). It was also
tested with the vdpau vaapi wrapper on a nvidia system; however this
was rather broken. (Fortunately, there is no reason to use mpv's VAAPI
support over native VDPAU.)
2013-08-09 14:01:30 +02:00
|
|
|
&mp_vd_lavc_vaapi,
|
2013-09-22 22:47:50 +02:00
|
|
|
&mp_vd_lavc_vaapi_copy,
|
video: add vaapi decode and output support
This is based on the MPlayer VA API patches. To be exact it's based on
a very stripped down version of commit f1ad459a263f8537f6c from
git://gitorious.org/vaapi/mplayer.git.
This doesn't contain useless things like benchmarking hacks and the
demo code for GLX interop. Also, unlike in the original patch, decoding
and video output are split into separate source files (the separation
between decoding and display also makes pixel format hacks unnecessary).
On the other hand, some features not present in the original patch were
added, like screenshot support.
VA API is rather bad for actual video output. Dealing with older libva
versions or the completely broken vdpau backend doesn't help. OSD is
low quality and should be rather slow. In some cases, only either OSD
or subtitles can be shown at the same time (because OSD is drawn first,
OSD is prefered).
Also, libva can't decide whether it accepts straight or premultiplied
alpha for OSD sub-pictures: the vdpau backend seems to assume
premultiplied, while a native vaapi driver uses straight. So I picked
straight alpha. It doesn't matter much, because the blending code for
straight alpha I added to img_convert.c is probably buggy, and ASS
subtitles might be blended incorrectly.
Really good video output with VA API would probably use OpenGL and the
GL interop features, but at this point you might just use vo_opengl.
(Patches for making HW decoding with vo_opengl have a chance of being
accepted.)
Despite these issues, decoding seems to work ok. I still got tearing
on the Intel system I tested (Intel(R) Core(TM) i3-2350M). It was also
tested with the vdpau vaapi wrapper on a nvidia system; however this
was rather broken. (Fortunately, there is no reason to use mpv's VAAPI
support over native VDPAU.)
2013-08-09 14:01:30 +02:00
|
|
|
#endif
|
2013-08-11 23:23:12 +02:00
|
|
|
NULL
|
2012-12-11 18:16:42 +01:00
|
|
|
};
|
|
|
|
|
2013-08-11 23:23:12 +02:00
|
|
|
static struct vd_lavc_hwdec *find_hwcodec(enum hwdec_type api)
|
2012-12-11 18:16:42 +01:00
|
|
|
{
|
2013-08-11 23:23:12 +02:00
|
|
|
for (int n = 0; hwdec_list[n]; n++) {
|
|
|
|
if (hwdec_list[n]->type == api)
|
|
|
|
return (struct vd_lavc_hwdec *)hwdec_list[n];
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static bool hwdec_codec_allowed(struct dec_video *vd, const char *codec)
|
2013-05-03 21:00:05 +02:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
bstr s = bstr0(vd->opts->hwdec_codecs);
|
2013-05-03 21:00:05 +02:00
|
|
|
while (s.len) {
|
|
|
|
bstr item;
|
|
|
|
bstr_split_tok(s, ",", &item, &s);
|
2013-08-11 23:23:12 +02:00
|
|
|
if (bstr_equals0(item, "all") || bstr_equals0(item, codec))
|
2013-05-03 21:00:05 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-01 17:14:05 +01:00
|
|
|
// Find the correct profile entry for the current codec and profile.
|
|
|
|
// Assumes the table has higher profiles first (for each codec).
|
|
|
|
const struct hwdec_profile_entry *hwdec_find_profile(
|
|
|
|
struct lavc_ctx *ctx, const struct hwdec_profile_entry *table)
|
|
|
|
{
|
|
|
|
assert(AV_CODEC_ID_NONE == 0);
|
2014-06-11 01:35:39 +02:00
|
|
|
struct vd_lavc_params *lavc_param = ctx->opts->vd_lavc_params;
|
2013-11-01 17:14:05 +01:00
|
|
|
enum AVCodecID codec = ctx->avctx->codec_id;
|
|
|
|
int profile = ctx->avctx->profile;
|
|
|
|
// Assume nobody cares about these aspects of the profile
|
2013-11-14 19:24:20 +01:00
|
|
|
if (codec == AV_CODEC_ID_H264) {
|
|
|
|
if (profile == FF_PROFILE_H264_CONSTRAINED_BASELINE)
|
|
|
|
profile = FF_PROFILE_H264_MAIN;
|
|
|
|
}
|
2013-11-01 17:14:05 +01:00
|
|
|
for (int n = 0; table[n].av_codec; n++) {
|
|
|
|
if (table[n].av_codec == codec) {
|
|
|
|
if (table[n].ff_profile == FF_PROFILE_UNKNOWN ||
|
|
|
|
profile == FF_PROFILE_UNKNOWN ||
|
|
|
|
table[n].ff_profile == profile ||
|
|
|
|
!lavc_param->check_hw_profile)
|
|
|
|
return &table[n];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check codec support, without checking the profile.
|
|
|
|
bool hwdec_check_codec_support(const char *decoder,
|
|
|
|
const struct hwdec_profile_entry *table)
|
|
|
|
{
|
|
|
|
enum AVCodecID codec = mp_codec_to_av_codec_id(decoder);
|
|
|
|
for (int n = 0; table[n].av_codec; n++) {
|
|
|
|
if (table[n].av_codec == codec)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int hwdec_get_max_refs(struct lavc_ctx *ctx)
|
|
|
|
{
|
|
|
|
return ctx->avctx->codec_id == AV_CODEC_ID_H264 ? 16 : 2;
|
|
|
|
}
|
|
|
|
|
2013-11-04 00:00:18 +01:00
|
|
|
void hwdec_request_api(struct mp_hwdec_info *info, const char *api_name)
|
|
|
|
{
|
|
|
|
if (info && info->load_api)
|
|
|
|
info->load_api(info, api_name);
|
|
|
|
}
|
|
|
|
|
2013-08-11 23:23:12 +02:00
|
|
|
static int hwdec_probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
|
2014-03-16 09:21:21 +01:00
|
|
|
const char *decoder)
|
2013-08-11 23:23:12 +02:00
|
|
|
{
|
|
|
|
int r = 0;
|
|
|
|
if (hwdec->probe)
|
|
|
|
r = hwdec->probe(hwdec, info, decoder);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-03-16 09:21:21 +01:00
|
|
|
static struct vd_lavc_hwdec *probe_hwdec(struct dec_video *vd, bool autoprobe,
|
|
|
|
enum hwdec_type api,
|
|
|
|
const char *decoder)
|
2013-08-11 23:23:12 +02:00
|
|
|
{
|
|
|
|
struct vd_lavc_hwdec *hwdec = find_hwcodec(api);
|
|
|
|
if (!hwdec) {
|
2014-05-28 01:37:53 +02:00
|
|
|
MP_VERBOSE(vd, "Requested hardware decoder not compiled.\n");
|
2014-03-16 09:21:21 +01:00
|
|
|
return NULL;
|
2013-08-11 23:23:12 +02:00
|
|
|
}
|
2014-03-16 09:21:21 +01:00
|
|
|
int r = hwdec_probe(hwdec, &vd->hwdec_info, decoder);
|
2014-05-28 01:37:53 +02:00
|
|
|
if (r == HWDEC_ERR_EMULATED) {
|
|
|
|
if (autoprobe)
|
|
|
|
return NULL;
|
|
|
|
// User requested this explicitly.
|
|
|
|
MP_WARN(vd, "Using emulated hardware decoding API.\n");
|
|
|
|
r = 0;
|
|
|
|
}
|
2013-08-11 23:23:12 +02:00
|
|
|
if (r >= 0) {
|
2014-03-16 09:21:21 +01:00
|
|
|
return hwdec;
|
2013-08-11 23:23:12 +02:00
|
|
|
} else if (r == HWDEC_ERR_NO_CODEC) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_VERBOSE(vd, "Hardware decoder '%s' not found in "
|
2014-03-16 09:21:21 +01:00
|
|
|
"libavcodec.\n", decoder);
|
2013-08-11 23:23:12 +02:00
|
|
|
} else if (r == HWDEC_ERR_NO_CTX && !autoprobe) {
|
2014-05-28 01:37:53 +02:00
|
|
|
MP_WARN(vd, "VO does not support requested hardware decoder.\n");
|
2013-08-11 23:23:12 +02:00
|
|
|
}
|
2014-03-16 09:21:21 +01:00
|
|
|
return NULL;
|
2013-08-11 23:23:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static int init(struct dec_video *vd, const char *decoder)
|
2011-10-22 02:51:37 +02:00
|
|
|
{
|
2002-03-23 18:29:35 +01:00
|
|
|
vd_ffmpeg_ctx *ctx;
|
2013-11-23 21:36:20 +01:00
|
|
|
ctx = vd->priv = talloc_zero(NULL, vd_ffmpeg_ctx);
|
2013-12-21 17:47:38 +01:00
|
|
|
ctx->log = vd->log;
|
2013-11-23 21:36:20 +01:00
|
|
|
ctx->opts = vd->opts;
|
2009-02-12 16:41:59 +01:00
|
|
|
|
2014-04-23 01:17:28 +02:00
|
|
|
ctx->selected_hwdec = vd->opts->hwdec_api;
|
|
|
|
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
if (bstr_endswith0(bstr0(decoder), "_vdpau")) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_WARN(vd, "VDPAU decoder '%s' was requested. "
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
"This way of enabling hardware\ndecoding is not supported "
|
|
|
|
"anymore. Use --hwdec=vdpau instead.\nThe --hwdec-codec=... "
|
|
|
|
"option can be used to restrict which codecs are\nenabled, "
|
|
|
|
"otherwise all hardware decoding is tried for all codecs.\n",
|
|
|
|
decoder);
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit(vd);
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-11 23:23:12 +02:00
|
|
|
struct vd_lavc_hwdec *hwdec = NULL;
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
if (hwdec_codec_allowed(vd, decoder)) {
|
|
|
|
if (vd->opts->hwdec_api == HWDEC_AUTO) {
|
2013-08-11 23:23:12 +02:00
|
|
|
for (int n = 0; hwdec_list[n]; n++) {
|
2014-03-16 09:21:21 +01:00
|
|
|
hwdec = probe_hwdec(vd, true, hwdec_list[n]->type, decoder);
|
|
|
|
if (hwdec)
|
2013-08-11 23:23:12 +02:00
|
|
|
break;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
}
|
2013-11-23 21:36:20 +01:00
|
|
|
} else if (vd->opts->hwdec_api != HWDEC_NONE) {
|
2014-03-16 09:21:21 +01:00
|
|
|
hwdec = probe_hwdec(vd, false, vd->opts->hwdec_api, decoder);
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
2013-08-11 23:23:12 +02:00
|
|
|
} else {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_VERBOSE(vd, "Not trying to use hardware decoding: "
|
|
|
|
"codec %s is blacklisted by user.\n", decoder);
|
2013-08-11 23:23:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwdec) {
|
|
|
|
ctx->software_fallback_decoder = talloc_strdup(ctx, decoder);
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_INFO(vd, "Trying to use hardware decoding.\n");
|
2013-11-23 21:36:20 +01:00
|
|
|
} else if (vd->opts->hwdec_api != HWDEC_NONE) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_INFO(vd, "Using software decoding.\n");
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
init_avctx(vd, decoder, hwdec);
|
2013-04-27 13:36:09 +02:00
|
|
|
if (!ctx->avctx) {
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
if (ctx->software_fallback_decoder) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_ERR(vd, "Error initializing hardware decoding, "
|
|
|
|
"falling back to software decoding.\n");
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
decoder = ctx->software_fallback_decoder;
|
|
|
|
ctx->software_fallback_decoder = NULL;
|
2013-11-23 21:36:20 +01:00
|
|
|
init_avctx(vd, decoder, NULL);
|
2013-04-27 13:36:09 +02:00
|
|
|
}
|
|
|
|
if (!ctx->avctx) {
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit(vd);
|
2013-04-27 13:36:09 +02:00
|
|
|
return 0;
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-27 16:45:19 +02:00
|
|
|
|
|
|
|
if (ctx->avctx->bit_rate != 0)
|
|
|
|
vd->bitrate = ctx->avctx->bit_rate;
|
|
|
|
|
2012-12-11 18:16:42 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-02-09 15:15:32 +01:00
|
|
|
static void set_from_bih(AVCodecContext *avctx, uint32_t format,
|
2013-11-02 15:10:28 +01:00
|
|
|
MP_BITMAPINFOHEADER *bih)
|
2013-02-09 15:15:32 +01:00
|
|
|
{
|
2014-01-11 01:43:40 +01:00
|
|
|
if (bih->biSize > sizeof(*bih))
|
2014-01-11 01:25:49 +01:00
|
|
|
mp_lavc_set_extradata(avctx, bih + 1, bih->biSize - sizeof(*bih));
|
2013-02-09 15:15:32 +01:00
|
|
|
|
|
|
|
avctx->bits_per_coded_sample = bih->biBitCount;
|
|
|
|
avctx->coded_width = bih->biWidth;
|
|
|
|
avctx->coded_height = bih->biHeight;
|
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static void init_avctx(struct dec_video *vd, const char *decoder,
|
2013-08-11 23:23:12 +02:00
|
|
|
struct vd_lavc_hwdec *hwdec)
|
2012-12-11 18:16:42 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2014-06-11 01:35:39 +02:00
|
|
|
struct vd_lavc_params *lavc_param = vd->opts->vd_lavc_params;
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
bool mp_rawvideo = false;
|
2013-11-23 21:36:20 +01:00
|
|
|
struct sh_stream *sh = vd->header;
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
|
2013-04-27 13:36:09 +02:00
|
|
|
assert(!ctx->avctx);
|
|
|
|
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
if (strcmp(decoder, "mp-rawvideo") == 0) {
|
|
|
|
mp_rawvideo = true;
|
|
|
|
decoder = "rawvideo";
|
|
|
|
}
|
2012-12-11 18:16:42 +01:00
|
|
|
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
AVCodec *lavc_codec = avcodec_find_decoder_by_name(decoder);
|
|
|
|
if (!lavc_codec)
|
2013-04-27 13:36:09 +02:00
|
|
|
return;
|
2012-07-24 08:01:47 +02:00
|
|
|
|
2013-11-23 21:39:07 +01:00
|
|
|
ctx->hwdec_info = &vd->hwdec_info;
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
|
2013-11-29 17:39:57 +01:00
|
|
|
ctx->pix_fmt = AV_PIX_FMT_NONE;
|
2012-12-11 18:16:42 +01:00
|
|
|
ctx->hwdec = hwdec;
|
2014-03-10 22:36:23 +01:00
|
|
|
ctx->hwdec_fmt = 0;
|
2012-01-28 12:41:36 +01:00
|
|
|
ctx->avctx = avcodec_alloc_context3(lavc_codec);
|
2012-12-11 18:16:42 +01:00
|
|
|
AVCodecContext *avctx = ctx->avctx;
|
2014-05-27 16:45:19 +02:00
|
|
|
avctx->bit_rate = 0;
|
2013-11-23 21:36:20 +01:00
|
|
|
avctx->opaque = vd;
|
2011-04-20 01:59:45 +02:00
|
|
|
avctx->codec_type = AVMEDIA_TYPE_VIDEO;
|
2009-09-23 21:21:38 +02:00
|
|
|
avctx->codec_id = lavc_codec->id;
|
2002-07-16 02:56:12 +02:00
|
|
|
|
2013-10-31 18:12:39 +01:00
|
|
|
avctx->refcounted_frames = 1;
|
|
|
|
ctx->pic = av_frame_alloc();
|
|
|
|
|
2013-12-04 20:58:06 +01:00
|
|
|
if (ctx->hwdec) {
|
2012-11-05 23:57:02 +01:00
|
|
|
avctx->thread_count = 1;
|
2013-12-04 20:58:06 +01:00
|
|
|
avctx->get_format = get_format_hwdec;
|
2014-03-16 09:21:21 +01:00
|
|
|
avctx->get_buffer2 = get_buffer2_hwdec;
|
2013-12-04 20:58:06 +01:00
|
|
|
if (ctx->hwdec->init(ctx) < 0) {
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit_avctx(vd);
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
return;
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
2013-03-09 20:21:12 +01:00
|
|
|
} else {
|
2013-12-04 20:58:19 +01:00
|
|
|
mp_set_avcodec_threads(avctx, lavc_param->threads);
|
2010-12-20 04:53:28 +01:00
|
|
|
}
|
2002-09-07 00:53:26 +02:00
|
|
|
|
2014-06-13 02:08:48 +02:00
|
|
|
avctx->flags |= lavc_param->bitexact ? CODEC_FLAG_BITEXACT : 0;
|
|
|
|
avctx->flags2 |= lavc_param->fast ? CODEC_FLAG2_FAST : 0;
|
2009-02-12 16:41:59 +01:00
|
|
|
|
2013-12-29 14:07:08 +01:00
|
|
|
if (lavc_param->show_all) {
|
|
|
|
#ifdef CODEC_FLAG2_SHOW_ALL
|
|
|
|
avctx->flags2 |= CODEC_FLAG2_SHOW_ALL; // ffmpeg only?
|
|
|
|
#endif
|
|
|
|
#ifdef CODEC_FLAG_OUTPUT_CORRUPT
|
|
|
|
avctx->flags |= CODEC_FLAG_OUTPUT_CORRUPT; // added with Libav 10
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-06-13 02:03:45 +02:00
|
|
|
avctx->skip_loop_filter = lavc_param->skip_loop_filter;
|
|
|
|
avctx->skip_idct = lavc_param->skip_idct;
|
|
|
|
avctx->skip_frame = lavc_param->skip_frame;
|
2008-05-10 20:55:31 +02:00
|
|
|
|
2011-10-22 02:51:37 +02:00
|
|
|
if (lavc_param->avopt) {
|
|
|
|
if (parse_avopts(avctx, lavc_param->avopt) < 0) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_ERR(vd, "Your options /%s/ look like gibberish to me pal\n",
|
2011-10-22 02:51:37 +02:00
|
|
|
lavc_param->avopt);
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit_avctx(vd);
|
2013-04-27 13:36:09 +02:00
|
|
|
return;
|
2008-05-10 20:55:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-09 12:50:16 +02:00
|
|
|
// Do this after the above avopt handling in case it changes values
|
|
|
|
ctx->skip_frame = avctx->skip_frame;
|
|
|
|
|
2013-11-23 21:37:56 +01:00
|
|
|
avctx->codec_tag = sh->format;
|
2013-11-23 21:36:20 +01:00
|
|
|
avctx->coded_width = sh->video->disp_w;
|
|
|
|
avctx->coded_height = sh->video->disp_h;
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 15:15:37 +01:00
|
|
|
|
2013-07-07 23:54:11 +02:00
|
|
|
// demux_mkv
|
2013-11-23 21:36:20 +01:00
|
|
|
if (sh->video->bih)
|
2013-11-23 21:37:56 +01:00
|
|
|
set_from_bih(avctx, sh->format, sh->video->bih);
|
2002-08-29 00:02:38 +02:00
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
if (mp_rawvideo) {
|
2013-11-23 21:37:56 +01:00
|
|
|
avctx->pix_fmt = imgfmt2pixfmt(sh->format);
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
avctx->codec_tag = 0;
|
2013-12-21 17:47:38 +01:00
|
|
|
if (avctx->pix_fmt == AV_PIX_FMT_NONE && sh->format)
|
|
|
|
MP_ERR(vd, "Image format %s not supported by lavc.\n",
|
|
|
|
mp_imgfmt_to_name(sh->format));
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
if (sh->lav_headers)
|
|
|
|
mp_copy_lav_codec_headers(avctx, sh->lav_headers);
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 15:15:37 +01:00
|
|
|
|
2002-03-06 21:54:43 +01:00
|
|
|
/* open it */
|
2012-01-28 12:41:36 +01:00
|
|
|
if (avcodec_open2(avctx, lavc_codec, NULL) < 0) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_ERR(vd, "Could not open codec.\n");
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit_avctx(vd);
|
2013-04-27 13:36:09 +02:00
|
|
|
return;
|
2002-03-06 21:54:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static void uninit_avctx(struct dec_video *vd)
|
2011-10-22 02:51:37 +02:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2002-03-23 18:29:35 +01:00
|
|
|
AVCodecContext *avctx = ctx->avctx;
|
2009-02-12 16:41:59 +01:00
|
|
|
|
2014-03-23 19:20:43 +01:00
|
|
|
if (ctx->hwdec && ctx->hwdec->uninit)
|
|
|
|
ctx->hwdec->uninit(ctx);
|
|
|
|
|
2007-02-03 14:19:21 +01:00
|
|
|
if (avctx) {
|
2007-02-03 14:20:31 +01:00
|
|
|
if (avctx->codec && avcodec_close(avctx) < 0)
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_ERR(vd, "Could not close codec.\n");
|
2002-05-02 14:24:53 +02:00
|
|
|
|
2007-02-03 14:20:31 +01:00
|
|
|
av_freep(&avctx->extradata);
|
|
|
|
av_freep(&avctx->slice_offset);
|
2007-02-03 14:19:21 +01:00
|
|
|
}
|
2005-01-08 20:16:21 +01:00
|
|
|
|
2013-04-27 13:36:09 +02:00
|
|
|
av_freep(&ctx->avctx);
|
2012-12-12 00:43:50 +01:00
|
|
|
|
2013-10-31 18:12:39 +01:00
|
|
|
av_frame_free(&ctx->pic);
|
2002-03-06 21:54:43 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static void uninit(struct dec_video *vd)
|
2011-10-22 02:51:37 +02:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit_avctx(vd);
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
|
|
|
|
2013-12-10 19:07:29 +01:00
|
|
|
static void update_image_params(struct dec_video *vd, AVFrame *frame,
|
|
|
|
struct mp_image_params *out_params)
|
2012-12-11 18:16:42 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2014-05-24 14:08:39 +02:00
|
|
|
struct MPOpts *opts = ctx->opts;
|
2012-12-20 13:28:39 +01:00
|
|
|
int width = frame->width;
|
|
|
|
int height = frame->height;
|
|
|
|
float aspect = av_q2d(frame->sample_aspect_ratio) * width / height;
|
2013-01-24 12:43:36 +01:00
|
|
|
int pix_fmt = frame->format;
|
|
|
|
|
2013-11-23 21:40:51 +01:00
|
|
|
if (pix_fmt != ctx->pix_fmt) {
|
2013-01-24 12:43:36 +01:00
|
|
|
ctx->pix_fmt = pix_fmt;
|
|
|
|
ctx->best_csp = pixfmt2imgfmt(pix_fmt);
|
2013-12-21 17:47:38 +01:00
|
|
|
if (!ctx->best_csp)
|
|
|
|
MP_ERR(vd, "lavc pixel format %s not supported.\n",
|
|
|
|
av_get_pix_fmt_name(pix_fmt));
|
2002-04-13 15:40:26 +02:00
|
|
|
}
|
2013-11-23 21:40:51 +01:00
|
|
|
|
|
|
|
int d_w, d_h;
|
|
|
|
vf_set_dar(&d_w, &d_h, width, height, aspect);
|
|
|
|
|
2013-12-10 19:07:29 +01:00
|
|
|
*out_params = (struct mp_image_params) {
|
2013-11-23 21:40:51 +01:00
|
|
|
.imgfmt = ctx->best_csp,
|
|
|
|
.w = width,
|
|
|
|
.h = height,
|
|
|
|
.d_w = d_w,
|
|
|
|
.d_h = d_h,
|
|
|
|
.colorspace = avcol_spc_to_mp_csp(ctx->avctx->colorspace),
|
|
|
|
.colorlevels = avcol_range_to_mp_csp_levels(ctx->avctx->color_range),
|
|
|
|
.chroma_location =
|
|
|
|
avchroma_location_to_mp(ctx->avctx->chroma_sample_location),
|
2014-04-20 21:29:22 +02:00
|
|
|
.rotate = vd->header->video->rotate,
|
2013-11-23 21:40:51 +01:00
|
|
|
};
|
2014-05-24 14:08:39 +02:00
|
|
|
|
|
|
|
if (opts->video_rotate < 0) {
|
|
|
|
out_params->rotate = 0;
|
|
|
|
} else {
|
|
|
|
out_params->rotate = (out_params->rotate + opts->video_rotate) % 360;
|
|
|
|
}
|
2002-07-14 21:44:40 +02:00
|
|
|
}
|
|
|
|
|
2013-11-29 17:39:57 +01:00
|
|
|
static enum AVPixelFormat get_format_hwdec(struct AVCodecContext *avctx,
|
|
|
|
const enum AVPixelFormat *fmt)
|
2012-11-06 15:27:44 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
struct dec_video *vd = avctx->opaque;
|
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2012-11-06 15:27:44 +01:00
|
|
|
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_VERBOSE(vd, "Pixel formats supported by decoder:");
|
2013-11-29 17:39:57 +01:00
|
|
|
for (int i = 0; fmt[i] != AV_PIX_FMT_NONE; i++)
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_VERBOSE(vd, " %s", av_get_pix_fmt_name(fmt[i]));
|
|
|
|
MP_VERBOSE(vd, "\n");
|
2012-12-11 18:16:42 +01:00
|
|
|
|
2013-08-11 23:23:12 +02:00
|
|
|
assert(ctx->hwdec);
|
2012-12-11 18:16:42 +01:00
|
|
|
|
2014-03-16 09:21:21 +01:00
|
|
|
if (ctx->hwdec->image_format) {
|
|
|
|
for (int i = 0; fmt[i] != AV_PIX_FMT_NONE; i++) {
|
|
|
|
if (ctx->hwdec->image_format == pixfmt2imgfmt(fmt[i])) {
|
2014-03-17 18:19:03 +01:00
|
|
|
// There could be more reasons for a change, and it's possible
|
|
|
|
// that we miss some. (Might also depend on the hwaccel type.)
|
2014-03-16 14:54:21 +01:00
|
|
|
bool change =
|
|
|
|
ctx->hwdec_w != avctx->width ||
|
|
|
|
ctx->hwdec_h != avctx->height ||
|
2014-03-17 18:19:03 +01:00
|
|
|
ctx->hwdec_fmt != ctx->hwdec->image_format ||
|
|
|
|
ctx->hwdec_profile != avctx->profile;
|
2014-03-10 22:36:23 +01:00
|
|
|
ctx->hwdec_w = avctx->width;
|
|
|
|
ctx->hwdec_h = avctx->height;
|
2014-03-16 09:21:21 +01:00
|
|
|
ctx->hwdec_fmt = ctx->hwdec->image_format;
|
2014-03-17 18:19:03 +01:00
|
|
|
ctx->hwdec_profile = avctx->profile;
|
2014-03-16 14:54:21 +01:00
|
|
|
if (ctx->hwdec->init_decoder && change) {
|
2014-03-10 22:36:23 +01:00
|
|
|
if (ctx->hwdec->init_decoder(ctx, ctx->hwdec_fmt,
|
|
|
|
ctx->hwdec_w, ctx->hwdec_h) < 0)
|
|
|
|
{
|
|
|
|
ctx->hwdec_fmt = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
return fmt[i];
|
2014-03-10 22:36:23 +01:00
|
|
|
}
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
}
|
2012-11-06 15:27:44 +01:00
|
|
|
}
|
2012-12-11 18:16:42 +01:00
|
|
|
|
2013-11-29 17:39:57 +01:00
|
|
|
return AV_PIX_FMT_NONE;
|
2012-11-06 15:27:44 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static struct mp_image *get_surface_hwdec(struct dec_video *vd, AVFrame *pic)
|
2012-11-06 15:27:44 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2012-11-06 15:27:44 +01:00
|
|
|
|
2012-12-11 18:16:42 +01:00
|
|
|
/* Decoders using ffmpeg's hwaccel architecture (everything except vdpau)
|
|
|
|
* can fall back to software decoding automatically. However, we don't
|
|
|
|
* want that: multithreading was already disabled. ffmpeg's fallback
|
|
|
|
* isn't really useful, and causes more trouble than it helps.
|
|
|
|
*
|
|
|
|
* Instead of trying to "adjust" the thread_count fields in avctx, let
|
|
|
|
* decoding fail hard. Then decode_with_fallback() will do our own software
|
|
|
|
* fallback. Fully reinitializing the decoder is saner, and will probably
|
|
|
|
* save us from other weird corner cases, like having to "reroute" the
|
|
|
|
* get_buffer callback.
|
|
|
|
*/
|
2012-12-20 13:28:39 +01:00
|
|
|
int imgfmt = pixfmt2imgfmt(pic->format);
|
2014-03-10 22:36:23 +01:00
|
|
|
if (!IMGFMT_IS_HWACCEL(imgfmt) || !ctx->hwdec)
|
2013-03-09 20:50:06 +01:00
|
|
|
return NULL;
|
2012-11-06 15:27:44 +01:00
|
|
|
|
2013-08-15 18:20:52 +02:00
|
|
|
// Using frame->width/height is bad. For non-mod 16 video (which would
|
|
|
|
// require alignment of frame sizes) we want the decoded size, not the
|
|
|
|
// aligned size. At least vdpau needs this: the video mixer is created
|
|
|
|
// with decoded size, and the video surfaces must have matching size.
|
2013-08-15 18:20:15 +02:00
|
|
|
int w = ctx->avctx->width;
|
|
|
|
int h = ctx->avctx->height;
|
|
|
|
|
2014-03-10 22:36:23 +01:00
|
|
|
if (ctx->hwdec->init_decoder) {
|
|
|
|
if (imgfmt != ctx->hwdec_fmt && w != ctx->hwdec_w && h != ctx->hwdec_h)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-08-15 18:20:15 +02:00
|
|
|
struct mp_image *mpi = ctx->hwdec->allocate_image(ctx, imgfmt, w, h);
|
2013-03-09 20:50:06 +01:00
|
|
|
|
|
|
|
if (mpi) {
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
pic->data[i] = mpi->planes[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return mpi;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_mpi(void *opaque, uint8_t *data)
|
|
|
|
{
|
|
|
|
struct mp_image *mpi = opaque;
|
|
|
|
talloc_free(mpi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_buffer2_hwdec(AVCodecContext *avctx, AVFrame *pic, int flags)
|
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
struct dec_video *vd = avctx->opaque;
|
2013-03-09 20:50:06 +01:00
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
struct mp_image *mpi = get_surface_hwdec(vd, pic);
|
2013-03-09 20:50:06 +01:00
|
|
|
if (!mpi)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pic->buf[0] = av_buffer_create(NULL, 0, free_mpi, mpi, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static int decode(struct dec_video *vd, struct demux_packet *packet,
|
2013-11-25 23:08:29 +01:00
|
|
|
int flags, struct mp_image **out_image)
|
2009-11-21 19:53:10 +01:00
|
|
|
{
|
2011-10-22 02:51:37 +02:00
|
|
|
int got_picture = 0;
|
2002-07-14 21:44:40 +02:00
|
|
|
int ret;
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2002-07-14 21:44:40 +02:00
|
|
|
AVCodecContext *avctx = ctx->avctx;
|
2009-06-02 00:25:10 +02:00
|
|
|
AVPacket pkt;
|
2002-07-14 21:44:40 +02:00
|
|
|
|
2010-05-04 03:50:57 +02:00
|
|
|
if (flags & 2)
|
|
|
|
avctx->skip_frame = AVDISCARD_ALL;
|
|
|
|
else if (flags & 1)
|
|
|
|
avctx->skip_frame = AVDISCARD_NONREF;
|
|
|
|
else
|
2011-07-09 12:50:16 +02:00
|
|
|
avctx->skip_frame = ctx->skip_frame;
|
2002-07-14 21:44:40 +02:00
|
|
|
|
av_common: add timebase parameter to mp_set_av_packet()
If the timebase is set, it's used for converting the packet timestamps.
Otherwise, the previous method of reinterpret-casting the mpv style
double timestamps to libavcodec style int64_t timestamps is used.
Also replace the kind of awkward mp_get_av_frame_pkt_ts() function by
mp_pts_from_av(), which simply converts timestamps in a way the old
function did. (Plus it takes a timebase parameter, similar to the
addition to mp_set_av_packet().)
Note that this should not change anything yet. The code in ad_lavc.c and
vd_lavc.c passes NULL for the timebase parameters. We could set
AVCodecContext.pkt_timebase and use that if we want to give libavcodec
"proper" timestamps.
This could be important for ad_lavc.c: some codecs (opus, probably mp3
and aac too) have weird requirements about doing decoding preroll on the
container level, and thus require adjusting the audio start timestamps
in some cases. libavcodec doesn't tell us how much was skipped, so we
either get shifted timestamps (by the length of the skipped data), or we
give it proper timestamps. (Note: libavcodec interprets or changes
timestamps only if pkt_timebase is set, which by default it is not.)
This would require selecting a timebase though, so I feel uncomfortable
with the idea. At least this change paves the way, and will allow some
testing.
2013-12-04 20:12:14 +01:00
|
|
|
mp_set_av_packet(&pkt, packet, NULL);
|
2013-06-03 01:55:48 +02:00
|
|
|
|
2013-11-25 23:08:29 +01:00
|
|
|
ret = avcodec_decode_video2(avctx, ctx->pic, &got_picture, &pkt);
|
2012-12-11 18:16:42 +01:00
|
|
|
if (ret < 0) {
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_WARN(vd, "Error while decoding frame!\n");
|
2012-12-11 18:16:42 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2003-04-07 01:37:56 +02:00
|
|
|
|
2013-11-24 12:22:25 +01:00
|
|
|
// Skipped frame, or delayed output due to multithreaded decoding.
|
2011-10-22 02:51:37 +02:00
|
|
|
if (!got_picture)
|
2013-11-24 12:22:25 +01:00
|
|
|
return 0;
|
2002-07-15 23:33:46 +02:00
|
|
|
|
2013-12-10 19:07:29 +01:00
|
|
|
struct mp_image_params params;
|
|
|
|
update_image_params(vd, ctx->pic, ¶ms);
|
av_common: add timebase parameter to mp_set_av_packet()
If the timebase is set, it's used for converting the packet timestamps.
Otherwise, the previous method of reinterpret-casting the mpv style
double timestamps to libavcodec style int64_t timestamps is used.
Also replace the kind of awkward mp_get_av_frame_pkt_ts() function by
mp_pts_from_av(), which simply converts timestamps in a way the old
function did. (Plus it takes a timebase parameter, similar to the
addition to mp_set_av_packet().)
Note that this should not change anything yet. The code in ad_lavc.c and
vd_lavc.c passes NULL for the timebase parameters. We could set
AVCodecContext.pkt_timebase and use that if we want to give libavcodec
"proper" timestamps.
This could be important for ad_lavc.c: some codecs (opus, probably mp3
and aac too) have weird requirements about doing decoding preroll on the
container level, and thus require adjusting the audio start timestamps
in some cases. libavcodec doesn't tell us how much was skipped, so we
either get shifted timestamps (by the length of the skipped data), or we
give it proper timestamps. (Note: libavcodec interprets or changes
timestamps only if pkt_timebase is set, which by default it is not.)
This would require selecting a timebase though, so I feel uncomfortable
with the idea. At least this change paves the way, and will allow some
testing.
2013-12-04 20:12:14 +01:00
|
|
|
vd->codec_pts = mp_pts_from_av(ctx->pic->pkt_pts, NULL);
|
|
|
|
vd->codec_dts = mp_pts_from_av(ctx->pic->pkt_dts, NULL);
|
2002-07-14 21:44:40 +02:00
|
|
|
|
2014-03-16 09:21:21 +01:00
|
|
|
struct mp_image *mpi = mp_image_from_av_frame(ctx->pic);
|
|
|
|
av_frame_unref(ctx->pic);
|
2014-03-16 01:34:48 +01:00
|
|
|
if (!mpi)
|
|
|
|
return 0;
|
2014-03-23 19:20:43 +01:00
|
|
|
assert(mpi->planes[0] || mpi->planes[3]);
|
2013-12-10 19:07:29 +01:00
|
|
|
mp_image_set_params(mpi, ¶ms);
|
2002-03-06 21:54:43 +01:00
|
|
|
|
2013-08-15 18:21:54 +02:00
|
|
|
if (ctx->hwdec && ctx->hwdec->process_image)
|
2013-08-14 15:47:18 +02:00
|
|
|
mpi = ctx->hwdec->process_image(ctx, mpi);
|
vdpau: split off decoder parts, use "new" libavcodec vdpau hwaccel API
Move the decoder parts from vo_vdpau.c to a new file vdpau_old.c. This
file is named so because because it's written against the "old"
libavcodec vdpau pseudo-decoder (e.g. "h264_vdpau").
Add support for the "new" libavcodec vdpau support. This was recently
added and replaces the "old" vdpau parts. (In fact, Libav is about to
deprecate and remove the "old" API without deprecation grace period,
so we have to support it now. Moreover, there will probably be no Libav
release which supports both, so the transition is even less smooth than
we could hope, and we have to support both the old and new API.)
Whether the old or new API is used is checked by a configure test: if
the new API is found, it is used, otherwise the old API is assumed.
Some details might be handled differently. Especially display preemption
is a bit problematic with the "new" libavcodec vdpau support: it wants
to keep a pointer to a specific vdpau API function (which can be driver
specific, because preemption might switch drivers). Also, surface IDs
are now directly stored in AVFrames (and mp_images), so they can't be
forced to VDP_INVALID_HANDLE on preemption. (This changes even with
older libavcodec versions, because mp_image always uses the newer
representation to make vo_vdpau.c simpler.)
Decoder initialization in the new code tries to deal with codec
profiles, while the old code always uses the highest profile per codec.
Surface allocation changes. Since the decoder won't call config() in
vo_vdpau.c on video size change anymore, we allow allocating surfaces
of arbitrary size instead of locking it to what the VO was configured.
The non-hwdec code also has slightly different allocation behavior now.
Enabling the old vdpau special decoders via e.g. --vd=lavc:h264_vdpau
doesn't work anymore (a warning suggesting the --hwdec option is
printed instead).
2013-07-28 01:49:45 +02:00
|
|
|
|
2012-12-11 18:16:42 +01:00
|
|
|
*out_image = mpi;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-10 19:07:29 +01:00
|
|
|
static int force_fallback(struct dec_video *vd)
|
2012-12-11 18:16:42 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
if (ctx->software_fallback_decoder) {
|
2013-11-23 21:36:20 +01:00
|
|
|
uninit_avctx(vd);
|
2013-12-21 17:47:38 +01:00
|
|
|
MP_ERR(vd, "Error using hardware "
|
2012-12-11 18:16:42 +01:00
|
|
|
"decoding, falling back to software decoding.\n");
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
const char *decoder = ctx->software_fallback_decoder;
|
|
|
|
ctx->software_fallback_decoder = NULL;
|
2013-11-23 21:36:20 +01:00
|
|
|
init_avctx(vd, decoder, NULL);
|
2013-12-10 19:07:29 +01:00
|
|
|
return ctx->avctx ? CONTROL_OK : CONTROL_ERROR;
|
|
|
|
}
|
|
|
|
return CONTROL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mp_image *decode_with_fallback(struct dec_video *vd,
|
|
|
|
struct demux_packet *packet, int flags)
|
|
|
|
{
|
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
|
|
|
if (!ctx->avctx)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
struct mp_image *mpi = NULL;
|
|
|
|
int res = decode(vd, packet, flags, &mpi);
|
|
|
|
if (res < 0) {
|
|
|
|
// Failed hardware decoding? Try again in software.
|
|
|
|
if (force_fallback(vd) == CONTROL_OK)
|
2013-11-25 23:08:29 +01:00
|
|
|
decode(vd, packet, flags, &mpi);
|
2012-12-11 18:16:42 +01:00
|
|
|
}
|
|
|
|
|
2013-12-10 19:07:29 +01:00
|
|
|
return mpi;
|
2002-03-06 21:54:43 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:36:20 +01:00
|
|
|
static int control(struct dec_video *vd, int cmd, void *arg)
|
2011-11-14 19:12:20 +01:00
|
|
|
{
|
2013-11-23 21:36:20 +01:00
|
|
|
vd_ffmpeg_ctx *ctx = vd->priv;
|
2011-11-14 19:12:20 +01:00
|
|
|
AVCodecContext *avctx = ctx->avctx;
|
|
|
|
switch (cmd) {
|
2013-11-27 20:54:07 +01:00
|
|
|
case VDCTRL_RESET:
|
2011-11-14 19:12:20 +01:00
|
|
|
avcodec_flush_buffers(avctx);
|
|
|
|
return CONTROL_TRUE;
|
|
|
|
case VDCTRL_QUERY_UNSEEN_FRAMES:;
|
|
|
|
int delay = avctx->has_b_frames;
|
2013-02-24 23:15:11 +01:00
|
|
|
assert(delay >= 0);
|
2012-02-03 19:03:00 +01:00
|
|
|
if (avctx->active_thread_type & FF_THREAD_FRAME)
|
|
|
|
delay += avctx->thread_count - 1;
|
2013-02-24 23:15:11 +01:00
|
|
|
*(int *)arg = delay;
|
|
|
|
return CONTROL_TRUE;
|
2014-04-23 01:17:28 +02:00
|
|
|
case VDCTRL_GET_HWDEC: {
|
|
|
|
int hwdec = ctx->selected_hwdec;
|
|
|
|
if (!ctx->software_fallback_decoder)
|
|
|
|
hwdec = 0;
|
|
|
|
*(int *)arg = hwdec;
|
|
|
|
return CONTROL_TRUE;
|
|
|
|
}
|
2013-12-10 19:07:29 +01:00
|
|
|
case VDCTRL_FORCE_HWDEC_FALLBACK:
|
|
|
|
return force_fallback(vd);
|
2011-11-14 19:12:20 +01:00
|
|
|
}
|
|
|
|
return CONTROL_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
static void add_decoders(struct mp_decoder_list *list)
|
|
|
|
{
|
|
|
|
mp_add_lavc_decoders(list, AVMEDIA_TYPE_VIDEO);
|
|
|
|
mp_add_decoder(list, "lavc", "mp-rawvideo", "mp-rawvideo",
|
|
|
|
"raw video");
|
|
|
|
}
|
|
|
|
|
2009-11-21 19:53:10 +01:00
|
|
|
const struct vd_functions mpcodecs_vd_ffmpeg = {
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 15:15:19 +01:00
|
|
|
.name = "lavc",
|
|
|
|
.add_decoders = add_decoders,
|
2009-11-21 19:53:10 +01:00
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
|
|
|
.control = control,
|
2012-12-11 18:16:42 +01:00
|
|
|
.decode = decode_with_fallback,
|
2009-11-21 19:53:10 +01:00
|
|
|
};
|