Browse Source

lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().

tags/n0.9
Clément Bœsch 13 years ago
parent
commit
215b7724e7
18 changed files with 34 additions and 22 deletions
  1. +2
    -1
      libavdevice/alsa-audio-enc.c
  2. +2
    -2
      libavdevice/dshow.c
  3. +2
    -1
      libavdevice/lavfi.c
  4. +2
    -1
      libavdevice/openal-dec.c
  5. +2
    -1
      libavformat/act.c
  6. +3
    -2
      libavformat/bintext.c
  7. +2
    -1
      libavformat/bit.c
  8. +1
    -1
      libavformat/electronicarts.c
  9. +2
    -1
      libavformat/g723_1.c
  10. +2
    -1
      libavformat/g729dec.c
  11. +3
    -2
      libavformat/libmodplug.c
  12. +2
    -1
      libavformat/loasdec.c
  13. +1
    -1
      libavformat/microdvddec.c
  14. +2
    -1
      libavformat/mkvtimestamp_v2.c
  15. +3
    -2
      libavformat/pmpdec.c
  16. +1
    -1
      libavformat/wav.c
  17. +1
    -1
      libavformat/wtvdec.c
  18. +1
    -1
      libavformat/wtvenc.c

+ 2
- 1
libavdevice/alsa-audio-enc.c View File

@@ -39,6 +39,7 @@

#include <alsa/asoundlib.h>

#include "libavformat/internal.h"
#include "avdevice.h"
#include "alsa-audio.h"

@@ -61,7 +62,7 @@ static av_cold int audio_write_header(AVFormatContext *s1)
st->codec->sample_rate, sample_rate);
goto fail;
}
av_set_pts_info(st, 64, 1, sample_rate);
avpriv_set_pts_info(st, 64, 1, sample_rate);

return res;



+ 2
- 2
libavdevice/dshow.c View File

@@ -21,7 +21,7 @@

#include "libavutil/parseutils.h"
#include "libavutil/opt.h"
#include "libavformat/internal.h"
#include "avdevice.h"
#include "dshow.h"

@@ -739,7 +739,7 @@ dshow_add_device(AVFormatContext *avctx, AVFormatParameters *ap,
codec->channels = fx->nChannels;
}

av_set_pts_info(st, 64, 1, 10000000);
avpriv_set_pts_info(st, 64, 1, 10000000);

ret = 0;



+ 2
- 1
libavdevice/lavfi.c View File

@@ -35,6 +35,7 @@
#include "libavfilter/avfilter.h"
#include "libavfilter/avfiltergraph.h"
#include "libavfilter/buffersink.h"
#include "libavformat/internal.h"
#include "avdevice.h"

typedef struct {
@@ -231,7 +232,7 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx,
AVFilterLink *link = lavfi->sinks[lavfi->stream_sink_map[i]]->inputs[0];
AVStream *st = avctx->streams[i];
st->codec->codec_type = link->type;
av_set_pts_info(st, 64, link->time_base.num, link->time_base.den);
avpriv_set_pts_info(st, 64, link->time_base.num, link->time_base.den);
if (link->type == AVMEDIA_TYPE_VIDEO) {
st->codec->codec_id = CODEC_ID_RAWVIDEO;
st->codec->pix_fmt = link->format;


+ 2
- 1
libavdevice/openal-dec.c View File

@@ -25,6 +25,7 @@
#include <AL/alc.h>

#include "libavutil/opt.h"
#include "libavformat/internal.h"
#include "avdevice.h"

typedef struct {
@@ -151,7 +152,7 @@ static int read_header(AVFormatContext *ctx, AVFormatParameters *ap)
}

/* We work in microseconds */
av_set_pts_info(st, 64, 1, 1000000);
avpriv_set_pts_info(st, 64, 1, 1000000);

/* Set codec parameters */
codec = st->codec;


+ 2
- 1
libavformat/act.c View File

@@ -20,6 +20,7 @@
*/
#include "avformat.h"
#include "riff.h"
#include "internal.h"
#include "libavcodec/get_bits.h"

#define CHUNK_SIZE 512
@@ -88,7 +89,7 @@ static int read_header(AVFormatContext *s,

st->codec->frame_size=80;
st->codec->channels=1;
av_set_pts_info(st, 64, 1, 100);
avpriv_set_pts_info(st, 64, 1, 100);

st->codec->codec_id=CODEC_ID_G729;



+ 3
- 2
libavformat/bintext.c View File

@@ -32,6 +32,7 @@

#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "sauce.h"
#include "libavcodec/bintext.h"

@@ -109,9 +110,9 @@ static AVStream * init_stream(AVFormatContext *s,
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;

if (!ap->time_base.num) {
av_set_pts_info(st, 60, 1, 25);
avpriv_set_pts_info(st, 60, 1, 25);
} else {
av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
avpriv_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
}

/* simulate tty display speed */


+ 2
- 1
libavformat/bit.c View File

@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "avformat.h"
#include "internal.h"
#include "libavcodec/get_bits.h"
#include "libavcodec/put_bits.h"

@@ -60,7 +61,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec->block_align = 16;
st->codec->channels=1;

av_set_pts_info(st, 64, 1, 100);
avpriv_set_pts_info(st, 64, 1, 100);
return 0;
}



+ 1
- 1
libavformat/electronicarts.c View File

@@ -420,7 +420,7 @@ static int ea_read_header(AVFormatContext *s,
st->need_parsing = AVSTREAM_PARSE_HEADERS;
st->codec->codec_tag = 0; /* no fourcc */
if (ea->time_base.num)
av_set_pts_info(st, 64, ea->time_base.num, ea->time_base.den);
avpriv_set_pts_info(st, 64, ea->time_base.num, ea->time_base.den);
st->codec->width = ea->width;
st->codec->height = ea->height;
}


+ 2
- 1
libavformat/g723_1.c View File

@@ -25,6 +25,7 @@
*/

#include "avformat.h"
#include "internal.h"

static const uint8_t frame_size[4] = {24, 20, 4, 1};

@@ -41,7 +42,7 @@ static int g723_1_init(AVFormatContext *s, AVFormatParameters *ap)
st->codec->channels = 1;
st->codec->sample_rate = 8000;

av_set_pts_info(st, 64, 1, st->codec->sample_rate);
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);

return 0;
}


+ 2
- 1
libavformat/g729dec.c View File

@@ -20,6 +20,7 @@
*/

#include "avformat.h"
#include "internal.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"

@@ -60,7 +61,7 @@ static int g729_read_header(AVFormatContext *s, AVFormatParameters *ap)
return AVERROR_INVALIDDATA;
}

