/third_party/curl/tests/unit/ |
H A D | unit1611.c | 42 const char string2[] = "hello-you-fool";
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod.cxx | 1158 // /foo/../ -> /
|
/third_party/eudev/ |
H A D | aclocal.m4 | 343 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets 344 # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
|
H A D | compile | 143 # configure might choose to run compile as 'compile cc -o foo foo.c'. 274 # configure might choose to run compile as 'compile cc -o foo foo.c'.
|
/third_party/eudev/src/scsi_id/ |
H A D | scsi_id.c | 110 * buf points to an '=' followed by a quoted string ("foo") or a string ending 251 * Only allow: [vendor=foo[,model=bar]]options=stuff in get_file_options() 269 * give a partial match (that is FOO in get_file_options() 270 * matches FOOBAR). in get_file_options()
|
/third_party/ffmpeg/doc/ |
H A D | encoders.texi | 2733 ffmpeg -i foo.mpg -c:v libx264 -x264opts keyint=123:min-keyint=20 -an out.mkv
|
H A D | ffprobe.texi | 430 If set to 1 specify not to print the section header and footer. 497 "streams.stream.3.tags.foo=bar". The output is shell escaped, so it can be
|
H A D | fftools-common-opts.texi | 14 will set the boolean option with name "foo" to false.
|
/third_party/ffmpeg/libavcodec/ |
H A D | vorbis_parser.c | 124 * fool-proof because we could have false positive matches and read too in parse_setup_header()
|
H A D | synth_filter.c | 3 * Copyright (C) 2016 foo86
|
H A D | qtrleenc.c | 126 + 15 /* header + footer */ in qtrle_encode_init()
|
/third_party/ffmpeg/libavdevice/ |
H A D | dshow_capture.h | 53 static inline void nothing(void *foo) in nothing() argument
|
H A D | decklink_dec.cpp | 394 if (cdp[len - 4] != 0x74) /* footer id */ { in vanc_to_cc() 395 av_log(avctx, AV_LOG_WARNING, "Invalid footer id 0x%.2x\n", cdp[len-4]); in vanc_to_cc() 401 av_log(avctx, AV_LOG_WARNING, "Header 0x%.4x != Footer 0x%.4x\n", hdr, ftr); in vanc_to_cc()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_drawtext.c | 1561 /* calculate footprint of text effects */ in draw_text()
|
/third_party/ffmpeg/libavcodec/tests/ |
H A D | htmlsubtitles.c | 29 "Foo <foo@bar.com>", // not a tag (not alnum) 31 "<b> foo <I> bar </B> bla </i>", // broken nesting
|
/third_party/ffmpeg/libavformat/ |
H A D | id3v2.c | 1129 /* Footer preset, always 10 bytes, skip over it */ in id3v2_parse()
|
H A D | mxfenc.c | 240 static const uint8_t footer_partition_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x02,0x01,0x01,0x04,0x04,0x00 }; // ClosedComplete variable 395 int64_t footer_partition_offset; member 1434 int show_warnings = !mxf->footer_partition_offset; in mxf_write_generic_sound_common() 1947 else if (key && !memcmp(key, footer_partition_key, 16) && mxf->body_partitions_count) in mxf_write_partition() 1952 avio_wb64(pb, mxf->footer_partition_offset); // footerPartition in mxf_write_partition() 3050 avio_wb32(pb, 0); // BodySID of footer partition in mxf_write_random_index_pack() 3051 avio_wb64(pb, mxf->footer_partition_offset); in mxf_write_random_index_pack() 3071 mxf->footer_partition_offset = avio_tell(pb); in mxf_write_footer() 3073 if ((err = mxf_write_partition(s, 0, 0, footer_partition_key, in mxf_write_footer() [all...] |
H A D | subtitles.h | 179 * Example: "foo\r\nbar\r\n\r\nnext" will print "foo\r\nbar" into buf, and pb
|
H A D | wavdec.c | 460 /* don't look for footer metadata if we can't seek or if we don't in wav_read_header()
|
H A D | avformat.h | 361 * they appear in the list below -- e.g. foo-eng-sort, not foo-sort-eng.
|
/third_party/ffmpeg/libavutil/ |
H A D | dict.h | 54 av_dict_set(&d, "foo", "bar", 0); // add an entry
|
/third_party/ffmpeg/libavutil/tests/ |
H A D | opt.c | 247 "foo=:", in main() 248 ":=foo", in main() 249 "=foo", in main() 250 "foo=", in main() 251 "foo", in main() 252 "foo=val", in main() 253 "foo==val", in main() 256 "toggle=1 : foo", in main() 284 "cl=foo", in main()
|
H A D | parseutils.c | 48 "foo/foo", in test_av_parse_video_rate() 49 "foo/1", in test_av_parse_video_rate() 50 "1/foo", in test_av_parse_video_rate() 57 "-foo", in test_av_parse_video_rate() 83 "foo", in test_av_parse_color() 102 "red@foo", in test_av_parse_color() 114 "red@10foo", in test_av_parse_color()
|
H A D | log.c | 54 result = call_log_format_line2("foo", NULL, 0); in main() 59 result = call_log_format_line2("foo", buffer, 2); in main() 64 result = call_log_format_line2("foo", buffer, 4); in main() 65 if(result != 3 || strncmp(buffer, "foo", 4)) { in main()
|
/third_party/ffmpeg/libavformat/tests/ |
H A D | url.c | 110 test("/foo/bar", "baz"); in main() 111 test("/foo/bar", "../baz"); in main() 112 test("/foo/bar", "/baz"); in main() 113 test("/foo/bar", "../../../baz"); in main() 114 test("http://server/foo/", "baz"); in main() 115 test("http://server/foo/bar", "baz"); in main() 116 test("http://server/foo/", "../baz"); in main() 117 test("http://server/foo/bar/123", "../../baz"); in main() 118 test("http://server/foo/bar/123", "/baz"); in main() 119 test("http://server/foo/ba in main() [all...] |