2010-07-10 15:45:09 +02:00
|
|
|
/*
|
2012-08-16 17:21:21 +02:00
|
|
|
* This file is part of mplayer2.
|
2010-07-10 15:45:09 +02:00
|
|
|
*
|
2012-08-16 17:21:21 +02:00
|
|
|
* mplayer2 is free software; you can redistribute it and/or modify
|
2010-07-10 15:45:09 +02:00
|
|
|
* 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.
|
|
|
|
*
|
2012-08-16 17:21:21 +02:00
|
|
|
* mplayer2 is distributed in the hope that it will be useful,
|
2010-07-10 15:45:09 +02:00
|
|
|
* 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
|
2012-08-16 17:21:21 +02:00
|
|
|
* with mplayer2. If not, see <http://www.gnu.org/licenses/>.
|
2010-07-10 15:45:09 +02:00
|
|
|
*/
|
|
|
|
|
2012-08-16 17:21:21 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2010-07-10 15:45:09 +02:00
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
|
2012-08-31 14:42:30 +02:00
|
|
|
#include "talloc.h"
|
2011-08-19 04:17:02 +02:00
|
|
|
#include "mp_msg.h"
|
2010-07-10 15:45:09 +02:00
|
|
|
#include "libmpdemux/stheader.h"
|
2012-08-16 17:21:21 +02:00
|
|
|
#include "sd.h"
|
2010-07-10 15:45:09 +02:00
|
|
|
#include "spudec.h"
|
2012-08-16 17:21:21 +02:00
|
|
|
// Current code still pushes subs directly to global spudec
|
|
|
|
#include "sub.h"
|
2010-07-10 15:45:09 +02:00
|
|
|
|
2012-08-31 14:42:30 +02:00
|
|
|
struct sd_lavc_priv {
|
|
|
|
AVCodecContext *avctx;
|
|
|
|
int count;
|
|
|
|
struct sub_bitmap *inbitmaps;
|
|
|
|
struct sub_bitmap *outbitmaps;
|
|
|
|
bool bitmaps_changed;
|
|
|
|
double endpts;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void old_avsub_to_spudec(AVSubtitleRect **rects, int num_rects,
|
|
|
|
double pts, double endpts)
|
2012-04-22 23:52:39 +02:00
|
|
|
{
|
|
|
|
int i, xmin = INT_MAX, ymin = INT_MAX, xmax = INT_MIN, ymax = INT_MIN;
|
|
|
|
struct spu_packet_t *packet;
|
|
|
|
|
|
|
|
if (num_rects == 1) {
|
|
|
|
spudec_set_paletted(vo_spudec,
|
|
|
|
rects[0]->pict.data[0],
|
|
|
|
rects[0]->pict.linesize[0],
|
|
|
|
rects[0]->pict.data[1],
|
|
|
|
rects[0]->x,
|
|
|
|
rects[0]->y,
|
|
|
|
rects[0]->w,
|
|
|
|
rects[0]->h,
|
|
|
|
pts,
|
|
|
|
endpts);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < num_rects; i++) {
|
|
|
|
xmin = FFMIN(xmin, rects[i]->x);
|
|
|
|
ymin = FFMIN(ymin, rects[i]->y);
|
|
|
|
xmax = FFMAX(xmax, rects[i]->x + rects[i]->w);
|
|
|
|
ymax = FFMAX(ymax, rects[i]->y + rects[i]->h);
|
|
|
|
}
|
|
|
|
packet = spudec_packet_create(xmin, ymin, xmax - xmin, ymax - ymin);
|
|
|
|
if (!packet)
|
|
|
|
return;
|
|
|
|
spudec_packet_clear(packet);
|
|
|
|
for (i = 0; i < num_rects; i++)
|
|
|
|
spudec_packet_fill(packet,
|
|
|
|
rects[i]->pict.data[0],
|
|
|
|
rects[i]->pict.linesize[0],
|
|
|
|
rects[i]->pict.data[1],
|
|
|
|
rects[i]->x - xmin,
|
|
|
|
rects[i]->y - ymin,
|
|
|
|
rects[i]->w,
|
|
|
|
rects[i]->h);
|
|
|
|
spudec_packet_send(vo_spudec, packet, pts, endpts);
|
|
|
|
}
|
|
|
|
|
2012-10-02 23:28:18 +02:00
|
|
|
static void guess_resolution(char type, int *w, int *h)
|
|
|
|
{
|
|
|
|
if (type == 'v') {
|
|
|
|
/* XXX Although the video frame is some size, the SPU frame is
|
|
|
|
always maximum size i.e. 720 wide and 576 or 480 high */
|
|
|
|
// For HD files in MKV the VobSub resolution can be higher though,
|
|
|
|
// see largeres_vobsub.mkv
|
|
|
|
if (*w <= 720 && *h <= 576) {
|
|
|
|
*w = 720;
|
|
|
|
*h = (*h == 480 || *h == 240) ? 480 : 576;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Hope that PGS subs set these and 720/576 works for dvb subs
|
|
|
|
if (!*w)
|
|
|
|
*w = 720;
|
|
|
|
if (!*h)
|
|
|
|
*h = 576;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-16 17:21:21 +02:00
|
|
|
static int init(struct sh_sub *sh, struct osd_state *osd)
|
2010-07-10 15:45:09 +02:00
|
|
|
{
|
2012-08-31 14:42:30 +02:00
|
|
|
if (sh->initialized)
|
|
|
|
return 0;
|
|
|
|
struct sd_lavc_priv *priv = talloc_zero(NULL, struct sd_lavc_priv);
|
2010-07-11 11:40:46 +02:00
|
|
|
enum CodecID cid = CODEC_ID_NONE;
|
|
|
|
switch (sh->type) {
|
|
|
|
case 'b':
|
|
|
|
cid = CODEC_ID_DVB_SUBTITLE; break;
|
|
|
|
case 'p':
|
|
|
|
cid = CODEC_ID_HDMV_PGS_SUBTITLE; break;
|
|
|
|
case 'x':
|
|
|
|
cid = CODEC_ID_XSUB; break;
|
2012-08-31 14:42:30 +02:00
|
|
|
case 'v':
|
|
|
|
cid = CODEC_ID_DVD_SUBTITLE; break;
|
2010-07-11 11:40:46 +02:00
|
|
|
}
|
2012-08-16 17:21:21 +02:00
|
|
|
AVCodecContext *ctx = NULL;
|
|
|
|
AVCodec *sub_codec = avcodec_find_decoder(cid);
|
|
|
|
if (!sub_codec)
|
|
|
|
goto error;
|
|
|
|
ctx = avcodec_alloc_context3(sub_codec);
|
|
|
|
if (!ctx)
|
|
|
|
goto error;
|
2012-08-31 14:42:30 +02:00
|
|
|
ctx->extradata_size = sh->extradata_len;
|
|
|
|
ctx->extradata = sh->extradata;
|
2012-08-16 17:21:21 +02:00
|
|
|
if (avcodec_open2(ctx, sub_codec, NULL) < 0)
|
|
|
|
goto error;
|
2012-08-31 14:42:30 +02:00
|
|
|
priv->avctx = ctx;
|
|
|
|
sh->context = priv;
|
2012-08-16 17:21:21 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
mp_msg(MSGT_SUBREADER, MSGL_ERR,
|
|
|
|
"Could not open libavcodec subtitle decoder\n");
|
|
|
|
av_free(ctx);
|
2012-08-31 14:42:30 +02:00
|
|
|
talloc_free(priv);
|
2012-08-16 17:21:21 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-08-31 14:42:30 +02:00
|
|
|
static void clear(struct sd_lavc_priv *priv)
|
|
|
|
{
|
|
|
|
priv->count = 0;
|
|
|
|
talloc_free(priv->inbitmaps);
|
|
|
|
talloc_free(priv->outbitmaps);
|
|
|
|
priv->inbitmaps = priv->outbitmaps = NULL;
|
|
|
|
priv->bitmaps_changed = true;
|
|
|
|
priv->endpts = MP_NOPTS_VALUE;
|
|
|
|
}
|
|
|
|
|
2012-08-16 17:21:21 +02:00
|
|
|
static void decode(struct sh_sub *sh, struct osd_state *osd, void *data,
|
|
|
|
int data_len, double pts, double duration)
|
|
|
|
{
|
2012-08-31 14:42:30 +02:00
|
|
|
struct sd_lavc_priv *priv = sh->context;
|
|
|
|
AVCodecContext *ctx = priv->avctx;
|
2012-08-16 17:21:21 +02:00
|
|
|
AVSubtitle sub;
|
|
|
|
AVPacket pkt;
|
2010-07-11 11:40:46 +02:00
|
|
|
|
2012-08-31 14:42:30 +02:00
|
|
|
clear(priv);
|
2010-07-10 15:45:09 +02:00
|
|
|
av_init_packet(&pkt);
|
2011-01-14 13:05:22 +01:00
|
|
|
pkt.data = data;
|
2012-08-16 17:21:21 +02:00
|
|
|
pkt.size = data_len;
|
2011-01-14 13:05:22 +01:00
|
|
|
pkt.pts = pts * 1000;
|
2011-01-16 19:51:48 +01:00
|
|
|
if (duration >= 0)
|
|
|
|
pkt.convergence_duration = duration * 1000;
|
2012-08-16 17:21:21 +02:00
|
|
|
int got_sub;
|
|
|
|
int res = avcodec_decode_subtitle2(ctx, &sub, &got_sub, &pkt);
|
|
|
|
if (res < 0 || !got_sub)
|
|
|
|
return;
|
2011-01-14 13:05:22 +01:00
|
|
|
if (pts != MP_NOPTS_VALUE) {
|
2010-07-10 15:45:09 +02:00
|
|
|
if (sub.end_display_time > sub.start_display_time)
|
2011-01-16 19:51:48 +01:00
|
|
|
duration = (sub.end_display_time - sub.start_display_time) / 1000.0;
|
2011-01-14 13:05:22 +01:00
|
|
|
pts += sub.start_display_time / 1000.0;
|
2010-07-10 15:45:09 +02:00
|
|
|
}
|
2011-01-16 19:51:48 +01:00
|
|
|
double endpts = MP_NOPTS_VALUE;
|
|
|
|
if (pts != MP_NOPTS_VALUE && duration >= 0)
|
|
|
|
endpts = pts + duration;
|
2012-08-16 17:21:21 +02:00
|
|
|
if (vo_spudec && sub.num_rects == 0)
|
2011-01-14 13:05:22 +01:00
|
|
|
spudec_set_paletted(vo_spudec, NULL, 0, NULL, 0, 0, 0, 0, pts, endpts);
|
2012-08-16 17:21:21 +02:00
|
|
|
if (sub.num_rects > 0) {
|
2010-07-10 15:45:09 +02:00
|
|
|
switch (sub.rects[0]->type) {
|
|
|
|
case SUBTITLE_BITMAP:
|
2012-10-02 23:28:18 +02:00
|
|
|
if (!osd->support_rgba) {
|
2012-08-31 14:42:30 +02:00
|
|
|
if (!vo_spudec)
|
|
|
|
vo_spudec = spudec_new_scaled(NULL, ctx->width, ctx->height,
|
|
|
|
NULL, 0);
|
|
|
|
old_avsub_to_spudec(sub.rects, sub.num_rects, pts, endpts);
|
|
|
|
vo_osd_changed(OSDTYPE_SPU);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
priv->inbitmaps = talloc_array(priv, struct sub_bitmap,
|
|
|
|
sub.num_rects);
|
|
|
|
for (int i = 0; i < sub.num_rects; i++) {
|
|
|
|
struct AVSubtitleRect *r = sub.rects[i];
|
|
|
|
struct sub_bitmap *b = &priv->inbitmaps[i];
|
|
|
|
uint32_t *outbmp = talloc_size(priv->inbitmaps,
|
|
|
|
r->w * r->h * 4);
|
|
|
|
b->bitmap = outbmp;
|
2012-09-28 21:19:36 +02:00
|
|
|
b->stride = r->w * 4;
|
2012-08-31 14:42:30 +02:00
|
|
|
b->w = r->w;
|
|
|
|
b->h = r->h;
|
|
|
|
b->x = r->x;
|
|
|
|
b->y = r->y;
|
|
|
|
uint8_t *inbmp = r->pict.data[0];
|
|
|
|
uint32_t *palette = (uint32_t *) r->pict.data[1];
|
|
|
|
for (int y = 0; y < r->h; y++) {
|
|
|
|
for (int x = 0; x < r->w; x++)
|
|
|
|
*outbmp++ = palette[*inbmp++];
|
|
|
|
inbmp += r->pict.linesize[0] - r->w;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
priv->count = sub.num_rects;
|
|
|
|
priv->endpts = endpts;
|
2010-07-10 15:45:09 +02:00
|
|
|
break;
|
2011-01-14 13:05:22 +01:00
|
|
|
default:
|
2012-08-16 17:21:21 +02:00
|
|
|
mp_msg(MSGT_SUBREADER, MSGL_ERR, "sd_lavc: unsupported subtitle "
|
2011-01-14 13:05:22 +01:00
|
|
|
"type from libavcodec\n");
|
2010-07-10 15:45:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-08-16 17:21:21 +02:00
|
|
|
avsubtitle_free(&sub);
|
|
|
|
}
|
|
|
|
|
2012-08-31 14:42:30 +02:00
|
|
|
static void get_bitmaps(struct sh_sub *sh, struct osd_state *osd,
|
|
|
|
struct sub_bitmaps *res)
|
|
|
|
{
|
|
|
|
struct sd_lavc_priv *priv = sh->context;
|
|
|
|
|
|
|
|
if (priv->endpts != MP_NOPTS_VALUE && (osd->sub_pts >= priv->endpts ||
|
|
|
|
osd->sub_pts < priv->endpts - 300))
|
|
|
|
clear(priv);
|
|
|
|
if (!osd->support_rgba)
|
|
|
|
return;
|
|
|
|
if (priv->bitmaps_changed && priv->count > 0)
|
|
|
|
priv->outbitmaps = talloc_memdup(priv, priv->inbitmaps,
|
|
|
|
talloc_get_size(priv->inbitmaps));
|
|
|
|
bool pos_changed = false;
|
|
|
|
int inw = priv->avctx->width;
|
|
|
|
int inh = priv->avctx->height;
|
2012-10-02 23:28:18 +02:00
|
|
|
guess_resolution(sh->type, &inw, &inh);
|
2012-08-31 14:42:30 +02:00
|
|
|
struct mp_eosd_res *d = &osd->dim;
|
|
|
|
double xscale = (double) (d->w - d->ml - d->mr) / inw;
|
|
|
|
double yscale = (double) (d->h - d->mt - d->mb) / inh;
|
|
|
|
for (int i = 0; i < priv->count; i++) {
|
|
|
|
struct sub_bitmap *bi = &priv->inbitmaps[i];
|
|
|
|
struct sub_bitmap *bo = &priv->outbitmaps[i];
|
|
|
|
#define SET(var, val) pos_changed |= var != (int)(val); var = (val)
|
|
|
|
SET(bo->x, bi->x * xscale + d->ml);
|
|
|
|
SET(bo->y, bi->y * yscale + d->mt);
|
|
|
|
SET(bo->dw, bi->w * xscale);
|
|
|
|
SET(bo->dh, bi->h * yscale);
|
|
|
|
}
|
|
|
|
res->parts = priv->outbitmaps;
|
2012-09-28 21:19:36 +02:00
|
|
|
res->num_parts = priv->count;
|
2012-08-31 14:42:30 +02:00
|
|
|
if (priv->bitmaps_changed)
|
|
|
|
res->bitmap_id = ++res->bitmap_pos_id;
|
|
|
|
else if (pos_changed)
|
|
|
|
res->bitmap_pos_id++;
|
|
|
|
priv->bitmaps_changed = false;
|
2012-09-28 21:19:36 +02:00
|
|
|
res->format = SUBBITMAP_RGBA;
|
2012-08-31 14:42:30 +02:00
|
|
|
res->scaled = xscale != 1 || yscale != 1;
|
|
|
|
}
|
|
|
|
|
2012-08-16 17:21:21 +02:00
|
|
|
static void reset(struct sh_sub *sh, struct osd_state *osd)
|
|
|
|
{
|
2012-08-31 14:42:30 +02:00
|
|
|
struct sd_lavc_priv *priv = sh->context;
|
|
|
|
|
|
|
|
clear(priv);
|
2012-08-16 17:21:21 +02:00
|
|
|
// lavc might not do this right for all codecs; may need close+reopen
|
2012-08-31 14:42:30 +02:00
|
|
|
avcodec_flush_buffers(priv->avctx);
|
2010-07-10 15:45:09 +02:00
|
|
|
}
|
2012-08-16 17:21:21 +02:00
|
|
|
|
|
|
|
static void uninit(struct sh_sub *sh)
|
|
|
|
{
|
2012-08-31 14:42:30 +02:00
|
|
|
struct sd_lavc_priv *priv = sh->context;
|
|
|
|
|
|
|
|
avcodec_close(priv->avctx);
|
|
|
|
av_free(priv->avctx);
|
|
|
|
talloc_free(priv);
|
2012-08-16 17:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct sd_functions sd_lavc = {
|
|
|
|
.init = init,
|
|
|
|
.decode = decode,
|
2012-08-31 14:42:30 +02:00
|
|
|
.get_bitmaps = get_bitmaps,
|
2012-08-16 17:21:21 +02:00
|
|
|
.reset = reset,
|
|
|
|
.switch_off = reset,
|
|
|
|
.uninit = uninit,
|
|
|
|
};
|