av_set_pts_info(st, st->codec->block_align << 3, 1, st->codec->sample_rate);
avpriv_set_pts_info(st, st->codec->block_align << 3, 1, st->codec->sample_rate);
return 0;
}
static int g729_read_packet(AVFormatContext *s, AVPacket *pkt)


+ 3
- 2
libavformat/libmodplug.c View File

@@ -27,6 +27,7 @@
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "internal.h"

typedef struct ModPlugContext {
const AVClass *class;
@@ -220,7 +221,7 @@ static int modplug_read_header(AVFormatContext *s, AVFormatParameters *ap)
st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);
av_set_pts_info(st, 64, 1, 1000);
avpriv_set_pts_info(st, 64, 1, 1000);
st->duration = ModPlug_GetLength(modplug->f);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = CODEC_ID_PCM_S16LE;
@@ -234,7 +235,7 @@ static int modplug_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVStream *vst = avformat_new_stream(s, NULL);
if (!vst)
return AVERROR(ENOMEM);
av_set_pts_info(vst, 64, 1, 1000);
avpriv_set_pts_info(vst, 64, 1, 1000);
vst->duration = st->duration;
vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
vst->codec->codec_id = CODEC_ID_XBIN;


+ 2
- 1
libavformat/loasdec.c View File

@@ -22,6 +22,7 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/internal.h"
#include "avformat.h"
#include "internal.h"
#include "rawdec.h"

static int loas_probe(AVProbeData *p)
@@ -72,7 +73,7 @@ static int loas_read_header(AVFormatContext *s,
st->need_parsing = AVSTREAM_PARSE_FULL;

//LCM of all possible AAC sample rates
av_set_pts_info(st, 64, 1, 28224000);
avpriv_set_pts_info(st, 64, 1, 28224000);

return 0;
}


+ 1
- 1
libavformat/microdvddec.c View File

@@ -74,7 +74,7 @@ static int microdvd_read_header(AVFormatContext *s, AVFormatParameters *ap)
i--;
}
}
av_set_pts_info(st, 64, pts_info.den, pts_info.num);
avpriv_set_pts_info(st, 64, pts_info.den, pts_info.num);
st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
st->codec->codec_id = CODEC_ID_MICRODVD;
return 0;


+ 2
- 1
libavformat/mkvtimestamp_v2.c View File

@@ -20,12 +20,13 @@
*/

#include "avformat.h"
#include "internal.h"

static int write_header(AVFormatContext *s)
{
static const char *header = "# timecode format v2\n";
put_buffer(s->pb, header, strlen(header));
av_set_pts_info(s->streams[0], 64, 1, 1000);
avpriv_set_pts_info(s->streams[0], 64, 1, 1000);
return 0;
}



+ 3
- 2
libavformat/pmpdec.c View File

@@ -21,6 +21,7 @@

#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"

typedef struct {
int cur_stream;
@@ -70,7 +71,7 @@ static int pmp_header(AVFormatContext *s, AVFormatParameters *ap)

tb_num = avio_rl32(pb);
tb_den = avio_rl32(pb);
av_set_pts_info(vst, 32, tb_num, tb_den);
avpriv_set_pts_info(vst, 32, tb_num, tb_den);
vst->nb_frames = index_cnt;
vst->duration = index_cnt;

@@ -98,7 +99,7 @@ static int pmp_header(AVFormatContext *s, AVFormatParameters *ap)
ast->codec->codec_id = audio_codec_id;
ast->codec->channels = channels;
ast->codec->sample_rate = srate;
av_set_pts_info(ast, 32, 1, srate);
avpriv_set_pts_info(ast, 32, 1, srate);
}
pos = avio_tell(pb) + 4*index_cnt;
for (i = 0; i < index_cnt; i++) {


+ 1
- 1
libavformat/wav.c View File

@@ -498,7 +498,7 @@ static int wav_read_header(AVFormatContext *s,
wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
avio_rl24(pb);
wav->smv_block_size = avio_rl24(pb);
av_set_pts_info(vst, 32, 1, avio_rl24(pb));
avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
vst->duration = avio_rl24(pb);
avio_rl24(pb);
avio_rl24(pb);


+ 1
- 1
libavformat/wtvdec.c View File

@@ -570,7 +570,7 @@ static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int code
}
st->codec->codec_type = codec_type;
st->need_parsing = AVSTREAM_PARSE_FULL;
av_set_pts_info(st, 64, 1, 10000000);
avpriv_set_pts_info(st, 64, 1, 10000000);
return st;
}



+ 1
- 1
libavformat/wtvenc.c View File

@@ -327,7 +327,7 @@ static int write_stream_data(AVFormatContext *s, AVStream *st, int flag)
}
finish_chunk(s);

av_set_pts_info(st, 64, 1, 10000000);
avpriv_set_pts_info(st, 64, 1, 10000000);

return 0;
}


Loading…
Cancel
Save