eejs
eejs

Reputation: 317

Probe function in ffmpeg

I am trying to write a demuxer for STL subtitle format(FFmpeg). I am having trouble understanding how the probe function is referenced in ffmpeg. I have the following code for my probe :

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

typedef struct {
    FFDemuxSubtitlesQueue q;
} STLContext;

static int stl_probe(AVProbeData *p)
{
    char c;
    const unsigned char *ptr = p->buf;
    av_log(0,100,"printing the probe function");
    while(*ptr=='\r' || *ptr=='\n' || *ptr=='$' || (ptr[0]=='/' && ptr[1]=='/'))
        ptr+=ff_subtitles_next_line(ptr);
    if (sscanf(ptr, "%*d:%*d:%*d:%*d , %*d:%*d:%*d:%*d , %c", &c) == 1)
        return AVPROBE_SCORE_MAX;
     return 0;

}
static int64_t get_pts(char **buf, int *duration)
{
        int hh1, mm1, ss1, ms1;
        int hh2, mm2, ss2, ms2;
        int len=0;
        if (sscanf(*buf, "%2d:%2d:%2d:%2d , %2d:%2d:%2d:%2d , %n",
                   &hh1, &mm1, &ss1, &ms1,
                   &hh2, &mm2, &ss2, &ms2, &len) >= 8 && len>0) {
            int64_t start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
            int64_t end   = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
            *duration = end - start;
            *buf+=len;
            return start;
         }
        return AV_NOPTS_VALUE;
}

static int stl_read_header(AVFormatContext *s)
{
    STLContext *stl = s->priv_data;
    AVStream *st = avformat_new_stream(s, NULL);

    if (!st)
        return AVERROR(ENOMEM);
    avpriv_set_pts_info(st, 64, 1, 100);
    st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
    st->codec->codec_id   = AV_CODEC_ID_TEXT;

    while (!avio_feof(s->pb)) {
        char line[4096];
        char *p = line;
        const int64_t pos = avio_tell(s->pb);
        int len = ff_get_line(s->pb, line, sizeof(line));
        int64_t pts_start;
        int duration;
        if (!len)
            break;

        line[strcspn(line, "\r\n")] = 0;

        pts_start = get_pts(&p , &duration);
        if (pts_start != AV_NOPTS_VALUE) {
            AVPacket *sub;

            sub = ff_subtitles_queue_insert(&stl->q, p, strlen(p), 0);
            if (!sub)
                return AVERROR(ENOMEM);
            sub->pos = pos;
            sub->pts = pts_start;
            sub->duration = duration;
        }
    }

    ff_subtitles_queue_finalize(&stl->q);
    return 0;

}
static int stl_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    STLContext *stl = s->priv_data;
    return ff_subtitles_queue_read_packet(&stl->q, pkt);
}

static int stl_read_seek(AVFormatContext *s, int stream_index,
                             int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
{
    STLContext *stl = s->priv_data;
    return ff_subtitles_queue_seek(&stl->q, s, stream_index,
                                   min_ts, ts, max_ts, flags);
}

static int stl_read_close(AVFormatContext *s)
{
    STLContext *stl = s->priv_data;
    ff_subtitles_queue_clean(&stl->q);
    return 0;
}

AVInputFormat ff_stl_demuxer = {
    .name           = "stl",
    .long_name      = NULL_IF_CONFIG_SMALL("STL subtitles"),
    .priv_data_size = sizeof(STLContext),
    .read_probe     = stl_probe,
    .read_header    = stl_read_header,
    .read_packet    = stl_read_packet,
    .read_seek2     = stl_read_seek,
    .read_close     = stl_read_close,
    .extensions     = "stl",
};

Output of ./ffmpeg -f stl -i Test.stl Test.srt

ffmpeg version N-66838-g9071bab Copyright (c) 2000-2014 the FFmpeg developers
  built on Oct 14 2014 12:28:54 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
  configuration: 
  libavutil      54. 10.100 / 54. 10.100
  libavcodec     56.  4.101 / 56.  4.101
  libavformat    56.  9.100 / 56.  9.100
  libavdevice    56.  1.100 / 56.  1.100
  libavfilter     5.  1.105 /  5.  1.105
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  1.100 /  1.  1.100
Input #0, stl, from '/home/eejya/SubtitleTesting/UK_FINAL_240511.stl':
  Duration: N/A, bitrate: N/A
    Stream #0:0: Subtitle: text
Output #0, srt, to '/home/eejya/SubtitleTesting/UkTest.srt':
  Metadata:
    encoder         : Lavf56.9.100
    Stream #0:0: Subtitle: subrip (srt)
    Metadata:
      encoder         : Lavc56.4.101 srt
Stream mapping:
  Stream #0:0 -> #0:0 (text (native) -> subrip (srt))
Press [q] to stop, [?] for help
size=      10kB time=00:27:10.06 bitrate=   0.0kbits/s    
video:0kB audio:0kB subtitle:4kB other streams:0kB global headers:0kB muxing overhead: 121.594238%

when I run the command

./ffmpeg -i Test.stl Test.srt 

I don't see any output printed by av_log and it says that the probe score is very less which may lead to mis-detection. That would mean only the extension is being checked.So, either my probe function is not being called or the buffer isn't being read. How do I check whether my probe function is being called or not? Also does the low score warning imply that the function is being called?

Upvotes: 1

Views: 1415

Answers (1)

Cornstalks
Cornstalks

Reputation: 38218

I've compiled and tested locally with the changes you have said you made. Your STL demuxer is registered:

$ ./ffmpeg -formats
...
 D  stl             STL subtitles
...

Your probe function is being called, and your STL demuxer is being used. However, you're not seeing any log entries printed because:

av_log(0, 100, "printing the probe function");
       ^  ^^^  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       |  |    |
       |  |    message
       |  |
       |  log level
       |
       context

your log level is 100. In FFmpeg, a higher log level means a less severe message, and by default FFmpeg only prints messages of AV_LOG_INFO (32) level or lower. If you change your function call to:

av_log(NULL, AV_LOG_FATAL, "printing the probe function\n");
// AV_LOG_FATAL is 8

You will see your message printed out.

Upvotes: 1

Related Questions