Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
public:general:gettingstartedwithourcode [2018/03/07 18:32] cfsmp3 |
public:general:gettingstartedwithourcode [2019/12/05 00:07] (current) aadibajpai Correct file name |
||
---|---|---|---|
Line 56: | Line 56: | ||
</code> | </code> | ||
- | which is in the file streams_functions.c | + | which is in the file stream_functions.c |
That function (please check the code) sets the type format (best guess; identifying without fault is a lot harder than you'd think, but that's not important for an introduction) for the **context** (more on contexts later). | That function (please check the code) sets the type format (best guess; identifying without fault is a lot harder than you'd think, but that's not important for an introduction) for the **context** (more on contexts later). | ||
Line 62: | Line 62: | ||
Once we know what type of stream we're processing we know which demuxer to use to read it. | Once we know what type of stream we're processing we know which demuxer to use to read it. | ||
- | We have demuxers for Transport Streams (in ts_functions.c), mp4 (in mp4.c) and more. The block that, after knowing the type of container, decides what to do, is in the main file, ccextractor.org, | + | We have demuxers for Transport Streams (in ts_functions.c), mp4 (in mp4.c) and more. The block that, after knowing the type of container, decides what to do, is in the main file, ccextractor.c, |
<code> | <code> |