2011-12-07 15:05:38 +01:00
|
|
|
///
|
|
|
|
/// @file codec.c @brief Codec functions
|
|
|
|
///
|
2012-01-02 17:47:50 +01:00
|
|
|
/// Copyright (c) 2009 - 2012 by Johns. All Rights Reserved.
|
2011-12-07 15:05:38 +01:00
|
|
|
///
|
|
|
|
/// Contributor(s):
|
|
|
|
///
|
|
|
|
/// License: AGPLv3
|
|
|
|
///
|
|
|
|
/// This program is free software: you can redistribute it and/or modify
|
|
|
|
/// it under the terms of the GNU Affero General Public License as
|
|
|
|
/// published by the Free Software Foundation, either version 3 of the
|
|
|
|
/// License.
|
|
|
|
///
|
|
|
|
/// This program 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 Affero General Public License for more details.
|
|
|
|
///
|
|
|
|
/// $Id$
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @defgroup Codec The codec module.
|
|
|
|
///
|
|
|
|
/// This module contains all decoder and codec functions.
|
|
|
|
/// It is uses ffmpeg (http://ffmpeg.org) as backend.
|
|
|
|
///
|
2012-01-02 17:47:50 +01:00
|
|
|
/// It may work with libav (http://libav.org), but the tests show
|
|
|
|
/// many bugs and incompatiblity in it. Don't use this shit.
|
|
|
|
///
|
|
|
|
|
2012-02-27 23:13:53 +01:00
|
|
|
/// compile with passthrough support (stable, ac3 only)
|
2012-01-07 03:05:43 +01:00
|
|
|
#define USE_PASSTHROUGH
|
2012-02-27 23:13:53 +01:00
|
|
|
/// compile audio drift correction support (experimental)
|
2012-04-20 18:28:25 +02:00
|
|
|
#define USE_AUDIO_DRIFT_CORRECTION
|
|
|
|
/// compile AC3 audio drift correction support (experimental)
|
|
|
|
#define USE_AC3_DRIFT_CORRECTION
|
2012-01-07 03:05:43 +01:00
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2012-01-07 03:05:43 +01:00
|
|
|
#include <endian.h>
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <libintl.h>
|
|
|
|
#define _(str) gettext(str) ///< gettext shortcut
|
|
|
|
#define _N(str) str ///< gettext_noop shortcut
|
|
|
|
|
|
|
|
#include <alsa/iatomic.h>
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libavcodec/vaapi.h>
|
2011-12-23 19:33:30 +01:00
|
|
|
#ifdef USE_VDPAU
|
|
|
|
#include <libavcodec/vdpau.h>
|
|
|
|
#endif
|
2011-12-07 15:05:38 +01:00
|
|
|
|
2012-01-02 17:47:50 +01:00
|
|
|
#ifndef __USE_GNU
|
|
|
|
#define __USE_GNU
|
|
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
#ifdef MAIN_H
|
|
|
|
#include MAIN_H
|
|
|
|
#endif
|
|
|
|
#include "misc.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "codec.h"
|
|
|
|
|
2012-01-02 17:47:50 +01:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Global
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
///
|
|
|
|
/// ffmpeg lock mutex
|
|
|
|
///
|
|
|
|
/// new ffmpeg dislikes simultanous open/close
|
|
|
|
/// this breaks our code, until this is fixed use lock.
|
|
|
|
///
|
|
|
|
static pthread_mutex_t CodecLockMutex;
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Video
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
///
|
|
|
|
/// Video decoder typedef.
|
|
|
|
///
|
|
|
|
//typedef struct _video_decoder_ Decoder;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Video decoder structure.
|
|
|
|
///
|
|
|
|
struct _video_decoder_
|
|
|
|
{
|
|
|
|
VideoHwDecoder *HwDecoder; ///< video hardware decoder
|
|
|
|
|
2011-12-23 19:33:30 +01:00
|
|
|
int GetFormatDone; ///< flag get format called!
|
2011-12-07 15:05:38 +01:00
|
|
|
AVCodec *VideoCodec; ///< video codec
|
|
|
|
AVCodecContext *VideoCtx; ///< video codec context
|
|
|
|
AVFrame *Frame; ///< decoded video frame
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Call-backs
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Callback to negotiate the PixelFormat.
|
|
|
|
**
|
|
|
|
** @param fmt is the list of formats which are supported by the codec,
|
|
|
|
** it is terminated by -1 as 0 is a valid format, the
|
|
|
|
** formats are ordered by quality.
|
|
|
|
*/
|
|
|
|
static enum PixelFormat Codec_get_format(AVCodecContext * video_ctx,
|
|
|
|
const enum PixelFormat *fmt)
|
|
|
|
{
|
|
|
|
VideoDecoder *decoder;
|
|
|
|
|
|
|
|
decoder = video_ctx->opaque;
|
2011-12-23 23:01:30 +01:00
|
|
|
//Debug(3, "codec: %s: %18p\n", __FUNCTION__, decoder);
|
2011-12-23 19:33:30 +01:00
|
|
|
decoder->GetFormatDone = 1;
|
2011-12-07 15:05:38 +01:00
|
|
|
return Video_get_format(decoder->HwDecoder, video_ctx, fmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Video buffer management, get buffer for frame.
|
|
|
|
**
|
|
|
|
** Called at the beginning of each frame to get a buffer for it.
|
|
|
|
**
|
|
|
|
** @param video_ctx Codec context
|
|
|
|
** @param frame Get buffer for this frame
|
|
|
|
*/
|
|
|
|
static int Codec_get_buffer(AVCodecContext * video_ctx, AVFrame * frame)
|
|
|
|
{
|
2011-12-23 19:33:30 +01:00
|
|
|
VideoDecoder *decoder;
|
|
|
|
|
|
|
|
decoder = video_ctx->opaque;
|
|
|
|
if (!decoder->GetFormatDone) { // get_format missing
|
2011-12-07 15:05:38 +01:00
|
|
|
enum PixelFormat fmts[2];
|
|
|
|
|
2011-12-23 23:01:30 +01:00
|
|
|
fprintf(stderr, "codec: buggy ffmpeg/libav\n");
|
|
|
|
Warning(_("codec: buggy ffmpeg/libav\n"));
|
2011-12-07 15:05:38 +01:00
|
|
|
fmts[0] = video_ctx->pix_fmt;
|
|
|
|
fmts[1] = PIX_FMT_NONE;
|
|
|
|
Codec_get_format(video_ctx, fmts);
|
|
|
|
}
|
2011-12-26 14:25:42 +01:00
|
|
|
#ifdef USE_VDPAU
|
2011-12-07 15:05:38 +01:00
|
|
|
// VDPAU: PIX_FMT_VDPAU_H264 .. PIX_FMT_VDPAU_VC1 PIX_FMT_VDPAU_MPEG4
|
|
|
|
if ((PIX_FMT_VDPAU_H264 <= video_ctx->pix_fmt
|
|
|
|
&& video_ctx->pix_fmt <= PIX_FMT_VDPAU_VC1)
|
|
|
|
|| video_ctx->pix_fmt == PIX_FMT_VDPAU_MPEG4) {
|
|
|
|
unsigned surface;
|
2011-12-23 19:33:30 +01:00
|
|
|
struct vdpau_render_state *vrs;
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
surface = VideoGetSurface(decoder->HwDecoder);
|
2011-12-23 22:08:51 +01:00
|
|
|
vrs = av_mallocz(sizeof(struct vdpau_render_state));
|
2011-12-23 19:33:30 +01:00
|
|
|
vrs->surface = surface;
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
//Debug(3, "codec: use surface %#010x\n", surface);
|
|
|
|
|
|
|
|
frame->type = FF_BUFFER_TYPE_USER;
|
2011-12-20 15:05:35 +01:00
|
|
|
#if LIBAVCODEC_VERSION_INT <= AV_VERSION_INT(53,46,0)
|
2011-12-07 15:05:38 +01:00
|
|
|
frame->age = 256 * 256 * 256 * 64;
|
2011-12-20 15:05:35 +01:00
|
|
|
#endif
|
2011-12-23 19:33:30 +01:00
|
|
|
// render
|
|
|
|
frame->data[0] = (void *)vrs;
|
|
|
|
frame->data[1] = NULL;
|
|
|
|
frame->data[2] = NULL;
|
|
|
|
frame->data[3] = NULL;
|
2011-12-07 15:05:38 +01:00
|
|
|
|
2011-12-20 15:05:35 +01:00
|
|
|
// reordered frames
|
|
|
|
if (video_ctx->pkt) {
|
|
|
|
frame->pkt_pts = video_ctx->pkt->pts;
|
|
|
|
} else {
|
|
|
|
frame->pkt_pts = AV_NOPTS_VALUE;
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-12-26 14:25:42 +01:00
|
|
|
#endif
|
2011-12-07 15:05:38 +01:00
|
|
|
// VA-API:
|
|
|
|
if (video_ctx->hwaccel_context) {
|
|
|
|
unsigned surface;
|
|
|
|
|
|
|
|
surface = VideoGetSurface(decoder->HwDecoder);
|
|
|
|
|
|
|
|
//Debug(3, "codec: use surface %#010x\n", surface);
|
|
|
|
|
|
|
|
frame->type = FF_BUFFER_TYPE_USER;
|
2011-12-20 15:05:35 +01:00
|
|
|
#if LIBAVCODEC_VERSION_INT <= AV_VERSION_INT(53,46,0)
|
2011-12-07 15:05:38 +01:00
|
|
|
frame->age = 256 * 256 * 256 * 64;
|
2011-12-20 15:05:35 +01:00
|
|
|
#endif
|
2011-12-07 15:05:38 +01:00
|
|
|
// vaapi needs both fields set
|
|
|
|
frame->data[0] = (void *)(size_t) surface;
|
|
|
|
frame->data[3] = (void *)(size_t) surface;
|
|
|
|
|
2011-12-20 15:05:35 +01:00
|
|
|
// reordered frames
|
|
|
|
if (video_ctx->pkt) {
|
|
|
|
frame->pkt_pts = video_ctx->pkt->pts;
|
|
|
|
} else {
|
|
|
|
frame->pkt_pts = AV_NOPTS_VALUE;
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//Debug(3, "codec: fallback to default get_buffer\n");
|
|
|
|
return avcodec_default_get_buffer(video_ctx, frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Video buffer management, release buffer for frame.
|
|
|
|
** Called to release buffers which were allocated with get_buffer.
|
|
|
|
**
|
|
|
|
** @param video_ctx Codec context
|
|
|
|
** @param frame Release buffer for this frame
|
|
|
|
*/
|
|
|
|
static void Codec_release_buffer(AVCodecContext * video_ctx, AVFrame * frame)
|
|
|
|
{
|
2011-12-26 14:25:42 +01:00
|
|
|
#ifdef USE_VDPAU
|
2011-12-07 15:05:38 +01:00
|
|
|
// VDPAU: PIX_FMT_VDPAU_H264 .. PIX_FMT_VDPAU_VC1 PIX_FMT_VDPAU_MPEG4
|
|
|
|
if ((PIX_FMT_VDPAU_H264 <= video_ctx->pix_fmt
|
|
|
|
&& video_ctx->pix_fmt <= PIX_FMT_VDPAU_VC1)
|
|
|
|
|| video_ctx->pix_fmt == PIX_FMT_VDPAU_MPEG4) {
|
|
|
|
VideoDecoder *decoder;
|
2011-12-23 19:33:30 +01:00
|
|
|
struct vdpau_render_state *vrs;
|
2011-12-07 15:05:38 +01:00
|
|
|
unsigned surface;
|
|
|
|
|
|
|
|
decoder = video_ctx->opaque;
|
2011-12-23 19:33:30 +01:00
|
|
|
vrs = (struct vdpau_render_state *)frame->data[0];
|
|
|
|
surface = vrs->surface;
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
//Debug(3, "codec: release surface %#010x\n", surface);
|
|
|
|
VideoReleaseSurface(decoder->HwDecoder, surface);
|
|
|
|
|
2011-12-23 19:33:30 +01:00
|
|
|
av_freep(&vrs->bitstream_buffers);
|
|
|
|
vrs->bitstream_buffers_allocated = 0;
|
|
|
|
av_freep(&frame->data[0]);
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2011-12-26 14:25:42 +01:00
|
|
|
#endif
|
2011-12-07 15:05:38 +01:00
|
|
|
// VA-API
|
|
|
|
if (video_ctx->hwaccel_context) {
|
|
|
|
VideoDecoder *decoder;
|
|
|
|
unsigned surface;
|
|
|
|
|
|
|
|
decoder = video_ctx->opaque;
|
|
|
|
surface = (unsigned)(size_t) frame->data[3];
|
|
|
|
|
|
|
|
//Debug(3, "codec: release surface %#010x\n", surface);
|
|
|
|
VideoReleaseSurface(decoder->HwDecoder, surface);
|
|
|
|
|
|
|
|
frame->data[0] = NULL;
|
|
|
|
frame->data[3] = NULL;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//Debug(3, "codec: fallback to default release_buffer\n");
|
|
|
|
return avcodec_default_release_buffer(video_ctx, frame);
|
|
|
|
}
|
|
|
|
|
2011-12-23 22:08:51 +01:00
|
|
|
/// libav: compatibility hack
|
|
|
|
#ifndef AV_NUM_DATA_POINTERS
|
|
|
|
#define AV_NUM_DATA_POINTERS 4
|
|
|
|
#endif
|
|
|
|
|
2011-12-23 19:33:30 +01:00
|
|
|
/**
|
|
|
|
** Draw a horizontal band.
|
|
|
|
**
|
|
|
|
** @param video_ctx Codec context
|
|
|
|
** @param frame draw this frame
|
|
|
|
** @param y y position of slice
|
|
|
|
** @param type 1->top field, 2->bottom field, 3->frame
|
|
|
|
** @param offset offset into AVFrame.data from which slice
|
|
|
|
** should be read
|
|
|
|
** @param height height of slice
|
|
|
|
*/
|
|
|
|
static void Codec_draw_horiz_band(AVCodecContext * video_ctx,
|
|
|
|
const AVFrame * frame, __attribute__ ((unused))
|
|
|
|
int offset[AV_NUM_DATA_POINTERS], __attribute__ ((unused))
|
|
|
|
int y, __attribute__ ((unused))
|
|
|
|
int type, __attribute__ ((unused))
|
|
|
|
int height)
|
|
|
|
{
|
2011-12-26 14:25:42 +01:00
|
|
|
#ifdef USE_VDPAU
|
2011-12-23 19:33:30 +01:00
|
|
|
// VDPAU: PIX_FMT_VDPAU_H264 .. PIX_FMT_VDPAU_VC1 PIX_FMT_VDPAU_MPEG4
|
|
|
|
if ((PIX_FMT_VDPAU_H264 <= video_ctx->pix_fmt
|
|
|
|
&& video_ctx->pix_fmt <= PIX_FMT_VDPAU_VC1)
|
|
|
|
|| video_ctx->pix_fmt == PIX_FMT_VDPAU_MPEG4) {
|
|
|
|
VideoDecoder *decoder;
|
|
|
|
struct vdpau_render_state *vrs;
|
|
|
|
|
|
|
|
//unsigned surface;
|
|
|
|
|
|
|
|
decoder = video_ctx->opaque;
|
|
|
|
vrs = (struct vdpau_render_state *)frame->data[0];
|
|
|
|
//surface = vrs->surface;
|
|
|
|
|
|
|
|
//Debug(3, "codec: draw slice surface %#010x\n", surface);
|
|
|
|
//Debug(3, "codec: %d references\n", vrs->info.h264.num_ref_frames);
|
|
|
|
|
|
|
|
VideoDrawRenderState(decoder->HwDecoder, vrs);
|
2011-12-26 14:25:42 +01:00
|
|
|
return;
|
2011-12-23 19:33:30 +01:00
|
|
|
}
|
2011-12-26 14:25:42 +01:00
|
|
|
#else
|
|
|
|
(void)video_ctx;
|
|
|
|
(void)frame;
|
|
|
|
#endif
|
2011-12-23 19:33:30 +01:00
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Test
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Allocate a new video decoder context.
|
|
|
|
**
|
|
|
|
** @param hw_decoder video hardware decoder
|
|
|
|
**
|
2012-01-22 16:54:22 +01:00
|
|
|
** @returns private decoder pointer for video decoder.
|
2011-12-07 15:05:38 +01:00
|
|
|
*/
|
|
|
|
VideoDecoder *CodecVideoNewDecoder(VideoHwDecoder * hw_decoder)
|
|
|
|
{
|
|
|
|
VideoDecoder *decoder;
|
|
|
|
|
|
|
|
if (!(decoder = calloc(1, sizeof(*decoder)))) {
|
2012-01-22 16:54:22 +01:00
|
|
|
Fatal(_("codec: can't allocate vodeo decoder\n"));
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
decoder->HwDecoder = hw_decoder;
|
|
|
|
|
|
|
|
return decoder;
|
|
|
|
}
|
|
|
|
|
2012-01-22 16:54:22 +01:00
|
|
|
/**
|
|
|
|
** Deallocate a video decoder context.
|
|
|
|
**
|
|
|
|
** @param decoder private video decoder
|
|
|
|
*/
|
|
|
|
void CodecVideoDelDecoder(VideoDecoder * decoder)
|
|
|
|
{
|
|
|
|
free(decoder);
|
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
/**
|
|
|
|
** Open video decoder.
|
|
|
|
**
|
|
|
|
** @param decoder private video decoder
|
|
|
|
** @param name video codec name
|
|
|
|
** @param codec_id video codec id, used if name == NULL
|
|
|
|
*/
|
|
|
|
void CodecVideoOpen(VideoDecoder * decoder, const char *name, int codec_id)
|
|
|
|
{
|
|
|
|
AVCodec *video_codec;
|
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
Debug(3, "codec: using video codec %s or ID %#06x\n", name, codec_id);
|
2011-12-07 15:05:38 +01:00
|
|
|
|
2012-01-23 15:40:59 +01:00
|
|
|
if (decoder->VideoCtx) {
|
2012-01-22 22:46:52 +01:00
|
|
|
Error(_("codec: missing close\n"));
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
//
|
|
|
|
// ffmpeg compatibility hack
|
|
|
|
//
|
2011-12-23 19:33:30 +01:00
|
|
|
#if 1 || (LIBAVCODEC_VERSION_INT <= AV_VERSION_INT(52,96,0))
|
2011-12-07 15:05:38 +01:00
|
|
|
if (name) {
|
|
|
|
if (!strcmp(name, "h264video_vdpau")) {
|
|
|
|
name = "h264_vdpau";
|
|
|
|
} else if (!strcmp(name, "mpeg4video_vdpau")) {
|
|
|
|
name = "mpeg4_vdpau";
|
|
|
|
} else if (!strcmp(name, "vc1video_vdpau")) {
|
|
|
|
name = "vc1_vdpau";
|
|
|
|
} else if (!strcmp(name, "wmv3video_vdpau")) {
|
|
|
|
name = "wmv3_vdpau";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (name && (video_codec = avcodec_find_decoder_by_name(name))) {
|
|
|
|
Debug(3, "codec: vdpau decoder found\n");
|
|
|
|
} else if (!(video_codec = avcodec_find_decoder(codec_id))) {
|
2012-03-03 16:45:59 +01:00
|
|
|
Fatal(_("codec: codec ID %#06x not found\n"), codec_id);
|
2011-12-19 17:03:40 +01:00
|
|
|
// FIXME: none fatal
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
decoder->VideoCodec = video_codec;
|
|
|
|
|
|
|
|
if (!(decoder->VideoCtx = avcodec_alloc_context3(video_codec))) {
|
|
|
|
Fatal(_("codec: can't allocate video codec context\n"));
|
|
|
|
}
|
2011-12-25 11:36:02 +01:00
|
|
|
// FIXME: for software decoder use all cpus, otherwise 1
|
|
|
|
decoder->VideoCtx->thread_count = 1;
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_lock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
// open codec
|
2011-12-19 23:34:47 +01:00
|
|
|
#if LIBAVCODEC_VERSION_INT <= AV_VERSION_INT(53,5,0)
|
2011-12-19 17:03:40 +01:00
|
|
|
if (avcodec_open(decoder->VideoCtx, video_codec) < 0) {
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-19 17:03:40 +01:00
|
|
|
Fatal(_("codec: can't open video codec!\n"));
|
|
|
|
}
|
|
|
|
#else
|
2011-12-07 15:05:38 +01:00
|
|
|
if (avcodec_open2(decoder->VideoCtx, video_codec, NULL) < 0) {
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
Fatal(_("codec: can't open video codec!\n"));
|
|
|
|
}
|
2011-12-19 17:03:40 +01:00
|
|
|
#endif
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
decoder->VideoCtx->opaque = decoder; // our structure
|
|
|
|
|
|
|
|
Debug(3, "codec: video '%s'\n", decoder->VideoCtx->codec_name);
|
|
|
|
if (codec_id == CODEC_ID_H264) {
|
|
|
|
// 2.53 Ghz CPU is too slow for this codec at 1080i
|
|
|
|
//decoder->VideoCtx->skip_loop_filter = AVDISCARD_ALL;
|
|
|
|
//decoder->VideoCtx->skip_loop_filter = AVDISCARD_BIDIR;
|
|
|
|
}
|
|
|
|
if (video_codec->capabilities & CODEC_CAP_TRUNCATED) {
|
|
|
|
Debug(3, "codec: video can use truncated packets\n");
|
|
|
|
// we do not send complete frames
|
|
|
|
decoder->VideoCtx->flags |= CODEC_FLAG_TRUNCATED;
|
|
|
|
}
|
|
|
|
// FIXME: own memory management for video frames.
|
|
|
|
if (video_codec->capabilities & CODEC_CAP_DR1) {
|
|
|
|
Debug(3, "codec: can use own buffer management\n");
|
|
|
|
}
|
|
|
|
if (video_codec->capabilities & CODEC_CAP_HWACCEL_VDPAU) {
|
|
|
|
Debug(3, "codec: can export data for HW decoding (VDPAU)\n");
|
|
|
|
}
|
|
|
|
#ifdef CODEC_CAP_FRAME_THREADS
|
|
|
|
if (video_codec->capabilities & CODEC_CAP_FRAME_THREADS) {
|
|
|
|
Debug(3, "codec: codec supports frame threads\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
//decoder->VideoCtx->debug = FF_DEBUG_STARTCODE;
|
|
|
|
|
|
|
|
if (video_codec->capabilities & CODEC_CAP_HWACCEL_VDPAU) {
|
|
|
|
// FIXME: get_format never called.
|
|
|
|
decoder->VideoCtx->get_format = Codec_get_format;
|
|
|
|
decoder->VideoCtx->get_buffer = Codec_get_buffer;
|
|
|
|
decoder->VideoCtx->release_buffer = Codec_release_buffer;
|
|
|
|
decoder->VideoCtx->reget_buffer = Codec_get_buffer;
|
2011-12-23 19:33:30 +01:00
|
|
|
decoder->VideoCtx->draw_horiz_band = Codec_draw_horiz_band;
|
|
|
|
decoder->VideoCtx->slice_flags =
|
|
|
|
SLICE_FLAG_CODED_ORDER | SLICE_FLAG_ALLOW_FIELD;
|
|
|
|
decoder->VideoCtx->thread_count = 1;
|
|
|
|
decoder->VideoCtx->active_thread_type = 0;
|
2011-12-07 15:05:38 +01:00
|
|
|
} else {
|
|
|
|
decoder->VideoCtx->hwaccel_context =
|
|
|
|
VideoGetVaapiContext(decoder->HwDecoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
// our pixel format video hardware decoder hook
|
|
|
|
if (decoder->VideoCtx->hwaccel_context) {
|
|
|
|
decoder->VideoCtx->get_format = Codec_get_format;
|
|
|
|
decoder->VideoCtx->get_buffer = Codec_get_buffer;
|
|
|
|
decoder->VideoCtx->release_buffer = Codec_release_buffer;
|
|
|
|
decoder->VideoCtx->reget_buffer = Codec_get_buffer;
|
|
|
|
#if 0
|
|
|
|
decoder->VideoCtx->thread_count = 1;
|
|
|
|
decoder->VideoCtx->draw_horiz_band = NULL;
|
|
|
|
decoder->VideoCtx->slice_flags =
|
|
|
|
SLICE_FLAG_CODED_ORDER | SLICE_FLAG_ALLOW_FIELD;
|
|
|
|
//decoder->VideoCtx->flags |= CODEC_FLAG_EMU_EDGE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Prepare frame buffer for decoder
|
|
|
|
//
|
|
|
|
if (!(decoder->Frame = avcodec_alloc_frame())) {
|
|
|
|
Fatal(_("codec: can't allocate decoder frame\n"));
|
|
|
|
}
|
2011-12-23 23:01:30 +01:00
|
|
|
// reset buggy ffmpeg/libav flag
|
|
|
|
decoder->GetFormatDone = 0;
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Close video decoder.
|
|
|
|
**
|
|
|
|
** @param video_decoder private video decoder
|
|
|
|
*/
|
|
|
|
void CodecVideoClose(VideoDecoder * video_decoder)
|
|
|
|
{
|
2011-12-07 22:06:08 +01:00
|
|
|
// FIXME: play buffered data
|
|
|
|
av_freep(&video_decoder->Frame);
|
2011-12-08 18:58:10 +01:00
|
|
|
if (video_decoder->VideoCtx) {
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_lock(&CodecLockMutex);
|
2011-12-07 22:06:08 +01:00
|
|
|
avcodec_close(video_decoder->VideoCtx);
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-07 22:06:08 +01:00
|
|
|
av_freep(&video_decoder->VideoCtx);
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Display pts...
|
2011-12-19 17:03:40 +01:00
|
|
|
**
|
2012-01-02 17:47:50 +01:00
|
|
|
** ffmpeg-0.9 pts always AV_NOPTS_VALUE
|
|
|
|
** ffmpeg-0.9 pkt_pts nice monotonic (only with HD)
|
|
|
|
** ffmpeg-0.9 pkt_dts wild jumping -160 - 340 ms
|
2011-12-19 17:03:40 +01:00
|
|
|
**
|
|
|
|
** libav 0.8_pre20111116 pts always AV_NOPTS_VALUE
|
2011-12-20 15:05:35 +01:00
|
|
|
** libav 0.8_pre20111116 pkt_pts always 0 (could be fixed?)
|
2011-12-19 17:03:40 +01:00
|
|
|
** libav 0.8_pre20111116 pkt_dts wild jumping -160 - 340 ms
|
2011-12-07 15:05:38 +01:00
|
|
|
*/
|
|
|
|
void DisplayPts(AVCodecContext * video_ctx, AVFrame * frame)
|
|
|
|
{
|
|
|
|
int ms_delay;
|
2011-12-19 17:03:40 +01:00
|
|
|
int64_t pts;
|
|
|
|
static int64_t last_pts;
|
2011-12-07 15:05:38 +01:00
|
|
|
|
2011-12-19 17:03:40 +01:00
|
|
|
pts = frame->pkt_pts;
|
|
|
|
if (pts == (int64_t) AV_NOPTS_VALUE) {
|
2011-12-07 15:05:38 +01:00
|
|
|
printf("*");
|
|
|
|
}
|
|
|
|
ms_delay = (1000 * video_ctx->time_base.num) / video_ctx->time_base.den;
|
|
|
|
ms_delay += frame->repeat_pict * ms_delay / 2;
|
2011-12-19 17:03:40 +01:00
|
|
|
printf("codec: PTS %s%s %" PRId64 " %d %d/%d %dms\n",
|
2011-12-07 15:05:38 +01:00
|
|
|
frame->repeat_pict ? "r" : " ", frame->interlaced_frame ? "I" : " ",
|
2011-12-19 17:03:40 +01:00
|
|
|
pts, (int)(pts - last_pts) / 90, video_ctx->time_base.num,
|
|
|
|
video_ctx->time_base.den, ms_delay);
|
|
|
|
|
2011-12-20 15:05:35 +01:00
|
|
|
if (pts != (int64_t) AV_NOPTS_VALUE) {
|
|
|
|
last_pts = pts;
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Decode a video packet.
|
|
|
|
**
|
|
|
|
** @param decoder video decoder data
|
|
|
|
** @param avpkt video packet
|
|
|
|
*/
|
2011-12-29 13:43:12 +01:00
|
|
|
void CodecVideoDecode(VideoDecoder * decoder, const AVPacket * avpkt)
|
2011-12-07 15:05:38 +01:00
|
|
|
{
|
|
|
|
AVCodecContext *video_ctx;
|
|
|
|
AVFrame *frame;
|
|
|
|
int used;
|
|
|
|
int got_frame;
|
2011-12-29 13:43:12 +01:00
|
|
|
AVPacket pkt[1];
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
video_ctx = decoder->VideoCtx;
|
|
|
|
frame = decoder->Frame;
|
2011-12-29 13:43:12 +01:00
|
|
|
*pkt = *avpkt; // use copy
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
next_part:
|
|
|
|
// FIXME: this function can crash with bad packets
|
2011-12-29 13:43:12 +01:00
|
|
|
used = avcodec_decode_video2(video_ctx, frame, &got_frame, pkt);
|
|
|
|
Debug(4, "%s: %p %d -> %d %d\n", __FUNCTION__, pkt->data, pkt->size, used,
|
|
|
|
got_frame);
|
2011-12-07 15:05:38 +01:00
|
|
|
|
|
|
|
if (got_frame) { // frame completed
|
|
|
|
//DisplayPts(video_ctx, frame);
|
2011-12-29 13:43:12 +01:00
|
|
|
VideoRenderFrame(decoder->HwDecoder, video_ctx, frame);
|
2011-12-07 15:05:38 +01:00
|
|
|
} else {
|
|
|
|
// some frames are needed for references, interlaced frames ...
|
|
|
|
// could happen with h264 dvb streams, just drop data.
|
|
|
|
|
|
|
|
Debug(4, "codec: %8d incomplete interlaced frame %d bytes used\n",
|
|
|
|
video_ctx->frame_number, used);
|
|
|
|
}
|
2011-12-29 13:43:12 +01:00
|
|
|
if (used != pkt->size) {
|
2012-03-09 21:47:06 +01:00
|
|
|
// ffmpeg 0.8.7 dislikes our seq_end_h264 and enters endless loop here
|
|
|
|
if (used == 0 && pkt->size == 5 && pkt->data[4] == 0x0A) {
|
|
|
|
Warning("codec: ffmpeg 0.8.x workaround used\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-01-27 21:08:37 +01:00
|
|
|
if (used >= 0 && used < pkt->size) {
|
2011-12-07 15:05:38 +01:00
|
|
|
// some tv channels, produce this
|
|
|
|
Debug(4,
|
|
|
|
"codec: ooops didn't use complete video packet used %d of %d\n",
|
2011-12-29 13:43:12 +01:00
|
|
|
used, pkt->size);
|
|
|
|
pkt->size -= used;
|
2012-01-27 21:08:37 +01:00
|
|
|
pkt->data += used;
|
2011-12-07 15:05:38 +01:00
|
|
|
goto next_part;
|
|
|
|
}
|
|
|
|
Debug(3, "codec: bad frame %d\n", used);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-08 21:46:00 +01:00
|
|
|
/**
|
|
|
|
** Flush the video decoder.
|
|
|
|
**
|
|
|
|
** @param decoder video decoder data
|
|
|
|
*/
|
|
|
|
void CodecVideoFlushBuffers(VideoDecoder * decoder)
|
|
|
|
{
|
2012-06-22 19:28:48 +02:00
|
|
|
if (decoder->VideoCtx) {
|
|
|
|
avcodec_flush_buffers(decoder->VideoCtx);
|
|
|
|
}
|
2012-01-08 21:46:00 +01:00
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Audio
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
///
|
|
|
|
/// Audio decoder typedef.
|
|
|
|
///
|
|
|
|
typedef struct _audio_decoder_ AudioDecoder;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Audio decoder structure.
|
|
|
|
///
|
|
|
|
struct _audio_decoder_
|
|
|
|
{
|
|
|
|
AVCodec *AudioCodec; ///< audio codec
|
|
|
|
AVCodecContext *AudioCtx; ///< audio codec context
|
|
|
|
|
2012-02-12 17:50:10 +01:00
|
|
|
int PassthroughAC3; ///< current ac-3 pass-through
|
2011-12-26 14:25:42 +01:00
|
|
|
int SampleRate; ///< current stream sample rate
|
|
|
|
int Channels; ///< current stream channels
|
2011-12-08 18:58:10 +01:00
|
|
|
|
|
|
|
int HwSampleRate; ///< hw sample rate
|
|
|
|
int HwChannels; ///< hw channels
|
|
|
|
|
|
|
|
ReSampleContext *ReSample; ///< audio resampling context
|
2012-02-27 23:13:53 +01:00
|
|
|
|
2012-02-29 16:35:49 +01:00
|
|
|
int64_t LastDelay; ///< last delay
|
|
|
|
struct timespec LastTime; ///< last time
|
2012-02-27 23:13:53 +01:00
|
|
|
int64_t LastPTS; ///< last PTS
|
|
|
|
|
2012-02-29 16:35:49 +01:00
|
|
|
int Drift; ///< accumulated audio drift
|
|
|
|
int DriftCorr; ///< audio drift correction value
|
2012-03-03 16:45:59 +01:00
|
|
|
int DriftFrac; ///< audio drift fraction for ac3
|
2012-02-27 23:13:53 +01:00
|
|
|
|
|
|
|
struct AVResampleContext *AvResample; ///< second audio resample context
|
|
|
|
#define MAX_CHANNELS 8 ///< max number of channels supported
|
|
|
|
int16_t *Buffer[MAX_CHANNELS]; ///< deinterleave sample buffers
|
|
|
|
int BufferSize; ///< size of sample buffer
|
|
|
|
int16_t *Remain[MAX_CHANNELS]; ///< filter remaining samples
|
|
|
|
int RemainSize; ///< size of remain buffer
|
|
|
|
int RemainCount; ///< number of remaining samples
|
2011-12-07 15:05:38 +01:00
|
|
|
};
|
|
|
|
|
2012-04-20 18:28:25 +02:00
|
|
|
#ifdef USE_AUDIO_DRIFT_CORRECTION
|
|
|
|
static char CodecAudioDrift; ///< flag: enable audio-drift correction
|
|
|
|
#else
|
|
|
|
static const int CodecAudioDrift = 0;
|
|
|
|
#endif
|
2012-01-07 03:05:43 +01:00
|
|
|
#ifdef USE_PASSTHROUGH
|
|
|
|
//static char CodecPassthroughPCM; ///< pass pcm through (unsupported)
|
|
|
|
static char CodecPassthroughAC3; ///< pass ac3 through
|
|
|
|
|
|
|
|
//static char CodecPassthroughDTS; ///< pass dts through (unsupported)
|
|
|
|
//static char CodecPassthroughMPA; ///< pass mpa through (unsupported)
|
2012-02-12 17:50:10 +01:00
|
|
|
#else
|
|
|
|
|
|
|
|
static const int CodecPassthroughAC3 = 0;
|
2012-01-07 03:05:43 +01:00
|
|
|
#endif
|
2012-02-21 22:24:28 +01:00
|
|
|
static char CodecDownmix; ///< enable ac-3 downmix
|
2012-01-07 03:05:43 +01:00
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
/**
|
|
|
|
** Allocate a new audio decoder context.
|
|
|
|
**
|
2012-01-22 16:54:22 +01:00
|
|
|
** @returns private decoder pointer for audio decoder.
|
2011-12-07 15:05:38 +01:00
|
|
|
*/
|
|
|
|
AudioDecoder *CodecAudioNewDecoder(void)
|
|
|
|
{
|
|
|
|
AudioDecoder *audio_decoder;
|
|
|
|
|
|
|
|
if (!(audio_decoder = calloc(1, sizeof(*audio_decoder)))) {
|
2012-01-22 16:54:22 +01:00
|
|
|
Fatal(_("codec: can't allocate audio decoder\n"));
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return audio_decoder;
|
|
|
|
}
|
|
|
|
|
2012-01-22 16:54:22 +01:00
|
|
|
/**
|
|
|
|
** Deallocate an audio decoder context.
|
|
|
|
**
|
|
|
|
** @param decoder private audio decoder
|
|
|
|
*/
|
|
|
|
void CodecAudioDelDecoder(AudioDecoder * decoder)
|
|
|
|
{
|
|
|
|
free(decoder);
|
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
/**
|
|
|
|
** Open audio decoder.
|
|
|
|
**
|
|
|
|
** @param audio_decoder private audio decoder
|
|
|
|
** @param name audio codec name
|
|
|
|
** @param codec_id audio codec id, used if name == NULL
|
|
|
|
*/
|
|
|
|
void CodecAudioOpen(AudioDecoder * audio_decoder, const char *name,
|
|
|
|
int codec_id)
|
|
|
|
{
|
|
|
|
AVCodec *audio_codec;
|
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
Debug(3, "codec: using audio codec %s or ID %#06x\n", name, codec_id);
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
if (name && (audio_codec = avcodec_find_decoder_by_name(name))) {
|
|
|
|
Debug(3, "codec: audio decoder '%s' found\n", name);
|
|
|
|
} else if (!(audio_codec = avcodec_find_decoder(codec_id))) {
|
2012-03-03 16:45:59 +01:00
|
|
|
Fatal(_("codec: codec ID %#06x not found\n"), codec_id);
|
2011-12-07 15:05:38 +01:00
|
|
|
// FIXME: errors aren't fatal
|
|
|
|
}
|
|
|
|
audio_decoder->AudioCodec = audio_codec;
|
|
|
|
|
|
|
|
if (!(audio_decoder->AudioCtx = avcodec_alloc_context3(audio_codec))) {
|
|
|
|
Fatal(_("codec: can't allocate audio codec context\n"));
|
|
|
|
}
|
2012-02-21 22:24:28 +01:00
|
|
|
|
|
|
|
if (CodecDownmix) {
|
|
|
|
audio_decoder->AudioCtx->request_channels = 2;
|
|
|
|
audio_decoder->AudioCtx->request_channel_layout =
|
|
|
|
AV_CH_LAYOUT_STEREO_DOWNMIX;
|
|
|
|
}
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_lock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
// open codec
|
2011-12-19 23:34:47 +01:00
|
|
|
#if LIBAVCODEC_VERSION_INT <= AV_VERSION_INT(53,5,0)
|
2011-12-19 17:03:40 +01:00
|
|
|
if (avcodec_open(audio_decoder->AudioCtx, audio_codec) < 0) {
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-19 17:03:40 +01:00
|
|
|
Fatal(_("codec: can't open audio codec\n"));
|
|
|
|
}
|
|
|
|
#else
|
2012-02-26 14:30:46 +01:00
|
|
|
if (1) {
|
|
|
|
AVDictionary *av_dict;
|
|
|
|
|
|
|
|
av_dict = NULL;
|
|
|
|
// FIXME: import settings
|
|
|
|
//av_dict_set(&av_dict, "dmix_mode", "0", 0);
|
|
|
|
//av_dict_set(&av_dict, "ltrt_cmixlev", "1.414", 0);
|
|
|
|
//av_dict_set(&av_dict, "loro_cmixlev", "1.414", 0);
|
|
|
|
if (avcodec_open2(audio_decoder->AudioCtx, audio_codec, &av_dict) < 0) {
|
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
|
|
|
Fatal(_("codec: can't open audio codec\n"));
|
|
|
|
}
|
|
|
|
av_dict_free(&av_dict);
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
2011-12-19 17:03:40 +01:00
|
|
|
#endif
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
Debug(3, "codec: audio '%s'\n", audio_decoder->AudioCtx->codec_name);
|
|
|
|
|
|
|
|
if (audio_codec->capabilities & CODEC_CAP_TRUNCATED) {
|
|
|
|
Debug(3, "codec: audio can use truncated packets\n");
|
2012-03-12 17:58:19 +01:00
|
|
|
// we send only complete frames
|
|
|
|
// audio_decoder->AudioCtx->flags |= CODEC_FLAG_TRUNCATED;
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
2011-12-10 00:15:38 +01:00
|
|
|
audio_decoder->SampleRate = 0;
|
|
|
|
audio_decoder->Channels = 0;
|
|
|
|
audio_decoder->HwSampleRate = 0;
|
|
|
|
audio_decoder->HwChannels = 0;
|
2012-02-29 16:35:49 +01:00
|
|
|
audio_decoder->LastDelay = 0;
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Close audio decoder.
|
|
|
|
**
|
|
|
|
** @param audio_decoder private audio decoder
|
|
|
|
*/
|
|
|
|
void CodecAudioClose(AudioDecoder * audio_decoder)
|
|
|
|
{
|
|
|
|
// FIXME: output any buffered data
|
2012-02-27 23:13:53 +01:00
|
|
|
if (audio_decoder->AvResample) {
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
av_resample_close(audio_decoder->AvResample);
|
|
|
|
audio_decoder->AvResample = NULL;
|
|
|
|
audio_decoder->RemainCount = 0;
|
|
|
|
audio_decoder->BufferSize = 0;
|
|
|
|
audio_decoder->RemainSize = 0;
|
|
|
|
for (ch = 0; ch < MAX_CHANNELS; ++ch) {
|
|
|
|
free(audio_decoder->Buffer[ch]);
|
|
|
|
audio_decoder->Buffer[ch] = NULL;
|
|
|
|
free(audio_decoder->Remain[ch]);
|
|
|
|
audio_decoder->Remain[ch] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2011-12-08 18:58:10 +01:00
|
|
|
if (audio_decoder->ReSample) {
|
|
|
|
audio_resample_close(audio_decoder->ReSample);
|
|
|
|
audio_decoder->ReSample = NULL;
|
|
|
|
}
|
2011-12-07 15:05:38 +01:00
|
|
|
if (audio_decoder->AudioCtx) {
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_lock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
avcodec_close(audio_decoder->AudioCtx);
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_unlock(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
av_freep(&audio_decoder->AudioCtx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-20 18:28:25 +02:00
|
|
|
/**
|
|
|
|
** Set audio drift correction.
|
|
|
|
**
|
|
|
|
** @param mask enable mask (PCM, AC3)
|
|
|
|
*/
|
|
|
|
void CodecSetAudioDrift(int mask)
|
|
|
|
{
|
|
|
|
#ifdef USE_AUDIO_DRIFT_CORRECTION
|
|
|
|
CodecAudioDrift = mask & 3;
|
|
|
|
#endif
|
|
|
|
(void)mask;
|
|
|
|
}
|
|
|
|
|
2012-01-07 03:05:43 +01:00
|
|
|
/**
|
|
|
|
** Set audio pass-through.
|
2012-04-20 18:28:25 +02:00
|
|
|
**
|
|
|
|
** @param mask enable mask (PCM, AC3)
|
2012-01-07 03:05:43 +01:00
|
|
|
*/
|
|
|
|
void CodecSetAudioPassthrough(int mask)
|
|
|
|
{
|
|
|
|
#ifdef USE_PASSTHROUGH
|
|
|
|
CodecPassthroughAC3 = mask & 1 ? 1 : 0;
|
|
|
|
#endif
|
|
|
|
(void)mask;
|
|
|
|
}
|
|
|
|
|
2012-02-21 22:24:28 +01:00
|
|
|
/**
|
|
|
|
** Set audio downmix.
|
|
|
|
**
|
|
|
|
** @param onoff enable/disable downmix.
|
|
|
|
*/
|
|
|
|
void CodecSetAudioDownmix(int onoff)
|
|
|
|
{
|
2012-04-20 18:28:25 +02:00
|
|
|
if (onoff == -1) {
|
|
|
|
CodecDownmix ^= 1;
|
|
|
|
return;
|
|
|
|
}
|
2012-02-21 22:24:28 +01:00
|
|
|
CodecDownmix = onoff;
|
|
|
|
}
|
|
|
|
|
2012-02-07 17:08:59 +01:00
|
|
|
/**
|
|
|
|
** Reorder audio frame.
|
|
|
|
**
|
|
|
|
** ffmpeg L R C Ls Rs -> alsa L R Ls Rs C
|
|
|
|
** ffmpeg L R C LFE Ls Rs -> alsa L R Ls Rs C LFE
|
|
|
|
** ffmpeg L R C LFE Ls Rs Rl Rr -> alsa L R Ls Rs C LFE Rl Rr
|
2012-03-12 17:58:19 +01:00
|
|
|
**
|
|
|
|
** @param buf[IN,OUT] sample buffer
|
|
|
|
** @param size size of sample buffer in bytes
|
|
|
|
** @param channels number of channels interleaved in sample buffer
|
2012-02-07 17:08:59 +01:00
|
|
|
*/
|
|
|
|
static void CodecReorderAudioFrame(int16_t * buf, int size, int channels)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int c;
|
|
|
|
int ls;
|
|
|
|
int rs;
|
|
|
|
int lfe;
|
|
|
|
|
|
|
|
switch (channels) {
|
|
|
|
case 5:
|
|
|
|
size /= 2;
|
|
|
|
for (i = 0; i < size; i += 5) {
|
|
|
|
c = buf[i + 2];
|
|
|
|
ls = buf[i + 3];
|
|
|
|
rs = buf[i + 4];
|
|
|
|
buf[i + 2] = ls;
|
|
|
|
buf[i + 3] = rs;
|
|
|
|
buf[i + 4] = c;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
size /= 2;
|
|
|
|
for (i = 0; i < size; i += 6) {
|
|
|
|
c = buf[i + 2];
|
2012-02-09 00:46:02 +01:00
|
|
|
lfe = buf[i + 3];
|
|
|
|
ls = buf[i + 4];
|
|
|
|
rs = buf[i + 5];
|
2012-02-07 17:08:59 +01:00
|
|
|
buf[i + 2] = ls;
|
|
|
|
buf[i + 3] = rs;
|
|
|
|
buf[i + 4] = c;
|
|
|
|
buf[i + 5] = lfe;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
size /= 2;
|
|
|
|
for (i = 0; i < size; i += 8) {
|
|
|
|
c = buf[i + 2];
|
2012-02-09 00:46:02 +01:00
|
|
|
lfe = buf[i + 3];
|
|
|
|
ls = buf[i + 4];
|
|
|
|
rs = buf[i + 5];
|
2012-02-07 17:08:59 +01:00
|
|
|
buf[i + 2] = ls;
|
|
|
|
buf[i + 3] = rs;
|
|
|
|
buf[i + 4] = c;
|
|
|
|
buf[i + 5] = lfe;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-27 23:13:53 +01:00
|
|
|
/**
|
|
|
|
** Set/update audio pts clock.
|
|
|
|
**
|
|
|
|
** @param audio_decoder audio decoder data
|
2012-03-03 16:45:59 +01:00
|
|
|
** @param pts presentation timestamp
|
2012-02-27 23:13:53 +01:00
|
|
|
*/
|
|
|
|
static void CodecAudioSetClock(AudioDecoder * audio_decoder, int64_t pts)
|
|
|
|
{
|
|
|
|
struct timespec nowtime;
|
2012-02-29 16:35:49 +01:00
|
|
|
int64_t delay;
|
2012-02-27 23:13:53 +01:00
|
|
|
int64_t tim_diff;
|
|
|
|
int64_t pts_diff;
|
2012-02-29 17:40:58 +01:00
|
|
|
int drift;
|
2012-02-29 16:35:49 +01:00
|
|
|
int corr;
|
2012-02-27 23:13:53 +01:00
|
|
|
|
|
|
|
AudioSetClock(pts);
|
|
|
|
|
2012-02-29 16:35:49 +01:00
|
|
|
delay = AudioGetDelay();
|
|
|
|
if (!delay) {
|
2012-02-27 23:13:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
clock_gettime(CLOCK_REALTIME, &nowtime);
|
2012-02-29 16:35:49 +01:00
|
|
|
if (!audio_decoder->LastDelay) {
|
|
|
|
audio_decoder->LastTime = nowtime;
|
|
|
|
audio_decoder->LastPTS = pts;
|
|
|
|
audio_decoder->LastDelay = delay;
|
|
|
|
audio_decoder->Drift = 0;
|
2012-03-03 16:45:59 +01:00
|
|
|
audio_decoder->DriftFrac = 0;
|
2012-06-22 19:28:48 +02:00
|
|
|
Debug(3, "codec/audio: inital delay %" PRId64 "ms\n", delay / 90);
|
2012-02-27 23:13:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// collect over some time
|
2012-02-29 16:35:49 +01:00
|
|
|
pts_diff = pts - audio_decoder->LastPTS;
|
|
|
|
if (pts_diff < 10 * 1000 * 90) {
|
2012-02-27 23:13:53 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-02-29 16:35:49 +01:00
|
|
|
|
|
|
|
tim_diff = (nowtime.tv_sec - audio_decoder->LastTime.tv_sec)
|
|
|
|
* 1000 * 1000 * 1000 + (nowtime.tv_nsec -
|
|
|
|
audio_decoder->LastTime.tv_nsec);
|
|
|
|
|
|
|
|
drift =
|
|
|
|
(tim_diff * 90) / (1000 * 1000) - pts_diff + delay -
|
|
|
|
audio_decoder->LastDelay;
|
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
// adjust rounding error
|
|
|
|
nowtime.tv_nsec -= nowtime.tv_nsec % (1000 * 1000 / 90);
|
2012-02-29 16:35:49 +01:00
|
|
|
audio_decoder->LastTime = nowtime;
|
2012-02-27 23:13:53 +01:00
|
|
|
audio_decoder->LastPTS = pts;
|
2012-02-29 16:35:49 +01:00
|
|
|
audio_decoder->LastDelay = delay;
|
2012-02-27 23:13:53 +01:00
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
if (0) {
|
2012-06-22 19:28:48 +02:00
|
|
|
Debug(3,
|
|
|
|
"codec/audio: interval P:%5zdms T:%5" PRId64 "ms D:%4" PRId64
|
|
|
|
"ms %f %d\n", pts_diff / 90, tim_diff / (1000 * 1000), delay / 90,
|
|
|
|
drift / 90.0, audio_decoder->DriftCorr);
|
2012-02-29 16:35:49 +01:00
|
|
|
}
|
2012-03-03 16:45:59 +01:00
|
|
|
// underruns and av_resample have the same time :(((
|
|
|
|
if (abs(drift) > 10 * 90) {
|
2012-02-29 16:35:49 +01:00
|
|
|
// drift too big, pts changed?
|
2012-03-03 16:45:59 +01:00
|
|
|
Debug(3, "codec/audio: drift(%6d) %3dms reset\n",
|
|
|
|
audio_decoder->DriftCorr, drift / 90);
|
2012-02-29 16:35:49 +01:00
|
|
|
audio_decoder->LastDelay = 0;
|
2012-06-22 19:28:48 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
corr = 0; // keep gcc happy
|
|
|
|
#endif
|
2012-03-03 16:45:59 +01:00
|
|
|
} else {
|
2012-02-27 23:13:53 +01:00
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
drift += audio_decoder->Drift;
|
|
|
|
audio_decoder->Drift = drift;
|
|
|
|
corr = (10 * audio_decoder->HwSampleRate * drift) / (90 * 1000);
|
|
|
|
// SPDIF/HDMI passthrough
|
2012-04-20 18:28:25 +02:00
|
|
|
if ((CodecAudioDrift & 2) && (!CodecPassthroughAC3
|
|
|
|
|| audio_decoder->AudioCtx->codec_id != CODEC_ID_AC3)) {
|
2012-03-03 16:45:59 +01:00
|
|
|
audio_decoder->DriftCorr = -corr;
|
|
|
|
}
|
2012-02-29 16:35:49 +01:00
|
|
|
|
2012-03-03 16:45:59 +01:00
|
|
|
if (audio_decoder->DriftCorr < -20000) { // limit correction
|
|
|
|
audio_decoder->DriftCorr = -20000;
|
|
|
|
} else if (audio_decoder->DriftCorr > 20000) {
|
|
|
|
audio_decoder->DriftCorr = 20000;
|
|
|
|
}
|
2012-02-29 16:35:49 +01:00
|
|
|
}
|
2012-03-03 16:45:59 +01:00
|
|
|
// FIXME: this works with libav 0.8, and only with >10ms with ffmpeg 0.10
|
2012-02-29 16:35:49 +01:00
|
|
|
if (audio_decoder->AvResample && audio_decoder->DriftCorr) {
|
2012-03-03 16:45:59 +01:00
|
|
|
int distance;
|
|
|
|
|
2012-03-05 20:38:43 +01:00
|
|
|
// try workaround for buggy ffmpeg 0.10
|
2012-03-06 15:39:29 +01:00
|
|
|
if (abs(audio_decoder->DriftCorr) < 2000) {
|
2012-03-05 20:38:43 +01:00
|
|
|
distance = (pts_diff * audio_decoder->HwSampleRate) / (900 * 1000);
|
|
|
|
} else {
|
|
|
|
distance = (pts_diff * audio_decoder->HwSampleRate) / (90 * 1000);
|
|
|
|
}
|
2012-02-29 16:35:49 +01:00
|
|
|
av_resample_compensate(audio_decoder->AvResample,
|
2012-03-03 16:45:59 +01:00
|
|
|
audio_decoder->DriftCorr / 10, distance);
|
2012-02-29 16:35:49 +01:00
|
|
|
}
|
2012-04-17 16:45:27 +02:00
|
|
|
if (1) {
|
|
|
|
static int c;
|
|
|
|
|
|
|
|
if (!(c++ % 10)) {
|
|
|
|
Debug(3, "codec/audio: drift(%6d) %8dus %5d\n",
|
|
|
|
audio_decoder->DriftCorr, drift * 1000 / 90, corr);
|
|
|
|
}
|
|
|
|
}
|
2012-02-27 23:13:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Handle audio format changes.
|
|
|
|
**
|
|
|
|
** @param audio_decoder audio decoder data
|
|
|
|
*/
|
|
|
|
static void CodecAudioUpdateFormat(AudioDecoder * audio_decoder)
|
|
|
|
{
|
|
|
|
const AVCodecContext *audio_ctx;
|
|
|
|
int err;
|
|
|
|
int isAC3;
|
|
|
|
|
|
|
|
// FIXME: use swr_convert from swresample (only in ffmpeg!)
|
|
|
|
if (audio_decoder->ReSample) {
|
|
|
|
audio_resample_close(audio_decoder->ReSample);
|
|
|
|
audio_decoder->ReSample = NULL;
|
|
|
|
}
|
|
|
|
if (audio_decoder->AvResample) {
|
|
|
|
av_resample_close(audio_decoder->AvResample);
|
|
|
|
audio_decoder->AvResample = NULL;
|
|
|
|
audio_decoder->RemainCount = 0;
|
|
|
|
}
|
|
|
|
|
2012-03-12 17:58:19 +01:00
|
|
|
audio_ctx = audio_decoder->AudioCtx;
|
|
|
|
Debug(3, "codec/audio: format change %dHz %d channels %s\n",
|
|
|
|
audio_ctx->sample_rate, audio_ctx->channels,
|
|
|
|
CodecPassthroughAC3 ? "pass-through" : "");
|
|
|
|
|
2012-02-27 23:13:53 +01:00
|
|
|
audio_decoder->SampleRate = audio_ctx->sample_rate;
|
|
|
|
audio_decoder->HwSampleRate = audio_ctx->sample_rate;
|
|
|
|
audio_decoder->Channels = audio_ctx->channels;
|
2012-03-12 17:58:19 +01:00
|
|
|
audio_decoder->PassthroughAC3 = CodecPassthroughAC3;
|
|
|
|
|
2012-02-27 23:13:53 +01:00
|
|
|
// SPDIF/HDMI passthrough
|
|
|
|
if (CodecPassthroughAC3 && audio_ctx->codec_id == CODEC_ID_AC3) {
|
|
|
|
audio_decoder->HwChannels = 2;
|
|
|
|
isAC3 = 1;
|
|
|
|
} else {
|
|
|
|
audio_decoder->HwChannels = audio_ctx->channels;
|
|
|
|
isAC3 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// channels not support?
|
|
|
|
if ((err =
|
|
|
|
AudioSetup(&audio_decoder->HwSampleRate,
|
|
|
|
&audio_decoder->HwChannels, isAC3))) {
|
|
|
|
Debug(3, "codec/audio: resample %dHz *%d -> %dHz *%d\n",
|
|
|
|
audio_ctx->sample_rate, audio_ctx->channels,
|
|
|
|
audio_decoder->HwSampleRate, audio_decoder->HwChannels);
|
|
|
|
|
|
|
|
if (err == 1) {
|
|
|
|
audio_decoder->ReSample =
|
|
|
|
av_audio_resample_init(audio_decoder->HwChannels,
|
|
|
|
audio_ctx->channels, audio_decoder->HwSampleRate,
|
|
|
|
audio_ctx->sample_rate, audio_ctx->sample_fmt,
|
|
|
|
audio_ctx->sample_fmt, 16, 10, 0, 0.8);
|
|
|
|
// libav-0.8_pre didn't support 6 -> 2 channels
|
|
|
|
if (!audio_decoder->ReSample) {
|
|
|
|
Error(_("codec/audio: resample setup error\n"));
|
|
|
|
audio_decoder->HwChannels = 0;
|
|
|
|
audio_decoder->HwSampleRate = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Debug(3, "codec/audio: audio setup error\n");
|
|
|
|
// FIXME: handle errors
|
|
|
|
audio_decoder->HwChannels = 0;
|
|
|
|
audio_decoder->HwSampleRate = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// prepare audio drift resample
|
2012-03-03 16:45:59 +01:00
|
|
|
#ifdef USE_AUDIO_DRIFT_CORRECTION
|
2012-04-20 18:28:25 +02:00
|
|
|
if ((CodecAudioDrift & 1) && !isAC3) {
|
2012-03-03 16:45:59 +01:00
|
|
|
if (audio_decoder->AvResample) {
|
|
|
|
Error(_("codec/audio: overwrite resample\n"));
|
|
|
|
}
|
2012-02-27 23:13:53 +01:00
|
|
|
audio_decoder->AvResample =
|
|
|
|
av_resample_init(audio_decoder->HwSampleRate,
|
|
|
|
audio_decoder->HwSampleRate, 16, 10, 0, 0.8);
|
|
|
|
if (!audio_decoder->AvResample) {
|
|
|
|
Error(_("codec/audio: AvResample setup error\n"));
|
2012-02-29 16:35:49 +01:00
|
|
|
} else {
|
|
|
|
// reset drift to some default value
|
|
|
|
audio_decoder->DriftCorr /= 2;
|
2012-03-03 16:45:59 +01:00
|
|
|
audio_decoder->DriftFrac = 0;
|
2012-02-29 16:35:49 +01:00
|
|
|
av_resample_compensate(audio_decoder->AvResample,
|
|
|
|
audio_decoder->DriftCorr / 10,
|
|
|
|
10 * audio_decoder->HwSampleRate);
|
2012-02-27 23:13:53 +01:00
|
|
|
}
|
|
|
|
}
|
2012-03-03 16:45:59 +01:00
|
|
|
#endif
|
2012-02-27 23:13:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Codec enqueue audio samples.
|
|
|
|
**
|
|
|
|
** @param audio_decoder audio decoder data
|
|
|
|
** @param data samples data
|
2012-03-12 17:58:19 +01:00
|
|
|
** @param count number of bytes in sample data
|
2012-02-27 23:13:53 +01:00
|
|
|
*/
|
|
|
|
void CodecAudioEnqueue(AudioDecoder * audio_decoder, int16_t * data, int count)
|
|
|
|
{
|
|
|
|
#ifdef USE_AUDIO_DRIFT_CORRECTION
|
2012-04-20 18:28:25 +02:00
|
|
|
if ((CodecAudioDrift & 1) && audio_decoder->AvResample) {
|
2012-02-27 23:13:53 +01:00
|
|
|
int16_t buf[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 4 +
|
|
|
|
FF_INPUT_BUFFER_PADDING_SIZE] __attribute__ ((aligned(16)));
|
|
|
|
int16_t buftmp[MAX_CHANNELS][(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 4];
|
|
|
|
int consumed;
|
|
|
|
int i;
|
|
|
|
int n;
|
|
|
|
int ch;
|
|
|
|
int bytes_n;
|
|
|
|
|
|
|
|
bytes_n = count / audio_decoder->HwChannels;
|
|
|
|
// resize sample buffer, if needed
|
|
|
|
if (audio_decoder->RemainCount + bytes_n > audio_decoder->BufferSize) {
|
|
|
|
audio_decoder->BufferSize = audio_decoder->RemainCount + bytes_n;
|
|
|
|
for (ch = 0; ch < MAX_CHANNELS; ++ch) {
|
|
|
|
audio_decoder->Buffer[ch] =
|
|
|
|
realloc(audio_decoder->Buffer[ch],
|
|
|
|
audio_decoder->BufferSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// copy remaining bytes into sample buffer
|
|
|
|
for (ch = 0; ch < audio_decoder->HwChannels; ++ch) {
|
|
|
|
memcpy(audio_decoder->Buffer[ch], audio_decoder->Remain[ch],
|
|
|
|
audio_decoder->RemainCount);
|
|
|
|
}
|
|
|
|
// deinterleave samples into sample buffer
|
|
|
|
for (i = 0; i < bytes_n / 2; i++) {
|
|
|
|
for (ch = 0; ch < audio_decoder->HwChannels; ++ch) {
|
|
|
|
audio_decoder->Buffer[ch][audio_decoder->RemainCount / 2 + i]
|
|
|
|
= data[i * audio_decoder->HwChannels + ch];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes_n += audio_decoder->RemainSize;
|
|
|
|
n = 0; // keep gcc lucky
|
|
|
|
// resample the sample buffer into tmp buffer
|
|
|
|
for (ch = 0; ch < audio_decoder->HwChannels; ++ch) {
|
|
|
|
n = av_resample(audio_decoder->AvResample, buftmp[ch],
|
|
|
|
audio_decoder->Buffer[ch], &consumed, bytes_n / 2,
|
|
|
|
sizeof(buftmp[ch]) / 2, ch == audio_decoder->HwChannels - 1);
|
|
|
|
// fixme remaining channels
|
|
|
|
if (bytes_n - consumed * 2 > audio_decoder->RemainSize) {
|
|
|
|
audio_decoder->RemainSize = bytes_n - consumed * 2;
|
|
|
|
}
|
|
|
|
audio_decoder->Remain[ch] =
|
|
|
|
realloc(audio_decoder->Remain[ch], audio_decoder->RemainSize);
|
|
|
|
memcpy(audio_decoder->Remain[ch],
|
|
|
|
audio_decoder->Buffer[ch] + consumed,
|
|
|
|
audio_decoder->RemainSize);
|
|
|
|
audio_decoder->RemainCount = audio_decoder->RemainSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// interleave samples from sample buffer
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
for (ch = 0; ch < audio_decoder->HwChannels; ++ch) {
|
|
|
|
buf[i * audio_decoder->HwChannels + ch] = buftmp[ch][i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n *= 2;
|
|
|
|
|
|
|
|
n *= audio_decoder->HwChannels;
|
|
|
|
CodecReorderAudioFrame(buf, n, audio_decoder->HwChannels);
|
|
|
|
AudioEnqueue(buf, n);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
CodecReorderAudioFrame(data, count, audio_decoder->HwChannels);
|
|
|
|
AudioEnqueue(data, count);
|
|
|
|
}
|
|
|
|
|
2012-01-02 17:47:50 +01:00
|
|
|
/**
|
|
|
|
** Decode an audio packet.
|
|
|
|
**
|
|
|
|
** PTS must be handled self.
|
|
|
|
**
|
|
|
|
** @param audio_decoder audio decoder data
|
|
|
|
** @param avpkt audio packet
|
|
|
|
*/
|
|
|
|
void CodecAudioDecode(AudioDecoder * audio_decoder, const AVPacket * avpkt)
|
|
|
|
{
|
|
|
|
int16_t buf[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 4 +
|
|
|
|
FF_INPUT_BUFFER_PADDING_SIZE] __attribute__ ((aligned(16)));
|
2012-02-24 15:38:04 +01:00
|
|
|
int buf_sz;
|
|
|
|
int l;
|
2012-01-02 17:47:50 +01:00
|
|
|
AVCodecContext *audio_ctx;
|
|
|
|
|
|
|
|
audio_ctx = audio_decoder->AudioCtx;
|
|
|
|
|
2012-02-24 15:38:04 +01:00
|
|
|
buf_sz = sizeof(buf);
|
|
|
|
l = avcodec_decode_audio3(audio_ctx, buf, &buf_sz, (AVPacket *) avpkt);
|
|
|
|
if (avpkt->size != l) {
|
2012-02-21 20:55:28 +01:00
|
|
|
if (l == AVERROR(EAGAIN)) {
|
|
|
|
Error(_("codec: latm\n"));
|
2012-02-24 15:38:04 +01:00
|
|
|
return;
|
2012-01-02 17:47:50 +01:00
|
|
|
}
|
2012-02-21 20:55:28 +01:00
|
|
|
if (l < 0) { // no audio frame could be decompressed
|
2012-02-24 15:38:04 +01:00
|
|
|
Error(_("codec: error audio data\n"));
|
|
|
|
return;
|
2012-01-02 17:47:50 +01:00
|
|
|
}
|
2012-02-24 15:38:04 +01:00
|
|
|
Error(_("codec: error more than one frame data\n"));
|
|
|
|
}
|
2012-01-02 17:47:50 +01:00
|
|
|
#ifdef notyetFF_API_OLD_DECODE_AUDIO
|
2012-02-24 15:38:04 +01:00
|
|
|
// FIXME: ffmpeg git comeing
|
|
|
|
int got_frame;
|
2012-01-02 17:47:50 +01:00
|
|
|
|
2012-02-24 15:38:04 +01:00
|
|
|
avcodec_decode_audio4(audio_ctx, frame, &got_frame, avpkt);
|
2012-01-02 17:47:50 +01:00
|
|
|
#else
|
|
|
|
#endif
|
2012-02-27 23:13:53 +01:00
|
|
|
|
|
|
|
// update audio clock
|
2012-02-24 15:38:04 +01:00
|
|
|
if (avpkt->pts != (int64_t) AV_NOPTS_VALUE) {
|
2012-02-27 23:13:53 +01:00
|
|
|
CodecAudioSetClock(audio_decoder, avpkt->pts);
|
2012-02-24 15:38:04 +01:00
|
|
|
}
|
|
|
|
// FIXME: must first play remainings bytes, than change and play new.
|
|
|
|
if (audio_decoder->PassthroughAC3 != CodecPassthroughAC3
|
|
|
|
|| audio_decoder->SampleRate != audio_ctx->sample_rate
|
|
|
|
|| audio_decoder->Channels != audio_ctx->channels) {
|
2012-02-27 23:13:53 +01:00
|
|
|
CodecAudioUpdateFormat(audio_decoder);
|
2012-02-24 15:38:04 +01:00
|
|
|
}
|
2012-01-02 17:47:50 +01:00
|
|
|
|
2012-02-24 15:38:04 +01:00
|
|
|
if (audio_decoder->HwSampleRate && audio_decoder->HwChannels) {
|
|
|
|
// need to resample audio
|
|
|
|
if (audio_decoder->ReSample) {
|
|
|
|
int16_t outbuf[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 4 +
|
|
|
|
FF_INPUT_BUFFER_PADDING_SIZE]
|
|
|
|
__attribute__ ((aligned(16)));
|
|
|
|
int outlen;
|
|
|
|
|
|
|
|
// FIXME: libav-0.7.2 crash here
|
|
|
|
outlen =
|
|
|
|
audio_resample(audio_decoder->ReSample, outbuf, buf, buf_sz);
|
2012-02-21 20:55:28 +01:00
|
|
|
#ifdef DEBUG
|
2012-02-24 15:38:04 +01:00
|
|
|
if (outlen != buf_sz) {
|
|
|
|
Debug(3, "codec/audio: possible fixed ffmpeg\n");
|
|
|
|
}
|
2012-02-21 20:55:28 +01:00
|
|
|
#endif
|
2012-02-24 15:38:04 +01:00
|
|
|
if (outlen) {
|
|
|
|
// outlen seems to be wrong in ffmpeg-0.9
|
|
|
|
outlen /= audio_decoder->Channels *
|
|
|
|
av_get_bytes_per_sample(audio_ctx->sample_fmt);
|
|
|
|
outlen *=
|
|
|
|
audio_decoder->HwChannels *
|
|
|
|
av_get_bytes_per_sample(audio_ctx->sample_fmt);
|
|
|
|
Debug(4, "codec/audio: %d -> %d\n", buf_sz, outlen);
|
2012-02-27 23:13:53 +01:00
|
|
|
CodecAudioEnqueue(audio_decoder, outbuf, outlen);
|
2012-02-24 15:38:04 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-02-21 20:55:28 +01:00
|
|
|
#ifdef USE_PASSTHROUGH
|
2012-02-24 15:38:04 +01:00
|
|
|
// SPDIF/HDMI passthrough
|
|
|
|
if (CodecPassthroughAC3 && audio_ctx->codec_id == CODEC_ID_AC3) {
|
|
|
|
// build SPDIF header and append A52 audio to it
|
|
|
|
// avpkt is the original data
|
|
|
|
buf_sz = 6144;
|
2012-03-03 16:45:59 +01:00
|
|
|
|
|
|
|
#ifdef USE_AC3_DRIFT_CORRECTION
|
2012-04-20 18:28:25 +02:00
|
|
|
if (CodecAudioDrift & 2) {
|
2012-03-03 16:45:59 +01:00
|
|
|
int x;
|
|
|
|
|
|
|
|
x = (audio_decoder->DriftFrac +
|
|
|
|
(audio_decoder->DriftCorr * buf_sz)) / (10 *
|
|
|
|
audio_decoder->HwSampleRate * 100);
|
|
|
|
audio_decoder->DriftFrac =
|
|
|
|
(audio_decoder->DriftFrac +
|
|
|
|
(audio_decoder->DriftCorr * buf_sz)) % (10 *
|
|
|
|
audio_decoder->HwSampleRate * 100);
|
|
|
|
x *= audio_decoder->HwChannels * 4;
|
|
|
|
if (x < -64) { // limit correction
|
|
|
|
x = -64;
|
|
|
|
} else if (x > 64) {
|
|
|
|
x = 64;
|
|
|
|
}
|
|
|
|
buf_sz += x;
|
|
|
|
}
|
|
|
|
#endif
|
2012-02-24 15:38:04 +01:00
|
|
|
if (buf_sz < avpkt->size + 8) {
|
|
|
|
Error(_
|
|
|
|
("codec/audio: decoded data smaller than encoded\n"));
|
|
|
|
return;
|
2012-02-21 20:55:28 +01:00
|
|
|
}
|
2012-02-24 15:38:04 +01:00
|
|
|
// copy original data for output
|
|
|
|
// FIXME: not 100% sure, if endian is correct
|
|
|
|
buf[0] = htole16(0xF872); // iec 61937 sync word
|
|
|
|
buf[1] = htole16(0x4E1F);
|
|
|
|
buf[2] = htole16(0x01 | (avpkt->data[5] & 0x07) << 8);
|
|
|
|
buf[3] = htole16(avpkt->size * 8);
|
|
|
|
swab(avpkt->data, buf + 4, avpkt->size);
|
|
|
|
memset(buf + 4 + avpkt->size / 2, 0, buf_sz - 8 - avpkt->size);
|
2012-02-27 23:13:53 +01:00
|
|
|
// don't play with the ac-3 samples
|
|
|
|
AudioEnqueue(buf, buf_sz);
|
|
|
|
return;
|
2012-02-24 15:38:04 +01:00
|
|
|
}
|
2012-02-21 20:55:28 +01:00
|
|
|
#if 0
|
2012-02-24 15:38:04 +01:00
|
|
|
//
|
|
|
|
// old experimental code
|
|
|
|
//
|
|
|
|
if (1) {
|
|
|
|
// FIXME: need to detect dts
|
|
|
|
// copy original data for output
|
|
|
|
// FIXME: buf is sint
|
|
|
|
buf[0] = 0x72;
|
|
|
|
buf[1] = 0xF8;
|
|
|
|
buf[2] = 0x1F;
|
|
|
|
buf[3] = 0x4E;
|
|
|
|
buf[4] = 0x00;
|
|
|
|
switch (avpkt->size) {
|
|
|
|
case 512:
|
|
|
|
buf[5] = 0x0B;
|
|
|
|
break;
|
|
|
|
case 1024:
|
|
|
|
buf[5] = 0x0C;
|
|
|
|
break;
|
|
|
|
case 2048:
|
|
|
|
buf[5] = 0x0D;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Debug(3,
|
|
|
|
"codec/audio: dts sample burst not supported\n");
|
|
|
|
buf[5] = 0x00;
|
|
|
|
break;
|
2012-02-21 20:55:28 +01:00
|
|
|
}
|
2012-02-24 15:38:04 +01:00
|
|
|
buf[6] = (avpkt->size * 8);
|
|
|
|
buf[7] = (avpkt->size * 8) >> 8;
|
|
|
|
//buf[8] = 0x0B;
|
|
|
|
//buf[9] = 0x77;
|
|
|
|
//printf("%x %x\n", avpkt->data[0],avpkt->data[1]);
|
|
|
|
// swab?
|
|
|
|
memcpy(buf + 8, avpkt->data, avpkt->size);
|
|
|
|
memset(buf + 8 + avpkt->size, 0, buf_sz - 8 - avpkt->size);
|
|
|
|
} else if (1) {
|
|
|
|
// FIXME: need to detect mp2
|
|
|
|
// FIXME: mp2 passthrough
|
|
|
|
// see softhddev.c version/layer
|
|
|
|
// 0x04 mpeg1 layer1
|
|
|
|
// 0x05 mpeg1 layer23
|
|
|
|
// 0x06 mpeg2 ext
|
|
|
|
// 0x07 mpeg2.5 layer 1
|
|
|
|
// 0x08 mpeg2.5 layer 2
|
|
|
|
// 0x09 mpeg2.5 layer 3
|
|
|
|
}
|
|
|
|
// DTS HD?
|
|
|
|
// True HD?
|
2012-01-02 17:47:50 +01:00
|
|
|
#endif
|
2012-02-21 20:55:28 +01:00
|
|
|
#endif
|
2012-02-27 23:13:53 +01:00
|
|
|
CodecAudioEnqueue(audio_decoder, buf, buf_sz);
|
2012-02-21 20:55:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-02 17:47:50 +01:00
|
|
|
|
2012-01-08 21:46:00 +01:00
|
|
|
/**
|
|
|
|
** Flush the audio decoder.
|
|
|
|
**
|
|
|
|
** @param decoder audio decoder data
|
|
|
|
*/
|
|
|
|
void CodecAudioFlushBuffers(AudioDecoder * decoder)
|
|
|
|
{
|
|
|
|
avcodec_flush_buffers(decoder->AudioCtx);
|
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Codec
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2011-12-08 18:58:10 +01:00
|
|
|
/**
|
|
|
|
** Empty log callback
|
|
|
|
*/
|
|
|
|
static void CodecNoopCallback( __attribute__ ((unused))
|
|
|
|
void *ptr, __attribute__ ((unused))
|
|
|
|
int level, __attribute__ ((unused))
|
|
|
|
const char *fmt, __attribute__ ((unused)) va_list vl)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-12-07 15:05:38 +01:00
|
|
|
/**
|
|
|
|
** Codec init
|
|
|
|
*/
|
|
|
|
void CodecInit(void)
|
|
|
|
{
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_init(&CodecLockMutex, NULL);
|
2011-12-08 18:58:10 +01:00
|
|
|
#ifndef DEBUG
|
2011-12-21 12:50:14 +01:00
|
|
|
// disable display ffmpeg error messages
|
2011-12-08 18:58:10 +01:00
|
|
|
av_log_set_callback(CodecNoopCallback);
|
2011-12-21 12:50:14 +01:00
|
|
|
#else
|
|
|
|
(void)CodecNoopCallback;
|
2011-12-08 18:58:10 +01:00
|
|
|
#endif
|
2011-12-07 15:05:38 +01:00
|
|
|
avcodec_register_all(); // register all formats and codecs
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
** Codec exit.
|
|
|
|
*/
|
|
|
|
void CodecExit(void)
|
|
|
|
{
|
2012-01-02 17:47:50 +01:00
|
|
|
pthread_mutex_destroy(&CodecLockMutex);
|
2011-12-07 15:05:38 +01:00
|
|
|
}
|