[gegl/video-rejuvenation: 23/60] ff-load: pts work inching along
- From: Øyvind Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/video-rejuvenation: 23/60] ff-load: pts work inching along
- Date: Mon, 16 Nov 2015 22:15:24 +0000 (UTC)
commit 7753bf50cc899549e1b104ad2b4091c524f77a18
Author: Øyvind Kolås <pippin gimp org>
Date: Mon Oct 19 20:43:12 2015 +0200
ff-load: pts work inching along
operations/external/ff-load.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/operations/external/ff-load.c b/operations/external/ff-load.c
index 4a50985..9eb0156 100644
--- a/operations/external/ff-load.c
+++ b/operations/external/ff-load.c
@@ -86,6 +86,7 @@ typedef struct
#define MAX_AUDIO_SAMPLES 8192
typedef struct AudioFrame { /* XXX: hardcoded for 16bit chunky stereo, */
+ int64_t pts;
float data[MAX_AUDIO_CHANNELS][MAX_AUDIO_SAMPLES];
int channels;
int sample_rate;
@@ -265,6 +266,8 @@ decode_frame (GeglOperation *operation,
{
static AVFrame frame;
int got_frame;
+
+
decoded_bytes = avcodec_decode_audio4(p->audio_st->codec,
&frame, &got_frame, &(p->pkt));
@@ -277,6 +280,11 @@ decode_frame (GeglOperation *operation,
if (got_frame) {
AudioFrame *af = g_malloc0 (sizeof (AudioFrame));
g_assert (frame.nb_samples < MAX_AUDIO_SAMPLES);
+
+ af->pts = p->pkt.pts;
+ if (af->pts == 0)
+ fprintf (stderr, "audio pts 0\n");
+ fprintf (stderr, "audio-pts: %li\n", af->pts);
af->channels = p->audio_context->channels;
switch (p->audio_context->sample_fmt)
@@ -336,6 +344,11 @@ decode_frame (GeglOperation *operation,
return -1;
}
+ if(got_picture)
+ {
+ fprintf (stderr, "video-pts: %li\n", p->pkt.pts);
+ }
+
p->coded_buf += decoded_bytes;
p->coded_bytes -= decoded_bytes;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]